Would it be sensible to introduce a special syntaxt for typecasting? in some languages it's like this x::int
Something like param/sym
would be much more succinct than (coerce param 'sym)
. . and (coerce) is used often enough for it to matter, no?Edit: moreso with a list '("a" "list" "of" "elements")/sym
is more succinct than (map [coerce _ 'sym] '( "a" "list" "of" "elements"))
|