-
-
Notifications
You must be signed in to change notification settings - Fork 9
Greater Than Or Equal Operator
IsaacShelton edited this page Mar 21, 2022
·
1 revision
The >= operator is used for testing whether one value is greater than or equal to another.
1 >= 2
The >= operator can be defined for additional types or type combinations with the following:
func __greater_than_or_equal__(a $A, b $B) bool
where $A and $B are any valid types
See __greater_than_or_equal__ for more information.