Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Haskell

Idiom #281 Use a Point as a map key

You have a Point with integer coordinates x and y. Create a map m with key type Point (or equivalent) and value type string. Insert "Hello" at position (42, 5).

import qualified Data.Map.Strict as Map
type Point = (Integer, Integer)
m :: Map.Map Point String
m = Map.empty
m' = Map.insert (42, 5) "Hello" m

doesn’t mutate m but creates new constant m'
m[new Point(x: 42, y: 5)] = "Hello";

New implementation...
programming-idioms.org