當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Elixir Date.to_erl用法及代碼示例


Elixir語言中 Date.to_erl 相關用法介紹如下。

用法:

to_erl(date)
@spec to_erl(Calendar.date()) :: :calendar.date()

將給定的 date 轉換為 Erlang 日期元組。

僅支持轉換 ISO 日曆中的日期,或其他日期也從午夜開始的日曆。嘗試從其他日曆轉換日期將引發。

例子

iex> Date.to_erl(~D[2000-01-01])
{2000, 1, 1}

iex> Date.to_erl(~N[2000-01-01 00:00:00])
{2000, 1, 1}

相關用法


注:本文由純淨天空篩選整理自elixir-lang.org大神的英文原創作品 Date.to_erl(date)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。