Skip to content

Commit 0050ed1

Browse files
make collect work even for iterables that don't provide length.
This also defined eltype for RegexMatchIterators, making it possible to write collect(eachmatch(re,str)) for matchall(re,str). See #3525.
1 parent b13dece commit 0050ed1

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

base/array.jl

+10-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,16 @@ convert{T,n}(::Type{Array{T,n}}, x::Array{T,n}) = x
252252
convert{T,n,S}(::Type{Array{T}}, x::Array{S,n}) = convert(Array{T,n}, x)
253253
convert{T,n,S}(::Type{Array{T,n}}, x::Array{S,n}) = copy!(similar(x,T), x)
254254

255-
collect(itr) = [x for x in itr]
255+
function collect{T}(itr::T)
256+
if method_exists(length,(T,))
257+
return [x for x in itr]
258+
end
259+
a = Array(eltype(itr),0)
260+
for x in itr
261+
push!(a,x)
262+
end
263+
return a
264+
end
256265

257266
## Indexing: getindex ##
258267

base/regex.jl

+1
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ immutable RegexMatchIterator
118118
overlap::Bool
119119
end
120120

121+
eltype(itr::RegexMatchIterator) = RegexMatch
121122
start(itr::RegexMatchIterator) = match(itr.regex, itr.string)
122123
done(itr::RegexMatchIterator, m) = m == nothing
123124
next(itr::RegexMatchIterator, m) =

0 commit comments

Comments
 (0)