查看源代码 Date.Range (Elixir v1.16.2)
返回日期之间的包含范围。
范围必须使用 Date.range/2
或 Date.range/3
函数创建。
以下字段是公开的
:first
- 范围的起始日期:last
- 范围的结束日期:step
- (自 v1.12.0 起) 步长
其余字段是私有的,不应访问。
摘要
类型
@type t() :: %Date.Range{ first: Date.t(), first_in_iso_days: days(), last: Date.t(), last_in_iso_days: days(), step: pos_integer() | neg_integer() }