v>= ( u v -- w )
Factor handbook » The language » Numbers » Vector operations » Vector component- and bit-wise logic

Prev:v= ( u v -- w )
Next:v> ( u v -- w )


Vocabulary
math.vectors

Inputs
ua sequence of numbers
va sequence of numbers


Outputs
wa sequence of booleans


Word description
Compares each corresponding element of u and v, returning t in the result vector when the former is greater than or equal to the latter or f otherwise.

Notes
See Componentwise logic with SIMD vectors for notes on dealing with vector boolean results when using SIMD types.

See also
v<, v<=, v=, v>, vunordered?, vand, vor, vxor, vnot, vany?, vall?, vnone?, v?

Definition


Methods