Description Usage Arguments Details Value
The bind operator for an object of class "result"
executes the function or
block on the right-hand side if the object contains a value, or passes on the
error it contains if not. If the right-hand side function would raise an
error, that error is captured in the returned value instead. To turn a
regular R object into a result (or vice-versa) see result.
1 2 | ## S3 method for class 'result'
lhs %>>=% rhs
|
lhs |
An object of class |
rhs |
A function or block, evaluated with |
The right-hand side syntax is largely identical to that of the pipe operator,
%>%
.
An object of class "result"
wrapping the output of the rhs
function or block, or carrying forward its error if it has one.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.