Skip to content

dustinspecker/dict-key-values

Repository files navigation

DictKeyValues Build Status Elm Docs

Swap the key value pairs of a Dict

Install

elm-package install dustinspecker/dict-key-values

Usage

module AwesomeModule where

import Dict
import DictKeyValues

people =
  Dict.fromList [ ("Bob", 3), ("Jan", 7) ]

DictKeyValues.swap people -- Dict.fromList [ (3, "Bob"), (7, "Jan") ]

License

MIT © Dustin Specker

About

Swap the key value pairs of a Dict

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages