julia
3d922e44 - specialize on mapfoldl(::Type, ...) (#39019)

Commit
5 years ago
specialize on mapfoldl(::Type, ...) (#39019) Before: ```julia julia> using BenchmarkTools julia> b = rand(Bool, 10000); julia> @btime mapfoldl(Int, +, b; init=0) 1.136 ms (9025 allocations: 141.02 KiB) 5057 ``` After: ```julia julia> @btime mapfoldl(Int, +, b; init=0) 1.094 μs (1 allocation: 16 bytes) 5057 ```
Author
Parents
Loading