vote up 2 vote down star

I've run into a strange syntax in Boo Language Guide :

setter = { value | a = value }

What does the | operator mean?

flag

71% accept rate

4 Answers

vote up 4 vote down check

The documentation of Boo seems to be lacking in this area -- it seems that

setter = { value | a = value }

is shorthand for

setter = def(value):
    a = value
link|flag
vote up 0 vote down

That syntax for specifying code blocks (anonymous functions) has been borrowed from Ruby and Smalltalk

link|flag
vote up 2 vote down

Adam is correct. The point of the example is to show that lambdas in boo have read and write access to enclosing scope.

link|flag
vote up 3 vote down

Well, having never used Boo, my (educated) guess is that it's for passing parameter to the closure lambda-style functions. In this case, { p | C } refers to an anonymous function taking a single parameter bound to p within the code C.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.