Skip to content

Commit 1a582a3

Browse files
author
Andy Ferris
committed
Remove NoInit() and use optional keyword argument
Hack utilizes varargs form of keyword arguments.
1 parent 981b341 commit 1a582a3

File tree

5 files changed

+44
-44
lines changed

5 files changed

+44
-44
lines changed

base/reduce.jl

+30-28
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ mul_prod(x::SmallUnsigned,y::SmallUnsigned) = UInt(x) * UInt(y)
4242

4343
## foldl && mapfoldl
4444

45-
@noinline function mapfoldl_impl(f, op, init, itr, i...)
45+
@noinline function mapfoldl_impl(f, op, nt::NamedTuple{(:init,)}, itr, i...)
46+
init = nt.init
4647
# Unroll the while loop once; if init is known, the call to op may
4748
# be evaluated at compile time
4849
y = iterate(itr, i...)
@@ -56,32 +57,32 @@ mul_prod(x::SmallUnsigned,y::SmallUnsigned) = UInt(x) * UInt(y)
5657
return v
5758
end
5859

59-
function mapfoldl_impl(f, op, ::NoInit, itr)
60+
function mapfoldl_impl(f, op, nt::NamedTuple{()}, itr)
6061
y = iterate(itr)
6162
if y === nothing
6263
return Base.mapreduce_empty_iter(f, op, itr, IteratorEltype(itr))
6364
end
6465
(x, i) = y
6566
init = mapreduce_first(f, op, x)
66-
mapfoldl_impl(f, op, init, itr, i)
67+
mapfoldl_impl(f, op, (init=init,), itr, i)
6768
end
6869

6970

7071
"""
71-
mapfoldl(f, op, itr; init=Base.NoInit())
72+
mapfoldl(f, op, itr; [init])
7273
7374
Like [`mapreduce`](@ref), but with guaranteed left associativity, as in [`foldl`](@ref).
74-
If provided, `init` will be used exactly once. In general, it will be necessary to provide
75-
`init` to work with empty collections.
75+
If provided, the keyword argument `init` will be used exactly once. In general, it will be
76+
necessary to provide `init` to work with empty collections.
7677
"""
77-
mapfoldl(f, op, itr; init=NoInit()) = mapfoldl_impl(f, op, init, itr)
78+
mapfoldl(f, op, itr; kw...) = mapfoldl_impl(f, op, kw.data, itr)
7879

7980
"""
80-
foldl(op, itr; init=Base.NoInit())
81+
foldl(op, itr; [init])
8182
82-
Like [`reduce`](@ref), but with guaranteed left associativity. If provided, `init` will be
83-
used exactly once. In general, it will be necessary to provide `init` to work with empty
84-
collections.
83+
Like [`reduce`](@ref), but with guaranteed left associativity. If provided, the keyword
84+
argument `init` will be used exactly once. In general, it will be necessary to provide
85+
`init` to work with empty collections.
8586
8687
# Examples
8788
```jldoctest
@@ -92,11 +93,12 @@ julia> foldl(=>, 1:4; init=0)
9293
(((0=>1)=>2)=>3) => 4
9394
```
9495
"""
95-
foldl(op, itr; init=NoInit()) = mapfoldl(identity, op, itr; init=init)
96+
foldl(op, itr; kw...) = mapfoldl(identity, op, itr; kw...)
9697

9798
## foldr & mapfoldr
9899

99-
function mapfoldr_impl(f, op, init, itr, i::Integer)
100+
function mapfoldr_impl(f, op, nt::NamedTuple{(:init,)}, itr, i::Integer)
101+
init = nt.init
100102
# Unroll the while loop once; if init is known, the call to op may
101103
# be evaluated at compile time
102104
if isempty(itr) || i == 0
@@ -112,29 +114,29 @@ function mapfoldr_impl(f, op, init, itr, i::Integer)
112114
end
113115
end
114116

115-
function mapfoldr_impl(f, op, ::NoInit, itr, i::Integer)
117+
function mapfoldr_impl(f, op, ::NamedTuple{()}, itr, i::Integer)
116118
if isempty(itr)
117119
return Base.mapreduce_empty_iter(f, op, itr, IteratorEltype(itr))
118120
end
119-
return mapfoldr_impl(f, op, mapreduce_first(f, op, itr[i]), itr, i-1)
121+
return mapfoldr_impl(f, op, (init=mapreduce_first(f, op, itr[i]),), itr, i-1)
120122
end
121123

