Quellcodebibliothek
Statistik
Leitseite
products
/
Sources
/
formale Sprachen
/
C
/
Firefox
/
intl
/
icu_capi
/
bindings
/
js
/ (
Browser von der Mozilla Stiftung
Version 136.0.1
©
) Datei vom 10.2.2025 mit Größe 4 kB
Quelle ICU4XIsoDate.d.ts Sprache: unbekannt
import { u8, u16, i32, u32 } from "./diplomat-runtime"
import { FFIError } from "./diplomat-runtime"
import { ICU4XCalendar } from "./ICU4XCalendar";
import { ICU4XDate } from "./ICU4XDate";
import { ICU4XError } from "./ICU4XError";
import { ICU4XIsoWeekday } from "./ICU4XIsoWeekday";
import { ICU4XWeekCalculator } from "./ICU4XWeekCalculator";
import { ICU4XWeekOf } from "./ICU4XWeekOf";
/**
* An ICU4X Date object capable of containing a ISO-8601 date
* See the {@link
https://docs.rs/icu/latest/icu/calendar/struct.Date.html
Rust documen
tation for `Date`} for more information.
*/
export class ICU4XIsoDate {
/**
* Creates a new {@link ICU4XIsoDate `ICU4XIsoDate`} from the specified date and time.
* See the {@link
https://docs.rs/icu/latest/icu/calendar/struct.Date.html#method.try
_new_iso_date
Rust documentation for `try_new_iso_date`} for more information.
* @throws {@link FFIError}<{@link ICU4XError}>
*/
static create(year: i32, month: u8, day: u8): ICU4XIsoDate | never;
/**
* Creates a new {@link ICU4XIsoDate `ICU4XIsoDate`} representing January 1, 1970.
* See the {@link
https://docs.rs/icu/latest/icu/calendar/struct.Date.html#method.uni
x_epoch
Rust documentation for `unix_epoch`} for more information.
*/
static create_for_unix_epoch(): ICU4XIsoDate;
/**
* Convert this date to one in a different calendar
* See the {@link
https://docs.rs/icu/latest/icu/calendar/struct.Date.html#method.to_
calendar
Rust documentation for `to_calendar`} for more information.
*/
to_calendar(calendar: ICU4XCalendar): ICU4XDate;
/**
* See the {@link
https://docs.rs/icu/latest/icu/calendar/struct.Date.html#method.to_
any
Rust documentation for `to_any`} for more information.
*/
to_any(): ICU4XDate;
/**
* Returns the 1-indexed day in the year for this date
* See the {@link
https://docs.rs/icu/latest/icu/calendar/struct.Date.html#method.day
_of_year_info
Rust documentation for `day_of_year_info`} for more information.
*/
day_of_year(): u16;
/**
* Returns the 1-indexed day in the month for this date
* See the {@link
https://docs.rs/icu/latest/icu/calendar/struct.Date.html#method.day
_of_month
Rust documentation for `day_of_month`} for more information.
*/
day_of_month(): u32;
/**
* Returns the day in the week for this day
* See the {@link
https://docs.rs/icu/latest/icu/calendar/struct.Date.html#method.day
_of_week
Rust documentation for `day_of_week`} for more information.
*/
day_of_week(): ICU4XIsoWeekday;
/**
* Returns the week number in this month, 1-indexed, based on what is considered the first day of t
he week (often a locale preference).
* `first_weekday` can be obtained via `first_weekday()` on {@link ICU4XWeekCalculator `ICU
4XWeekCalculator`}
* See the {@link
https://docs.rs/icu/latest/icu/calendar/struct.Date.html#method.wee
k_of_month
Rust documentation for `week_of_month`} for more information.
*/
week_of_month(first_weekday: ICU4XIsoWeekday): u32;
/**
* Returns the week number in this year, using week data
* See the {@link
https://docs.rs/icu/latest/icu/calendar/struct.Date.html#method.wee
k_of_year
Rust documentation for `week_of_year`} for more information.
* @throws {@link FFIError}<{@link ICU4XError}>
*/
week_of_year(calculator: ICU4XWeekCalculator): ICU4XWeekOf | never;
/**
* Returns 1-indexed number of the month of this date in its year
* See the {@link
https://docs.rs/icu/latest/icu/calendar/struct.Date.html#method.mon
th
Rust documentation for `month`} for more information.
*/
month(): u32;
/**
* Returns the year number for this date
* See the {@link
https://docs.rs/icu/latest/icu/calendar/struct.Date.html#method.yea
r
Rust documentation for `year`} for more information.
*/
year(): i32;
/**
* Returns if the year is a leap year for this date
* See the {@link
https://docs.rs/icu/latest/icu/calendar/struct.Date.html#method.is_
in_leap_year
Rust documentation for `is_in_leap_year`} for more information.
*/
is_in_leap_year(): boolean;
/**
* Returns the number of months in the year represented by this date
* See the {@link
https://docs.rs/icu/latest/icu/calendar/struct.Date.html#method.mon
ths_in_year
Rust documentation for `months_in_year`} for more information.
*/
months_in_year(): u8;
/**
* Returns the number of days in the month represented by this date
* See the {@link
https://docs.rs/icu/latest/icu/calendar/struct.Date.html#method.day
s_in_month
Rust documentation for `days_in_month`} for more information.
*/
days_in_month(): u8;
/**
* Returns the number of days in the year represented by this date
* See the {@link
https://docs.rs/icu/latest/icu/calendar/struct.Date.html#method.day
s_in_year
Rust documentation for `days_in_year`} for more information.
*/
days_in_year(): u16;
}
[ Dauer der Verarbeitung: 0.17 Sekunden (vorverarbeitet)
]
2026-04-06