@@ -42,7 +42,8 @@ mul_prod(x::SmallUnsigned,y::SmallUnsigned) = UInt(x) * UInt(y)
42
42
43
43
# # foldl && mapfoldl
44
44
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
46
47
# Unroll the while loop once; if init is known, the call to op may
47
48
# be evaluated at compile time
48
49
y = iterate (itr, i... )
@@ -56,32 +57,32 @@ mul_prod(x::SmallUnsigned,y::SmallUnsigned) = UInt(x) * UInt(y)
56
57
return v
57
58
end
58
59
59
- function mapfoldl_impl (f, op, :: NoInit , itr)
60
+ function mapfoldl_impl (f, op, nt :: NamedTuple{()} , itr)
60
61
y = iterate (itr)
61
62
if y === nothing
62
63
return Base. mapreduce_empty_iter (f, op, itr, IteratorEltype (itr))
63
64
end
64
65
(x, i) = y
65
66
init = mapreduce_first (f, op, x)
66
- mapfoldl_impl (f, op, init, itr, i)
67
+ mapfoldl_impl (f, op, ( init= init,) , itr, i)
67
68
end
68
69
69
70
70
71
"""
71
- mapfoldl(f, op, itr; init=Base.NoInit() )
72
+ mapfoldl(f, op, itr; [ init] )
72
73
73
74
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.
76
77
"""
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)
78
79
79
80
"""
80
- foldl(op, itr; init=Base.NoInit() )
81
+ foldl(op, itr; [ init] )
81
82
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.
85
86
86
87
# Examples
87
88
```jldoctest
@@ -92,11 +93,12 @@ julia> foldl(=>, 1:4; init=0)
92
93
(((0=>1)=>2)=>3) => 4
93
94
```
94
95
"""
95
- foldl (op, itr; init = NoInit ()) = mapfoldl (identity, op, itr; init = init )
96
+ foldl (op, itr; kw ... ) = mapfoldl (identity, op, itr; kw ... )
96
97
97
98
# # foldr & mapfoldr
98
99
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
100
102
# Unroll the while loop once; if init is known, the call to op may
101
103
# be evaluated at compile time
102
104
if isempty (itr) || i == 0
@@ -112,29 +114,29 @@ function mapfoldr_impl(f, op, init, itr, i::Integer)
112
114
end
113
115
end
114
116
115
- function mapfoldr_impl (f, op, :: NoInit , itr, i:: Integer )
117
+ function mapfoldr_impl (f, op, :: NamedTuple{()} , itr, i:: Integer )
116
118
if isempty (itr)
117
119
return Base. mapreduce_empty_iter (f, op, itr, IteratorEltype (itr))
118
120
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 )
120
122
end
121
123
122
124
"""
123
- mapfoldr(f, op, itr; init=Base.NoInit() )
125
+ mapfoldr(f, op, itr; [ init] )
124
126
125
127
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.
128
130
"""
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))
130
132
131
133
132
134
"""
133
- foldr(op, itr; init=Base.NoInit() )
135
+ foldr(op, itr; [ init] )
134
136
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.
138
140
139
141
# Examples
140
142
```jldoctest
@@ -145,7 +147,7 @@ julia> foldr(=>, 1:4; init=0)
145
147
1 => (2=>(3=>(4=>0)))
146
148
```
147
149
"""
148
- foldr (op, itr; init = NoInit ()) = mapfoldr (identity, op, itr; init = init )
150
+ foldr (op, itr; kw ... ) = mapfoldr (identity, op, itr; kw ... )
149
151
150
152
# # reduce & mapreduce
151
153
@@ -183,7 +185,7 @@ mapreduce_impl(f, op, A::AbstractArray, ifirst::Integer, ilast::Integer) =
183
185
mapreduce_impl (f, op, A, ifirst, ilast, pairwise_blocksize (f, op))
184
186
185
187
"""
186
- mapreduce(f, op, itr; init=Base.NoInit() )
188
+ mapreduce(f, op, itr; [ init] )
187
189
188
190
Apply function `f` to each element in `itr`, and then reduce the result using the binary
189
191
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
206
208
`itr`. Use [`mapfoldl`](@ref) or [`mapfoldr`](@ref) instead for
207
209
guaranteed left or right associativity and invocation of `f` for every value.
208
210
"""
209
- mapreduce (f, op, itr; init = NoInit ()) = mapfoldl (f, op, itr; init = init )
211
+ mapreduce (f, op, itr; kw ... ) = mapfoldl (f, op, itr; kw ... )
210
212
211
213
# Note: sum_seq usually uses four or more accumulators after partial
212
214
# unrolling, so each accumulator gets at most 256 numbers
@@ -330,7 +332,7 @@ mapreduce(f, op, a::Number) = mapreduce_first(f, op, a)
330
332
_mapreduce (f, op, :: IndexCartesian , A:: AbstractArray ) = mapfoldl (f, op, A)
331
333
332
334
"""
333
- reduce(op, itr; init=Base.NoInit() )
335
+ reduce(op, itr; [ init] )
334
336
335
337
Reduce the given collection `itr` with the given binary operator `op`. If provided, the
336
338
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)
362
364
-24
363
365
```
364
366
"""
365
- reduce (op, itr; init = NoInit ()) = mapreduce (identity, op, itr; init = init )
367
+ reduce (op, itr; kw ... ) = mapreduce (identity, op, itr; kw ... )
366
368
367
369
reduce (op, a:: Number ) = a # Do we want this?
368
370
0 commit comments