toLocaleString
Returns a language-sensitive string representation of this PlainTime.
Parameters
- self:PlainTime
- PlainTime
- allocator:std.mem.Allocator
- std.mem.Allocator
Source
Implementation
pub fn toLocaleString(self: PlainTime, allocator: std.mem.Allocator) ![]u8 {
// For now, just use toString - locale-specific formatting would require more work
return toString(self, allocator);
}