view v where expr   =>   column
v   input view
expr   expression to be evaluated

Where returns a view with the rows from v for which expr is true.

This operator is shorthand for "loop -where".

Example:
set v [view {A:I B} def {1 a 2 b 3 c 4 d}]

view $v where {$(A) % 2 == 1}
AB
01a
13c

(where is defined in Ratcl)