4 个版本
0.2.1 | 2023年1月6日 |
---|---|
0.2.0 | 2022年12月30日 |
0.1.1 | 2022年12月30日 |
0.1.0 | 2022年12月27日 |
#461 在 日期和时间
每月下载 344 次
在 3 个 Crates 中使用 (直接使用 2 个)
5KB
51 行
Year Helper
此库提供了一些处理年份的有用函数。
用法
let year = 2020;
let month = 2;
let leap_year = year_helper::is_leap_year(year);
let days_in_month = year_helper::get_days_in_month(year, month);
let days_in_year = year_helper::get_days_in_year(year);
// or use the following functions if the year has been determined whether it is a leap year
let days_in_month = year_helper::get_days_in_month_2(leap_year, month);
let days_in_year = year_helper::get_days_in_year_2(leap_year);
Crates.io
https://crates.io/crates/year-helper
文档
许可证
lib.rs
:
Year Helper
此库提供了一些处理年份的有用函数。
用法
let year = 2020;
let month = 2;
let leap_year = year_helper::is_leap_year(year);
let days_in_month = year_helper::get_days_in_month(year, month);
let days_in_year = year_helper::get_days_in_year(year);
// or use the following functions if the year has been determined whether it is a leap year
let days_in_month = year_helper::get_days_in_month_2(leap_year, month);
let days_in_year = year_helper::get_days_in_year_2(leap_year);