aboutsummaryrefslogtreecommitdiff
path: root/src/client/Utils/Dict.elm
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/Utils/Dict.elm')
-rw-r--r--src/client/Utils/Dict.elm11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/client/Utils/Dict.elm b/src/client/Utils/Dict.elm
deleted file mode 100644
index 7d708e2..0000000
--- a/src/client/Utils/Dict.elm
+++ /dev/null
@@ -1,11 +0,0 @@
-module Utils.Dict exposing
- ( mapValues
- )
-
-import Dict as Dict exposing (..)
-
-mapValues : (a -> b) -> Dict comparable a -> Dict comparable b
-mapValues f = Dict.fromList << List.map (onSecond f) << Dict.toList
-
-onSecond : (a -> b) -> (comparable, a) -> (comparable, b)
-onSecond f tuple = case tuple of (x, y) -> (x, f y)