add
Returns a new PlainTime moved forward by the given duration, wrapping around the clock if necessary.
Parameters
Source
Implementation
pub fn add(self: PlainTime, duration: Duration) !PlainTime {
return wrapPlainTime(abi.c.temporal_rs_PlainTime_add(self._inner, duration._inner));
}