toLocaleString
Returns a string with a language-sensitive representation of this duration. Not implemented.
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;
}