TemporalZ

blank

Returns true if the duration is zero (all fields are zero), false otherwise.

See: Temporal.Duration.blank

Parameters

#
self:Duration
Duration

Source

Implementation

#
pub fn blank(self: Duration) bool {
    return abi.c.temporal_rs_Duration_is_zero(self._inner);
}