Skip to content

geq

Description

@geq(x,y)

  • x >= y, return boolean

Type Rules

High-level (Same as lt)

Real  , Real   -> bool
sym   , sym    -> bool
str   , str    -> bool
month , month  -> bool
date  , date   -> bool
dt    , dt     -> bool
hour  , hour   -> bool
second, second -> bool
time  , time   -> bool
_     , _      -> domain error

Table with details (See type alias)

lt

Shape Rules

Dyadic elementwise shape rules

Examples

    @geq((-1,0,3):i32, 0:i32)
(0,1,1):bool