Jeff Bezanson
Jeff Bezanson
> * Changes asked for late in a release cycle But the whole point is that new APIs need time to try out and revise the design. That inherently makes...
In theory the compiler could add a lattice element for an array with known size, and propagate constants to know the size of `rand(100)` at compile time. The only problem...
Triage discussed this but we don't have any hard conclusions yet.
I don't have a strong opinion on what the type should be, but it really does seem like the types in these cases should be the same if at all...
Moved my comment to the other issue where it is more directly relevant. I doubt we can do anything specific to `++` here since there's no guarantee you'll have an...
The fundamental problem here is that annotations are an *incompatible* extension of the concept of a string. It's similar to the famous "circle-ellipse problem" in OOP. So far an `AbstractString`...
One reason to prefer `notin` is that it's compatible with allowing all functions to use infix syntax, while `!in` would continue to be a special case even if we made...
I'm ok with: ``` nth(itr, n) = first(drop(itr, n-1)) nth(n) = Fix2(nth, n) ``` as a spec.
It sounds like we have not decided whether to print an eval-able (or close to it) expression here or use a different new text-based serialization format.