primitive-containers-0.4.0: containers backed by arrays

Safe HaskellNone
LanguageHaskell2010

Data.Map.Unlifted.Unboxed

Contents

Synopsis

Documentation

data Map k v Source #

A map from keys k to values v. The key type must have a PrimUnlifted instance and the value type must have a Prim instance.

Instances
(PrimUnlifted k, Ord k, Prim v) => IsList (Map k v) Source # 
Instance details

Defined in Data.Map.Unlifted.Unboxed

Associated Types

type Item (Map k v) :: Type #

Methods

fromList :: [Item (Map k v)] -> Map k v #

fromListN :: Int -> [Item (Map k v)] -> Map k v #

toList :: Map k v -> [Item (Map k v)] #

(PrimUnlifted k, Eq k, Prim v, Eq v) => Eq (Map k v) Source # 
Instance details

Defined in Data.Map.Unlifted.Unboxed

Methods

(==) :: Map k v -> Map k v -> Bool #

(/=) :: Map k v -> Map k v -> Bool #

(PrimUnlifted k, Ord k, Prim v, Ord v) => Ord (Map k v) Source # 
Instance details

Defined in Data.Map.Unlifted.Unboxed

Methods

compare :: Map k v -> Map k v -> Ordering #

(<) :: Map k v -> Map k v -> Bool #

(<=) :: Map k v -> Map k v -> Bool #

(>) :: Map k v -> Map k v -> Bool #

(>=) :: Map k v -> Map k v -> Bool #

max :: Map k v -> Map k v -> Map k v #

min :: Map k v -> Map k v -> Map k v #

(PrimUnlifted k, Show k, Prim v, Show v) => Show (Map k v) Source # 
Instance details

Defined in Data.Map.Unlifted.Unboxed

Methods

showsPrec :: Int -> Map k v -> ShowS #

show :: Map k v -> String #

showList :: [Map k v] -> ShowS #

(PrimUnlifted k, Ord k, Prim v, Semigroup v) => Semigroup (Map k v) Source # 
Instance details

Defined in Data.Map.Unlifted.Unboxed

Methods

(<>) :: Map k v -> Map k v -> Map k v #

sconcat :: NonEmpty (Map k v) -> Map k v #

stimes :: Integral b => b -> Map k v -> Map k v #

(PrimUnlifted k, Ord k, Prim v, Semigroup v) => Monoid (Map k v) Source # 
Instance details

Defined in Data.Map.Unlifted.Unboxed

Methods

mempty :: Map k v #

mappend :: Map k v -> Map k v -> Map k v #

mconcat :: [Map k v] -> Map k v #

type Item (Map k v) Source # 
Instance details

Defined in Data.Map.Unlifted.Unboxed

type Item (Map k v) = (k, v)

empty :: Map k v Source #

The empty diet map.

singleton :: (PrimUnlifted k, Prim v) => k -> v -> Map k v Source #

O(1) Create a map with a single element.

lookup :: (PrimUnlifted k, Ord k, Prim v) => k -> Map k v -> Maybe v Source #

O(log n) Lookup the value at a key in the map.

size :: Prim v => Map k v -> Int Source #

O(1) The number of elements in the map.

map :: (PrimUnlifted k, Prim v, Prim w) => (v -> w) -> Map k v -> Map k w Source #

O(n) Map over the values in the map.

mapMaybe :: (PrimUnlifted k, Prim v, Prim w) => (v -> Maybe w) -> Map k v -> Map k w Source #

O(n) Drop elements for which the predicate returns Nothing.

mapMaybeWithKey :: (PrimUnlifted k, Prim v, Prim w) => (k -> v -> Maybe w) -> Map k v -> Map k w Source #

O(n) Drop elements for which the predicate returns Nothing. The predicate is given access to the key.

Folds

foldlWithKey' Source #

Arguments

:: (PrimUnlifted k, Prim v) 
=> (b -> k -> v -> b)

reduction

-> b

initial accumulator

-> Map k v

map

-> b 

O(n) Left fold over the keys and values with a strict accumulator.

foldrWithKey' Source #

Arguments

:: (PrimUnlifted k, Prim v) 
=> (k -> v -> b -> b)