122124
"""
123-
mapfoldr(f, op, itr; init=Base.NoInit())
125+
mapfoldr(f, op, itr; [init])
124126
125127
Like [`mapreduce`](@ref), but with guaranteed right associativity, as in [`foldr`](@ref). If
126-
provided, `init` will be used exactly once. In general, it will be necessary to provide
127-
`init` to work with empty collections.
128+
provided, the keyword argument `init` will be used exactly once. In general, it will be
129+
necessary to provide `init` to work with empty collections.
128130
"""
129-
mapfoldr(f, op, itr; init=NoInit()) = mapfoldr_impl(f, op, init, itr, lastindex(itr))
131+
mapfoldr(f, op, itr; kw...) = mapfoldr_impl(f, op, kw.data, itr, lastindex(itr))
130132

131133

132134
"""
133-
foldr(op, itr; init=Base.NoInit())
135+
foldr(op, itr; [init])
134136
135-
Like [`reduce`](@ref), but with guaranteed right associativity. If provided, `init` will be
136-
used exactly once. In general, it will be necessary to provide `init` to work with empty
137-
collections.
137+
Like [`reduce`](@ref), but with guaranteed right associativity. If provided, the keyword
138+
argument `init` will be used exactly once. In general, it will be necessary to provide
139+
`init` to work with empty collections.
138140
139141
# Examples
140142
```jldoctest
@@ -145,7 +147,7 @@ julia> foldr(=>, 1:4; init=0)
145147
1 => (2=>(3=>(4=>0)))
146148
```
147149
"""
148-
foldr(op, itr; init=NoInit()) = mapfoldr(identity, op, itr; init=init)
150+
foldr(op, itr; kw...) = mapfoldr(identity, op, itr; kw...)
149151

150152
## reduce & mapreduce
151153

@@ -183,7 +185,7 @@ mapreduce_impl(f, op, A::AbstractArray, ifirst::Integer, ilast::Integer) =
183185
mapreduce_impl(f, op, A, ifirst, ilast, pairwise_blocksize(f, op))
184186

185187
"""
186-
mapreduce(f, op, itr; init=Base.NoInit())
188+
mapreduce(f, op, itr; [init])
187189
188190
Apply function `f` to each element in `itr`, and then reduce the result using the binary
189191
function `op`. If provided, `init` must be a neutral element for `op` that will be returne
@@ -206,7 +208,7 @@ implementations may reuse the return value of `f` for elements that appear multi
206208
`itr`. Use [`mapfoldl`](@ref) or [`mapfoldr`](@ref) instead for
207209
guaranteed left or right associativity and invocation of `f` for every value.
208210
"""
209-
mapreduce(f, op, itr; init=NoInit()) = mapfoldl(f, op, itr; init=init)
211+
mapreduce(f, op, itr; kw...) = mapfoldl(f, op, itr; kw...)
210212

211213
# Note: sum_seq usually uses four or more accumulators after partial
212214
# unrolling, so each accumulator gets at most 256 numbers
@@ -330,7 +332,7 @@ mapreduce(f, op, a::Number) = mapreduce_first(f, op, a)
330332
_mapreduce(f, op, ::IndexCartesian, A::AbstractArray) = mapfoldl(f, op, A)
331333

332334
"""
333-
reduce(op, itr; init=Base.NoInit())
335+
reduce(op, itr; [init])
334336
335337
Reduce the given collection `itr` with the given binary operator `op`. If provided, the
336338
initial value `init` must be a neutral element for `op` that will be returned for empty
@@ -362,7 +364,7 @@ julia> reduce(*, [2; 3; 4]; init=-1)
362364
-24
363365
```
364366
"""
365-
reduce(op, itr; init=NoInit()) = mapreduce(identity, op, itr; init=init)
367+
reduce(op, itr; kw...) = mapreduce(identity, op, itr; kw...)
366368

367369
reduce(op, a::Number) = a # Do we want this?
368370

base/reducedim.jl

+11-13
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ reducedim!(op, R::AbstractArray{RT}, A::AbstractArray) where {RT} =
248248
mapreducedim!(identity, op, R, A)
249249

250250
"""
251-
mapreduce(f, op, A::AbstractArray; dims=:, init=Base.NoInit())
251+
mapreduce(f, op, A::AbstractArray; dims=:, [init])
252252
253253
Evaluates to the same as `reduce(op, map(f, A); dims=dims, init=init)`, but is generally
254254
faster because the intermediate array is avoided.
@@ -271,24 +271,24 @@ julia> mapreduce(isodd, |, true, a, dims=1)
271271
true true true true
272272
```
273273
"""
274-
mapreduce(f, op, A::AbstractArray; dims=:, init=NoInit()) = _mapreduce_dim(f, op, init, A, dims)
274+
mapreduce(f, op, A::AbstractArray; dims=:, kw...) = _mapreduce_dim(f, op, kw.data, A, dims)
275275

