Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix getlex and bindlex
  • Loading branch information
FROGGS committed Oct 28, 2013
1 parent c91640d commit dcfdfe2
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions docs/ops.markdown
Expand Up @@ -1493,20 +1493,20 @@ Gets hold of the argument capture passed to the current block.
It's valid to implement this exactly the same way as savecapture if there's no performance benefit to be had in a split.
Used by the multi-dispatcher.

## getlex_n
* `getlex_ni(str $name)`
* `getlex_nn(str $name)`
* `getlex_ns(str $name)`
* `getlex_no(str $name)`
## getlex
* `getlex(str $name)`
* `getlex_i(str $name)`
* `getlex_n(str $name)`
* `getlex_s(str $name)`

Looks up the lexical with the specified name and the specified type. An error is thrown if it does not exist or if the
type is incorrect.

## bindlex_n
* `bindlex_ni(str $name)`
* `bindlex_nn(str $name)`
* `bindlex_ns(str $name)`
* `bindlex_no(str $name)`
## bindlex
* `bindlex(str $name)`
* `bindlex_i(str $name)`
* `bindlex_n(str $name)`
* `bindlex_s(str $name)`

Binds to the lexical specified by name and type. An error is thrown if it does not exist or if the type is incorrect.

Expand Down

0 comments on commit dcfdfe2

Please sign in to comment.