timeGreaterThan
timeGreaterThan() checks whether a wrapped Time is strictly greater than a threshold (wrapped Time or DDate.TheTime). Supports the curried version.
Interactive example
Syntax
Classic signature
typescript
function timeGreaterThan(
primitive: Time,
threshold: Time | TheTime
): booleanCurried signature
typescript
function timeGreaterThan(
threshold: Time | TheTime
): (primitive: Time) => booleanParameters
primitive: wrappedTime(classic signature only).threshold: comparison threshold.
Return value
true if primitive > threshold, otherwise false.
