toString
Returns a string representing this year-month in RFC 9557 format.
Parameters
- self:PlainYearMonth
- PlainYearMonth
- allocator:std.mem.Allocator
- std.mem.Allocator
Source
Implementation
pub fn toString(self: PlainYearMonth, allocator: std.mem.Allocator) ![]u8 {
return toStringWithOptions(self, allocator, .{});
}