Everything is true

all x    all[x]

Returns a boolean atom 0b; or 1b where x is

Applies to all datatypes except symbols and GUIDs.

Where x is a table, all iterates over its columns and returns a dictionary.

q)all null ([] c1:`a`b`c; c2:0n 0n 0n; c3:10 0N 30)
c1| 0
c2| 1
c3| 0

Strings are cast to boolean.

all is an aggregate function.

q)all 1 2 3=1 2 4
0b
q)all 1 2 3=1 2 3
1b
q)all "YNYN" / string casts to 1111b
1b
q)all () /no zeros here
1b
q)all 2000.01.01
0b
q)all 2000.01.02 2010.01.02
1b

q)if[all x in y;....]   / use in control structure