View Single Post
  #8 (permalink)  
Old 03-31-2008, 09:52 PM
shaalini shaalini is offline
D-Web Analyst
 
Join Date: Apr 2007
Posts: 342
shaalini is on a distinguished road
Default Re: Ruby BuiltIn functions

catch
catch( symbol ) {| | block }-> anObject


catch executes its block. If a throw is executed, Ruby searches up its stack for a catch block with a tag corresponding to the throw's symbol. If found, that block is terminated, and catch returns the value given to throw. If throw is not called, the block terminates normally, and the value of catch is the value of the last expression evaluated. catch expressions may be nested, and the throw call need not be in lexical scope.

def routine(n)
puts n
throw :done if n <= 0
routine(n-1)
end


catch(:done) { routine(3) }

produces:

3
2
1
0
__________________
Shaalini.S
Be the Best of Whatever you are...
Reply With Quote