Description Usage Arguments Details Value See Also Examples
isBound
scans its input function's frame checking if there are any
names not bound within its own scope - free variables. It returns a logical value
indicating whether the input function is bound, aka a closure.
1 | isBound(func)
|
func |
Function to check required. |
isBound(func)
translates to: Is func
bound to any
names in its enclosing environment? isBound
always returns
FALSE
for primitives since these do not have an environment.
Logical indicating whether func
is bound, a closure.
1 2 3 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.