3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

口で言うより行うことがErlang習得への近道と信じています。

lists:enumerate/1

各要素をインデックスと一緒にタプルで括って、新しいリストを返します。

要素の数え方は「1、2、3ぁっダー!」です。例えば最初の要素のインデックスは1となります。

> lists:enumerate([a, b, c]).
[{1,a},{2,b},{3,c}]

lists:enumerate/2

lists:enumerate/2 を使うと、インデックスの最初の値を指定できます。

> lists:enumerate(0, [a, b, c]).
[{0,a},{1,b},{2,c}]

> lists:enumerate(100, [a, b, c]).
[{100,a},{101,b},{102,c}]

listsモジュールには他にもリスト処理のための関数がたくさんあります。

Elixirにも挑戦したい

闘魂ElixirシリーズとElixir Schoolがオススメです。

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?