any(::AbstractArray,dims)
any(A, dims)
Test whether any values along the given dimensions of an array are true
.
Examples
julia> any([1,2,3])
3
julia> any([])
false
See Also
all, all!, angle, any, any!, falses, ifelse, is, isinf, isinteger, isnan, isperm, ispow2, isreal, trues,User Contributed Notes
Add a Note
The format of note supported is markdown, use triple backtick to start and end a code block.