TemporalZ

toString

Returns a string representing this PlainTime in RFC 9557 format.

See: Temporal.PlainTime.toString

Parameters

#
self:PlainTime
PlainTime
allocator:std.mem.Allocator
std.mem.Allocator

Source

Implementation

#
pub fn toString(self: PlainTime, allocator: std.mem.Allocator) ![]u8 {
    return toStringWithOptions(self, allocator, .{});
}