Heh... it took a google search to figure out where I put it.
https://github.com/tbreloff/CTechCommon.jl/blob/master/src/macros.jl#L113-L155
On Sun, Oct 9, 2016 at 12:19 PM, Ben Lauwens wrote:
> Hi Tom
>
> I am interested. I am building a macro mimicking how iterator blocks are
> transformed in
Hi Tom
I am interested. I am building a macro mimicking how iterator blocks are
transformed in a state-machine in C# (as an alternative to Tasks) and this is
one of the (many) thinks I have to solve. Can you point me to the source? Thanks
Ben
Hey all... I just threw together a quick macro to save some typing when
working with the fields of an object. Disclaimer: this should not be used
in library code, or in anything that will stick around longer than a REPL
session. Hopefully it's self explanatory with this example. Is there a
good
This is my first time writing macros in Julia. I've read related docs but
could not find an example which works with the arbitrary number of arguments.
So in my example below the args... works correctly with string literals but for
the passed variables it returns their names and not the values.