Skip to content

Commit 07a076a

Browse files
committed
fix result type of collect(T, itr)
1 parent 8ced94a commit 07a076a

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

base/array.jl

+12-1
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,18 @@ _similar_for(c, T, itr, isz) = similar(c, T)
215215
216216
Return an array of type `Array{element_type,1}` of all items in a collection.
217217
"""
218-
collect{T}(::Type{T}, itr) = collect(Generator(T, itr))
218+
collect{T}(::Type{T}, itr) = _collect(T, itr, iteratorsize(itr))
219+
220+
_collect{T}(::Type{T}, itr, isz::Union{HasLength,HasShape}) =
221+
copy!(_similar_for(1:1 #= Array =#, T, itr, isz), itr)
222+
223+
function _collect{T}(::Type{T}, itr, isz::SizeUnknown)
224+
a = _similar_for(1:1 #= Array =#, T, itr, isz)
225+
for x in itr
226+
push!(a,x)
227+
end
228+
return a
229+
end
219230

220231
"""
221232
collect(collection)

0 commit comments

Comments
 (0)