Pattern1
  Home FAQ Contact Sign in
 
Advanced search
MATCHING GROUPS



more...
POPULAR GROUPS

more...

found 4 articles for 0.000 sec
Re: try ... finally ...     

Group: comp.lang.functional · Group Profile · Search for Pattern1 in comp.lang.functional
Author: Joachim Durchholz
Date: Feb 28, 2008 12:14

...> where you want to identify code that runs only if an exception is not raised. Independently, Erlang introduced the same thing: try Expr of Pattern1 [when Guard1] -> Body1; ... catch ExceptionPattern1 [when ExceptionGuard1] -> ExceptionBody1 ... after FinalBody I have known this idiom as ...
Show full article (1.24Kb) · Show article thread
Re: try ... finally ...     

Group: comp.lang.functional · Group Profile · Search for Pattern1 in comp.lang.functional
Author: Vesa Karvonen
Date: Feb 28, 2008 11:53

...pdf where you want to identify code that runs only if an exception is not raised. Independently, Erlang introduced the same thing: try Expr of Pattern1 [when Guard1] -> Body1; ... catch ExceptionPattern1 [when ExceptionGuard1] -> ExceptionBody1 ... after FinalBody I have known this idiom as try-catch-finally (I ...
Show full article (1.05Kb) · Show article thread
Re: try ... finally ...     

Group: comp.lang.functional · Group Profile · Search for Pattern1 in comp.lang.functional
Author: Joachim Durchholz
Date: Feb 28, 2008 11:34

....pdf where you want to identify code that runs only if an exception is not raised. Independently, Erlang introduced the same thing: try Expr of Pattern1 [when Guard1] -> Body1; ... catch ExceptionPattern1 [when ExceptionGuard1] -> ExceptionBody1 ... after FinalBody I have known this idiom as try-catch-finally (I think these keywords are...
Show full article (1.38Kb)
Re: try ... finally ...     

Group: comp.lang.functional · Group Profile · Search for Pattern1 in comp.lang.functional
Author: Ian.Stark
Date: Feb 28, 2008 03:16

.../sml/ExceptionalSyntax.pdf where you want to identify code that runs only if an exception is not raised. Independently, Erlang introduced the same thing: try Expr of Pattern1 [when Guard1] -> Body1; ... catch ExceptionPattern1 [when ExceptionGuard1] -> ExceptionBody1 ... after FinalBody The point is that the handler is wrapped only around Expr, not Body1, ...
Show full article (1.16Kb) · Show article thread