Kristoffer Carlsson
Kristoffer Carlsson
Maybe not too difficult. Just need to be selective where we update the keybindings.
Perhaps, but it would be an extra command to tell everyone to use to load the package. I didn't think anyone wanted to extend a method from this package. Could...
It was because of https://github.com/KristofferC/OhMyREPL.jl/issues/100
Sorry, for the trouble. Indeed this package does quite a bit of method overwriting in those cases where it isn't really possible to hook into the REPL in an official...
What's the problem with using test specific dependencies?
Why can't you just use a closure or something and store it yourself?
``` local val find_zero(x -> (val = g(x); f(val))) ```
That's the old "boxes in closures"-issue. Can be worked around with something like: ``` julia> function find_zero_ext(f, g, bracket) val = Ref{Float64}() x = find_zero(x -> (val[] = g(x); f(val[])),...
> I found that normal args are faster than keyword args Worth to test on 0.7 where the implementation of keyword args have been overhauled.
Doing it at a higher level would be desirable, yes. In the loop there though, isn't different threads working on different colors at the same time? The threaded loop has...