With magrittr (or dplyr), I find myself using the following pattern quite often:
x <- x %>%
fun %>%
fun
Is there a commonly used shortcut or idiom for that? by which I mean, an operand, e.g. %^>%, with which one could write:
x %^>% fun ...