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