%>=% {chronicler} | R Documentation |
Pipe a chronicle object to a decorated function.
.c %>=% .f
.c |
A value returned by record. |
.f |
A chronicle function to apply to the returning value of .c. |
A chronicle object.
r_sqrt <- record(sqrt)
r_exp <- record(exp)
3 |> r_sqrt() %>=% r_exp()