Is there a comprehensive list of special macros in Julia? -
Is there a comprehensive list of special macros in Julia? -
http://julia.readthedocs.org/en/latest/manual/metaprogramming/ discusses macros in julia, start @
, lists 2 special macros, text_str
, , cmd
, handle text"string"
, `shell command`
, respectively. there comprehensive list of these special macros supported julia? possible define own?
so macros, including string literal macros, in exports.jl
.
if asking these special syntax transformations in general string literal macros, don't think thats question thats answerable: there multiple arbitrary syntax translations that can't in user code (without using @
denote transforming syntax macro). julia macro-or-function-looking things aren't magic, string literals, ccall
, , maybe things a'c
, qualify.
julia-lang julia-macros
Comments
Post a Comment