Skip to content

Commit

Permalink
basemisc: add all and any
Browse files Browse the repository at this point in the history
Fix #356
  • Loading branch information
iblislin committed Dec 25, 2017
1 parent b66a385 commit 9d84756
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/basemisc.jl
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,5 @@ _colmap[:cumprod] = Dict(2 => :(ta.colnames))
@_mapbase mean(ta::TimeArray, dim = 1) mean(ta.values, dim)
@_mapbase std(ta::TimeArray, dim = 1; kw...) std(ta.values, dim; kw...)
@_mapbase var(ta::TimeArray, dim = 1; kw...) var(ta.values, dim; kw...)
@_mapbase all(ta::TimeArray, dim = 1) all(ta.values, dim)
@_mapbase any(ta::TimeArray, dim = 1) any(ta.values, dim)

0 comments on commit 9d84756

Please sign in to comment.