feat: Export fromList for ImplicitMap

This commit is contained in:
vegowotenks 2025-08-14 10:44:09 +02:00
parent 05397334ed
commit c20de441de

View file

@ -6,7 +6,7 @@
{-# LANGUAGE StandaloneDeriving #-} -- derive Eq {-# LANGUAGE StandaloneDeriving #-} -- derive Eq
-- | A Map that derives the keys for the mapping from the items. -- | 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.Kind (Type, Constraint)
import Data.Map (Map) import Data.Map (Map)
import Text.Show (Show (show)) import Text.Show (Show (show))