temporalz/src/PlainMonthDay.zig
2026-01-26 15:23:08 +06:00

65 lines
1.1 KiB
Zig

const std = @import("std");
const PlainMonthDay = @This();
const PlainDate = @import("PlainDate.zig");
pub var calendarId: []const u8 = "";
pub var day: i64 = 0;
pub var monthCode: []const u8 = "";
pub fn init() error{Todo}!PlainMonthDay {
return error.Todo;
}
pub fn from() error{Todo}!PlainMonthDay {
return error.Todo;
}
pub fn equals() error{Todo}!bool {
return error.Todo;
}
pub fn toJSON() error{Todo}![]const u8 {
return error.Todo;
}
pub fn toLocaleString() error{Todo}![]const u8 {
return error.Todo;
}
pub fn toPlainDate() error{Todo}!PlainDate {
return error.Todo;
}
pub fn toString() error{Todo}![]const u8 {
return error.Todo;
}
pub fn valueOf() error{Todo}!void {
return error.Todo;
}
pub fn with() error{Todo}!PlainMonthDay {
return error.Todo;
}
test from {
if (true) return error.Todo;
}
test equals {
if (true) return error.Todo;
}
test toJSON {
if (true) return error.Todo;
}
test toLocaleString {
if (true) return error.Todo;
}
test toPlainDate {
if (true) return error.Todo;
}
test toString {
if (true) return error.Todo;
}
test with {
if (true) return error.Todo;
}