Elixir语言中 Kernel.first..last
相关用法介绍如下。
用法:
first..last
(宏)
创建从 first
到 last
的范围。
如果第一个小于最后一个,则范围将从第一个到最后一个增加。如果 first 等于 last,则范围将包含一个元素,即数字本身。
如果 first 大于 last,则范围将从 first 到 last 递减,尽管此行为已被弃用。相反,更喜欢使用 first..last//-1
显式列出该步骤。
有关详细信息,请参阅
模块。Range
例子
iex> 0 in 1..3
false
iex> 2 in 1..3
true
iex> Enum.to_list(1..3)
[1, 2, 3]
相关用法
- Elixir Kernel.first..last//step用法及代码示例
- Elixir Kernel.function_exported?用法及代码示例
- Elixir Kernel.SpecialForms.case用法及代码示例
- Elixir Kernel.round用法及代码示例
- Elixir Kernel.left / right用法及代码示例
- Elixir Kernel.put_in用法及代码示例
- Elixir Kernel.tl用法及代码示例
- Elixir Kernel.left - right用法及代码示例
- Elixir Kernel.tuple_size用法及代码示例
- Elixir Kernel.defexception用法及代码示例
- Elixir Kernel.to_charlist用法及代码示例
- Elixir Kernel.base ** exponent用法及代码示例
- Elixir Kernel.left !== right用法及代码示例
- Elixir Kernel.if用法及代码示例
- Elixir Kernel.spawn_monitor用法及代码示例
- Elixir Kernel.to_string用法及代码示例
- Elixir Kernel.length用法及代码示例
- Elixir Kernel.SpecialForms.%{}用法及代码示例
- Elixir Kernel.SpecialForms.for用法及代码示例
- Elixir Kernel.then用法及代码示例
- Elixir Kernel.spawn用法及代码示例
- Elixir Kernel.defmodule用法及代码示例
- Elixir Kernel.SpecialForms.quote用法及代码示例
- Elixir Kernel.left > right用法及代码示例
- Elixir Kernel.binding用法及代码示例
注:本文由纯净天空筛选整理自elixir-lang.org大神的英文原创作品 Kernel.first..last。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。