Zeke

Results 4 issues of Zeke

Using conditional logic and/or reassignments to initialize a variable before capturing it is a common pattern, and it's the source of most unnecessary boxes for which #15276 continues to be...

Consider the following: ```julia fun1, fun2 = let f(x) = x f(x,y) = x+y g = f (xs...)->f(xs...), (xs...)->g(xs...) end ``` `f` gets boxed and `g` does not: ```julia julia>...

Allows a `Wrapper` to be splatted, so that only a small handful of new functions need be defined, enabling patterns like this: ```julia d, sw = simple_wrap() function tickByTickAllLast(a, b,...

```Julia julia> @show [1;2;3] == [1 2 3]' @show [1;2;3]' == [1 2 3]'' @show [1 2 3] == [1;2;3]' @show [1 2 3]' == [1;2;3]'' [1; 2; 3] ==...

needs more info