Andy Ferris

Results 378 comments of Andy Ferris

Yes, sorry if that wasn't clear, the StaticArrays methods aren't really well suited for large arrays. Julia isn't really built for efficiently handling (i.e. compiling code for) tuples of 5000...

How large, if I may ask?

`Union{}` is always an interesting case, and given that `Tuple` parameters are covariant I can see that the behavior of `Tuple{Union{}}` might be different than `Vector{Union{}}` or wherever the parameter...

Yes, I was a originally bit overzealous with `convert`, which should only really happen on insertion operations. We should fix this.

Due to confilcts I've moved this to #136.

Thanks again @mtfishman and @aplavin

`convert` is a bag of worms - dictionaries assume the operation doesn’t affect the lookup of a key. Hmm… what about hijacking `vec`?

I was wondering if anyone had a moment to look at this? This relates to this code: ```julia const basebuilddir = begin sysimg = filter(x->endswith(x[2], "sysimg.jl"), Base._included_files)[1][2] dirname(dirname(sysimg)) end ```...

I like the idea of having a `/src` directory with shared code and a `/run` directory with code used at runtime (to run a script, launch an app, or whatever)....

I was thinking `Pkg.run("SomePkg", "Tool1", args...)` and `Pkg.run("SomePkg", "Tool2", args..)` since there might be multiple, disjoint "programs" per package. A package might want to specify a default "program" - I'm...