@@ -13,7 +13,7 @@ using .Base:
13
13
SizeUnknown, HasLength, HasShape, IsInfinite, EltypeUnknown, HasEltype, OneTo,
14
14
@propagate_inbounds , @isdefined , @boundscheck , @inbounds , Generator,
15
15
AbstractRange, AbstractUnitRange, UnitRange, LinearIndices, TupleOrBottom,
16
- (:), | , + , - , * , != = , ! , == , != , <= , < , > , >= , missing , something, copyto!,
16
+ (:), | , + , - , * , != = , ! , == , != , <= , < , > , >= , missing , copyto!,
17
17
any, _counttuple, eachindex, ntuple, zero, prod, reduce, in, firstindex, lastindex,
18
18
tail, fieldtypes, min, max, minimum, zero, oneunit, promote, promote_shape
19
19
using Core: @doc
@@ -514,7 +514,7 @@ function unzip(itrs)
514
514
vals, state = outer
515
515
vecs = ntuple (length (vals)) do i
516
516
x = vals[i]
517
- v = Vector {typeof(x)} (undef, something (n, 1 ))
517
+ v = Vector {typeof(x)} (undef, Base . something (n, 1 ))
518
518
@inbounds v[1 ] = x
519
519
return v
520
520
end
@@ -541,7 +541,7 @@ function unzip_rest(vecs, eltypes, i, itrs, state)
541
541
T = Base. promote_typejoin (eltype (v), typeof (x))
542
542
v′ = Vector {T} (undef, length (v) + ! (i isa Int))
543
543
copyto! (v′, v)
544
- @inbounds v′[something (i, end )] = x
544
+ @inbounds v′[Base . something (i, end )] = x
545
545
return v′
546
546
end
547
547
eltypes′ = Tuple{map (eltype, vecs′)... }
0 commit comments