We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25aecc9 commit f3a4252Copy full SHA for f3a4252
src/ranges.jl
@@ -537,11 +537,11 @@ Base.Slice(Static(1):100)
537
julia> inds = (Base.OneTo(100), 1:100, 1:UInt(100), Int32(1):Int32(100))
538
(Base.OneTo(100), 1:100, 0x0000000000000001:0x0000000000000064, 1:100)
539
540
-julia> @btime reduce(ArrayInterface._pick_range, $(Ref(inds))[])
+julia> @btime reduce(ArrayInterface._pick_range, \$(Ref(inds))[])
541
9.268 ns (0 allocations: 0 bytes)
542
Base.Slice(Static(1):100)
543
544
-julia> @btime ArrayInterface.reduce_tup(ArrayInterface._pick_range, $(Ref(inds))[])
+julia> @btime ArrayInterface.reduce_tup(ArrayInterface._pick_range, \$(Ref(inds))[])
545
2.570 ns (0 allocations: 0 bytes)
546
547
```
0 commit comments