Logo

Programming-Idioms

History of Idiom 118 > diff from v43 to v44

Edit summary for version 44 by programming-idioms.org:
[Elixir] 404

Version 43

2019-10-14, 12:28:21

Version 44

2020-05-10, 21:33:26

Idiom #118 List to set

Create set y from list x.
x may contain duplicates. y is unordered and has no repeated values.

Illustration

Idiom #118 List to set

Create set y from list x.
x may contain duplicates. y is unordered and has no repeated values.

Illustration
Variables
y,x
Code
y = MapSet.new(x)
Code
y = MapSet.new(x)
Doc URL
http://elixir-lang.org/docs/stable/elixir/MapSet.html#new/1
Doc URL
https://hexdocs.pm/elixir/MapSet.html#new/1