I think it would help to have cleaner code if we could write ```julia map!(x \to x^2, A) # where \to is replaced by its symbol ```` instead of ```julia map!(x -> x^2, A) ````
Activity
adienes commentedon Jan 25, 2024
not sure about this. there are a lot of arrow-like unicode characters. what about
\longmapsto
and\longrightarrow
? should ALL of them mean->
?guberger commentedon Jan 25, 2024
I would say only
\to
or\mapsto
according to the one we choose.barucden commentedon Jan 26, 2024
What are some benefits over sticking to
->
and using a font to one's liking (for example, this Discourse topic discusses Fira Code)?