TemporalZ

toLocaleString

Returns a string with a language-sensitive representation of this duration. Not implemented.

See: Temporal.Duration.toLocaleString

Parameters

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

Source

Implementation

#
pub fn toLocaleString(self: Duration, allocator: std.mem.Allocator) ![]u8 {
    _ = self;
    _ = allocator;
    return error.TemporalNotImplemented;
}