hoursInDay
Returns the number of hours in the day of this date in the time zone.
Parameters
- self:ZonedDateTime
- ZonedDateTime
Source
Implementation
pub fn hoursInDay(self: ZonedDateTime) !f64 {
const result = abi.c.temporal_rs_ZonedDateTime_hours_in_day(self._inner);
return try abi.extractResult(result);
}