From c20de441de88b755291dc6c627dac10b592f889c Mon Sep 17 00:00:00 2001 From: VegOwOtenks Date: Thu, 14 Aug 2025 10:44:09 +0200 Subject: [PATCH] feat: Export `fromList` for `ImplicitMap` --- src/Data/Map/Implicit.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Data/Map/Implicit.hs b/src/Data/Map/Implicit.hs index 3cbc43f..7996c15 100644 --- a/src/Data/Map/Implicit.hs +++ b/src/Data/Map/Implicit.hs @@ -6,7 +6,7 @@ {-# LANGUAGE StandaloneDeriving #-} -- derive Eq -- | A Map that derives the keys for the mapping from the items. -module Data.Map.Implicit (ImplicitMap(), get, ImplicitKeyOf(..), empty) where +module Data.Map.Implicit (ImplicitMap(), get, ImplicitKeyOf(..), empty, fromList) where import Data.Kind (Type, Constraint) import Data.Map (Map) import Text.Show (Show (show))