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日期和时间

Download history • Rust 包仓库 27/week @ 2024-03-11 • Rust 包仓库 42/week @ 2024-03-18 • Rust 包仓库 73/week @ 2024-03-25 • Rust 包仓库 120/week @ 2024-04-01 • Rust 包仓库 139/week @ 2024-04-08 • Rust 包仓库 72/week @ 2024-04-15 • Rust 包仓库 86/week @ 2024-04-22 • Rust 包仓库 145/week @ 2024-04-29 • Rust 包仓库 225/week @ 2024-05-06 • Rust 包仓库 107/week @ 2024-05-13 • Rust 包仓库 72/week @ 2024-05-20 • Rust 包仓库 51/week @ 2024-05-27 • Rust 包仓库 67/week @ 2024-06-03 • Rust 包仓库 75/week @ 2024-06-10 • Rust 包仓库 108/week @ 2024-06-17 • Rust 包仓库 90/week @ 2024-06-24 • Rust 包仓库

每月下载 344
3 Crates 中使用 (直接使用 2 个)

MIT 许可证

5KB
51

Year Helper

CI

此库提供了一些处理年份的有用函数。

用法

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

文档

https://docs.rs/year-helper

许可证

MIT


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);

无运行时依赖