15 ms·
This article is great, and really distills why the ergonomics of Rust is so great and why languages like Julia are so awful in practice.
by blindseer 1y ago
This article is great, and really distills why the ergonomics of Rust is so great and why languages like Julia are so awful in practice.
- jakobnissen 1y agoYou mean tab completion in Rust? Otherwise, let me introduce you to: imap(f) = x -> Iterators.map(f, x) ifilter(f) = x -> Iterators.filter(f, x) v = things |> ifilter(isodd) |> imap(do_process) |> collect