klyn.time.Duration.operator>=
method
public static operator>=(first as Duration, second as Duration) as Boolean:
Description

Returns true when the first duration is longer than or equal to the second one.

Parameters
ParameterDescription
firstLeft operand.
secondRight operand.
Returns

True when first is longer than or equal to second.

Example
import klyn.time

assert Duration(seconds=2.0) >= Duration(seconds=2.0)