Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add IsIterable trait #25

Merged
merged 5 commits into from
Feb 22, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/base-traits.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ using SimpleTraits
using Compat

export IsLeafType, IsBits, IsImmutable, IsContiguous, IsIndexLinear,
IsAnything, IsNothing, IsCallable
IsAnything, IsNothing, IsCallable, IsIterable

"Trait which contains all types"
@traitdef IsAnything{X}
Expand Down Expand Up @@ -57,4 +57,10 @@ end

Base.@deprecate_binding IsFastLinearIndex IsIndexLinear

"Trait of all iterable types"
@traitdef IsIterable{X}
@generated function SimpleTraits.trait{X}(::Type{IsIterable{X}})
method_exists(start, Tuple{X}) ? :(IsIterable{X}) : :(Not{IsIterable{X}})
end

end # module
5 changes: 5 additions & 0 deletions test/base-traits.jl
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,8 @@ if VERSION < v"0.5.0-dev"
# this give deprecation warning in Julia 0.5
@test istrait(IsCallable{Base.AddFun})
end

@test istrait(IsIterable{Array})
@test !istrait(IsIterable{Cmd})
@test istrait(IsIterable{Base.UnitRange{Int}})
@test istrait(IsIterable{Base.UnitRange})