where {T}

pull/3/head
matthieugomez 2017-05-19 19:54:38 -04:00
parent 75ef98591b
commit 63775c06f5
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ const AbstractStringorGraphemeIterator = AbstractString
## 2. issue with keeping iterator property for stuff like split, join. for now, I decide to loose the #enumerator property but add it back after join. But SubString for instance does not loose the property
#Base.split(x::GraphemeIterator, args...) = split(x.s, args...)
#iterator{T <: GraphemeIterator}(::Type{T}, x::AbstractString) = graphemeiterator(x)
iterator{T <: AbstractString}(::Type{T}, x::AbstractString) = x
iterator(::Type{T}, x::AbstractString) where {T <: AbstractString} = x
#
##############################################################################
##