276-
_mapreduce_dim(f, op, init, A::AbstractArray, ::Colon) = mapfoldl(f, op, A; init=init)
276+
_mapreduce_dim(f, op, nt::NamedTuple{(:init,)}, A::AbstractArray, ::Colon) = mapfoldl(f, op, A; nt...)
277277

278-
_mapreduce_dim(f, op, ::NoInit, A::AbstractArray, ::Colon) = _mapreduce(f, op, IndexStyle(A), A)
278+
_mapreduce_dim(f, op, ::NamedTuple{()}, A::AbstractArray, ::Colon) = _mapreduce(f, op, IndexStyle(A), A)
279279

280-
_mapreduce_dim(f, op, init, A::AbstractArray, dims) =
281-
mapreducedim!(f, op, reducedim_initarray(A, dims, init), A)
280+
_mapreduce_dim(f, op, nt::NamedTuple{(:init,)}, A::AbstractArray, dims) =
281+
mapreducedim!(f, op, reducedim_initarray(A, dims, nt.init), A)
282282

283-
_mapreduce_dim(f, op, ::NoInit, A::AbstractArray, dims) =
283+
_mapreduce_dim(f, op, ::NamedTuple{()}, A::AbstractArray, dims) =
284284
mapreducedim!(f, op, reducedim_init(f, op, A, dims), A)
285285

286286
"""
287-
reduce(f, A; dims=:, init=Base.NoInit())
287+
reduce(f, A; dims=:, [init])
288288
289289
Reduce 2-argument function `f` along dimensions of `A`. `dims` is a vector specifying the
290-
dimensions to reduce, and `init` is the initial value to use in the reductions. For `+`, `*`,
291-
`max` and `min` the `init` argument is optional.
290+
dimensions to reduce, and the keyword argument `init` is the initial value to use in the
291+
reductions. For `+`, `*`, `max` and `min` the `init` argument is optional.
292292
293293
The associativity of the reduction is implementation-dependent; if you need a particular
294294
associativity, e.g. left-to-right, you should write your own loop or consider using
@@ -315,9 +315,7 @@ julia> reduce(max, a, dims=1)
315315
4 8 12 16
316316
```
317317
"""
318-
reduce(op, A::AbstractArray; dims=:, init=NoInit()) = _reduce_dim(op, init, A, dims)
319-
320-
_reduce_dim(op, init, A, dims) = mapreduce(identity, op, A; dims = dims, init=init)
318+
reduce(op, A::AbstractArray; kw...) = mapreduce(identity, op, A; kw...)
321319

322320
##### Specific reduction functions #####
323321
"""

stdlib/OldPkg/src/reqs.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ function add(lines::Vector{Line}, pkg::AbstractString, versions::VersionSet=Vers
135135
return true
136136
end
137137
length(v) == 1 && v[1] == intersect(v[1],versions) && return copy(lines)
138-
versions = reduce(intersect, versions, v)
138+
versions = reduce(intersect, v; init=versions)
139139
push!(filtered, Requirement(pkg, versions))
140140
end
141141

stdlib/Random/src/DSFMT.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ function sqrmod!(f::GF2X, m::GF2X)::GF2X
136136
x2i = GF2X(1)
137137
GF2X[copy(mulxmod!(mulxmod!(x2i, m, d+1), m, d+1)) for i=1:d]
138138
end
139-
foldl(GF2X(0), filter(i->coeff(f, i), 0:degree(f))) do g, i
139+
foldl(filter(i->coeff(f, i), 0:degree(f)); init=GF2X(0)) do g, i
140140
i <= d÷2 ? # optimization for "simple" squares
141141
setcoeff!(g, 2i) :
142142
xor!(g, sqrs[i])

stdlib/Random/src/RNGs.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ copy(src::MersenneTwister) =
160160
r1.idxF == r2.idxF && r1.idxI == r2.idxI
161161

162162
hash(r::MersenneTwister, h::UInt) =
163-
foldr(hash, h, (r.seed, r.state, r.vals, r.ints, r.idxF, r.idxI))
163+
foldr(hash, (r.seed, r.state, r.vals, r.ints, r.idxF, r.idxI); init=h)
164164

165165
function fillcache_zeros!(r::MersenneTwister)
166166
# the use of this function is not strictly necessary, but it makes

0 commit comments

Comments
 (0)