- Call for Proposals due March 23.*
- 1-based indexing?? in 2021? I thought this battle was over. Esp with C/Python FFI, it's a weird choice.
- installing packages is weird. open up the repl, type
]
, and then "add X", or import Pkg; Pkg.add("X")? - Manifest.toml is cool but a bit non-obvious to figure out how to update it.
- methods on objects vs methods that take objects. I get it, but less discoverable. e.g.
haskey(mydict, "a")
instead ofhas_key
?methodswith(Dict)
is a nice workaround (but also isn't itself discoverable!)
methodswith
doesn't return sorted results! You needsort(methodswith(Dict), by=m->m.name)
ormethodswith(Dict, Base)
to exclude other mod. And this actually doesn't includevalues
orkeys
unless you domethodswith(Dict, Base; supertypes=true)
(thanks [discourse](https://discourse.julialang.org/t/can-methodswith-return-