Navigation :
Envision Language
Lokad Platform
Envision Gallery
Envision Reference
- Glossary
- Tile syntax
- List of icons
- StyleCode sub-language
-
_
-
A-B-C
-- abs
-- actionrwd.dampen
-- actionrwd.demand
-- actionrwd.reward
-- actionrwd.segment
-- all
-- and
-- any
-- areSame
-- argfirst
-- arglast
-- argmax
-- argmin
-- arground
-- argwhichever
-- as
-- assert
-- assertfail
-- assoc.quantity
-- at
-- auto
-- autodiff
-- avg
-- barchart
-- boolean
-- Built-in Tables
-- by
-- canonical
-- cdf
-- ceiling
-- changed
-- chart
-- complement
-- concat
-- connected
-- const
-- constant
-- consume
-- contains
-- containsAny
-- containsCount
-- cos
-- count
-- cross
-- crps
-- cumsub
-- cumsum
-- currentDashUrl
-
D-E-F
-
G-H-I
-
J-K-L
-
M-N-O
-
P-Q-R
-
S-T-U
-
V-W-X
-
Y-Z
Envision Specifications
Library
Legacy
all
all, aggregator
all(bool: boolean): boolean
Returns true
if all the grouped values are true
, and returns false
otherwise.
Example:
table T = with
[| as A, as B |]
[| true, "a" |]
[| true, "a" |]
[| true, "b" |]
[| false, "b" |]
[| true, "c" |]
table G[gdim] = by T.B
where T.B != "c"
show table "" a1b4 with
gdim
all(T.A)
group by gdim
The aggregator returns false
on empty groups.
See also