reduction

-> b

initial accumulator

-> Map k v

map

-> b 

O(n) Right fold over the keys and values with a strict accumulator.

foldMapWithKey' Source #

Arguments

:: (Monoid b, PrimUnlifted k, Prim v) 
=> (k -> v -> b)

reduction

-> Map k v

map

-> b 

O(n) Fold over the keys and values of the map with a strict monoidal accumulator. This function does not have left and right variants since the associativity required by a monoid instance means that both variants would always produce the same result.

Monadic Folds

foldlWithKeyM' Source #

Arguments

:: (Monad m, PrimUnlifted k, Prim v) 
=> (b -> k -> v -> m b)

reduction

-> b

initial accumulator

-> Map k v

map

-> m b 

O(n) Left monadic fold over the keys and values of the map. This fold is strict in the accumulator.

foldrWithKeyM' Source #

Arguments

:: (Monad m, PrimUnlifted k, Prim v) 
=> (k -> v -> b -> m b)

reduction

-> b

initial accumulator

-> Map k v

map

-> m b 

O(n) Right monadic fold over the keys and values of the map. This fold is strict in the accumulator.

foldlMapWithKeyM' Source #

Arguments

:: (Monad m, Monoid b, PrimUnlifted k, Prim v) 
=> (k -> v -> m b)

reduction

-> Map k v

map

-> m b 

O(n) Monadic left fold over the keys and values of the map with a strict monoidal accumulator. The monoidal accumulator is appended to the left after each reduction.

foldrMapWithKeyM' Source #

Arguments

:: (Monad m, Monoid b, PrimUnlifted k, Prim v) 
=> (k -> v -> m b)

reduction

-> Map k v

map

-> m b 

O(n) Monadic right fold over the keys and values of the map with a strict monoidal accumulator. The monoidal accumulator is appended to the right after each reduction.

List Conversion

fromList :: (PrimUnlifted k, Ord k, Prim v) => [(k, v)] -> Map k v Source #

O(n*log n) Create a map from a list of key-value pairs. If the list contains more than one value for the same key, the last value is retained. If the keys in the argument are in nondescending order, this algorithm runs in O(n) time instead.

fromListAppend :: (PrimUnlifted k, Ord k, Prim v, Semigroup v) => [(k, v)] -> Map k v Source #

O(n*log n) This function has the same behavior as fromList, but it combines values with the Semigroup instances instead of choosing the last occurrence.

fromListN Source #

Arguments

:: (PrimUnlifted k, Ord k, Prim v) 
=> Int

expected size of resulting Map

-> [(k, v)]

key-value pairs

-> Map k v 

O(n*log n) This function has the same behavior as fromList regardless of whether or not the expected size is accurate. Additionally, negative sizes are handled correctly. The expected size is used as the size of the initially allocated buffer when building the Map. If the keys in the argument are in nondescending order, this algorithm runs in O(n) time.

fromListAppendN Source #

Arguments

:: (PrimUnlifted k, Ord k, Prim v, Semigroup v) 
=> Int

expected size of resulting Map

-> [(k, v)]

key-value pairs

-> Map k v 

O(n*log n) This function has the same behavior as fromListN, but it combines values with the Semigroup instances instead of choosing the last occurrence.

fromSet :: (PrimUnlifted k, Prim v) => (k -> v) -> Set k -> Map k v Source #

O(n) Build a map from a set. This function is uses the underlying array that backs the set as the array for the keys. It constructs the values by apply the given function to each key.

Array Conversion

unsafeFreezeZip :: (Ord k, PrimUnlifted k, Prim v) => MutableUnliftedArray s k -> MutablePrimArray s v -> ST s (Map k v) Source #

O(n*log n) Zip an array of keys with an array of values. If they are not the same length, the longer one will be truncated to match the shorter one. This function sorts and deduplicates the array of keys, preserving the last value associated with each key. The argument arrays may not be reused after being passed to this function.

This is by far the fastest way to create a map, since the functions backing it are aggressively specialized. It internally uses a hybrid of mergesort and insertion sort provided by the primitive-sort package. It generates much less garbage than any of the fromList variants.