| %$$% | R Documentation |
%$$% is an operator that is mainly used internally in the eatRep and eatModel packages.
%$$% is similar to $, but gives error instead of
NULL if the corresponding element does not exists.
x %$$% y
x |
a list |
y |
name of the corresponding element of |
the selected element of the list x
## Not run:
x <- list(value1 = 14, value2 = NULL)
x$value2 # NULL
x$value_not_defined # NULL
x%$$%value2 # NULL
x%$$%value_not_defined # error
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.