[julia-users] Re: Julian way to write longer if/elseif/else clauses?

2014-05-07 Thread Mike Innes
If you need deeper pattern matching Match.jl is a great option, but you may also be interested in the @switch macro that lives in Lazy.jl – it will have zero overhead for cases like your example. https://github.com/one-more-minute/Lazy.jl#macros On Friday, 2 May 2014 15:11:08 UTC+1, Cameron

Re: [julia-users] Re: Julian way to write longer if/elseif/else clauses?

2014-05-07 Thread Cameron McBride
great! I'll check it out. Cameron On Wed, May 7, 2014 at 8:01 AM, Mike Innes mike.j.in...@gmail.com wrote: If you need deeper pattern matching Match.jl is a great option, but you may also be interested in the @switch macro that lives in Lazy.jl – it will have zero overhead for cases like

Re: [julia-users] Re: Julian way to write longer if/elseif/else clauses?

2014-05-07 Thread Kevin Squire
(I'll double check, but Match.jl should also have zero overhead for those examples.) On Wed, May 7, 2014 at 2:00 PM, Cameron McBride cameron.mcbr...@gmail.comwrote: great! I'll check it out. Cameron On Wed, May 7, 2014 at 8:01 AM, Mike Innes mike.j.in...@gmail.com wrote: If you need

[julia-users] Re: Julian way to write longer if/elseif/else clauses?

2014-05-02 Thread Ivar Nesje
See: https://github.com/JuliaLang/julia/issues/5410 for progress on a possible switch statement Also, I would probably recommend that you restructure your code so that you can use multiple dispatch. Your example is overly simple, so it is hard to tell you how to solve the problems that might