Description Usage Arguments Value Examples
%using%
is the infix operator for using
, and it is the
preferred way to use the using
operator.
1 | using(p, f)
|
p |
is the parser to be applied |
f |
is the function to be applied to each result of |
The parser (p %using% f)
has the same behaviour as the
parser p
, except that the function f
is applied to each of
its result values.
1 | (item() %using% as.numeric) ("1abc")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.