Logo

Programming-Idioms

History of Idiom 5 > diff from v359 to v360

Edit summary for version 360 by programming-idioms.org:
[Elixir] +DemoURL, +comments

Version 359

2016-09-21, 08:16:37

Version 360

2017-02-07, 22:13:40

Idiom #5 Create a 2D Point data structure

Declare a container type for two floating-point numbers x and y

Illustration

Idiom #5 Create a 2D Point data structure

Declare a container type for two floating-point numbers x and y

Illustration
Code
p = [ x: 1.122, y: 7.45 ]
Code
p = [ x: 1.122, y: 7.45 ]
Comments bubble
Just create values with appropriate keys.
Doc URL
http://elixir-lang.org/getting-started/maps-and-dicts.html#keyword-lists
Doc URL
http://elixir-lang.org/getting-started/maps-and-dicts.html#keyword-lists
Demo URL
http://play.elixirbyexample.com/s/b70e2b371d