>= multimethod

Methods

>=(a:Real, b:Real)
Greater-than-or-equal comparison
>=(a:Int, b:Int)
Greater-than-or-equal comparison
>=(a:Set, b:Set) Source: stdlib.ngs:1768
Check whether all values in b are also in a
>=(a:Arr, b:Arr) Source: stdlib.ngs:2526
Compare arrays, element-wise. If all elements are equal, the longest array considered to be the "big" one. Exactly the same as b <= a.

Returns

Bool
>=(a:Str, b:Str) Source: stdlib.ngs:4556
Case sensitive GreaterThan or Equal comparison for strings

Returns

Bool
>=(a:Time, b:Time) Source: stdlib.ngs:7646
Undocumented