Safe Haskell | None |
---|---|
Language | Haskell2010 |
Synopsis
- newtype MonoidalDMap (f :: k -> *) (g :: k -> *) = MonoidalDMap {
- unMonoidalDMap :: DMap f g
- newtype FakeDSum f g = FakeDSum {
- unFakeDSum :: DSum f g
- empty :: MonoidalDMap k f
- singleton :: k v -> f v -> MonoidalDMap k f
- null :: MonoidalDMap k f -> Bool
- size :: MonoidalDMap k f -> Int
- lookup :: forall k f v. GCompare k => k v -> MonoidalDMap k f -> Maybe (f v)
- deleteFindMin :: MonoidalDMap k f -> (DSum k f, MonoidalDMap k f)
- minViewWithKey :: forall k f. MonoidalDMap k f -> Maybe (DSum k f, MonoidalDMap k f)
- maxViewWithKey :: forall k f. MonoidalDMap k f -> Maybe (DSum k f, MonoidalDMap k f)
- deleteFindMax :: MonoidalDMap k f -> (DSum k f, MonoidalDMap k f)
- member :: GCompare k => k a -> MonoidalDMap k f -> Bool
- notMember :: GCompare k => k v -> MonoidalDMap k f -> Bool
- find :: GCompare k => k v -> MonoidalDMap k f -> f v
- findWithDefault :: GCompare k => f v -> k v -> MonoidalDMap k f -> f v
- insert :: forall k f v. GCompare k => k v -> f v -> MonoidalDMap k f -> MonoidalDMap k f
- insertWith :: GCompare k => (f v -> f v -> f v) -> k v -> f v -> MonoidalDMap k f -> MonoidalDMap k f
- insertWith' :: GCompare k => (f v -> f v -> f v) -> k v -> f v -> MonoidalDMap k f -> MonoidalDMap k f
- insertWithKey :: forall k f v. GCompare k => (k v -> f v -> f v -> f v) -> k v -> f v -> MonoidalDMap k f -> MonoidalDMap k f
- insertWithKey' :: forall k f v. GCompare k => (k v -> f v -> f v -> f v) -> k v -> f v -> MonoidalDMap k f -> MonoidalDMap k f
- insertLookupWithKey :: forall k f v. GCompare k => (k v -> f v -> f v -> f v) -> k v -> f v -> MonoidalDMap k f -> (Maybe (f v), MonoidalDMap k f)
- insertLookupWithKey' :: forall k f v. GCompare k => (k v -> f v -> f v -> f v) -> k v -> f v -> MonoidalDMap k f -> (Maybe (f v), MonoidalDMap k f)
- delete :: forall k f v. GCompare k => k v -> MonoidalDMap k f -> MonoidalDMap k f
- adjust :: GCompare k => (f v -> f v) -> k v -> MonoidalDMap k f -> MonoidalDMap k f
- adjustWithKey :: GCompare k => (k v -> f v -> f v) -> k v -> MonoidalDMap k f -> MonoidalDMap k f
- adjustWithKey' :: GCompare k => (k v -> f v -> f v) -> k v -> MonoidalDMap k f -> MonoidalDMap k f
- update :: GCompare k => (f v -> Maybe (f v)) -> k v -> MonoidalDMap k f -> MonoidalDMap k f
- updateWithKey :: forall k f v. GCompare k => (k v -> f v -> Maybe (f v)) -> k v -> MonoidalDMap k f -> MonoidalDMap k f
- updateLookupWithKey :: forall k f v. GCompare k => (k v -> f v -> Maybe (f v)) -> k v -> MonoidalDMap k f -> (Maybe (f v), MonoidalDMap k f)
- alter :: forall k f v. GCompare k => (Maybe (f v) -> Maybe (f v)) -> k v -> MonoidalDMap k f -> MonoidalDMap k f
- findIndex :: GCompare k => k v -> MonoidalDMap k f -> Int
- lookupIndex :: forall k f v. GCompare k => k v -> MonoidalDMap k f -> Maybe Int
- elemAt :: Int -> MonoidalDMap k f -> DSum k f
- updateAt :: (forall v. k v -> f v -> Maybe (f v)) -> Int -> MonoidalDMap k f -> MonoidalDMap k f
- deleteAt :: Int -> MonoidalDMap k f -> MonoidalDMap k f
- findMin :: MonoidalDMap k f -> DSum k f
- lookupMin :: MonoidalDMap k f -> Maybe (DSum k f)
- findMax :: MonoidalDMap k f -> DSum k f
- lookupMax :: MonoidalDMap k f -> Maybe (DSum k f)
- deleteMin :: MonoidalDMap k f -> MonoidalDMap k f
- deleteMax :: MonoidalDMap k f -> MonoidalDMap k f
- updateMinWithKey :: (forall v. k v -> f v -> Maybe (f v)) -> MonoidalDMap k f -> MonoidalDMap k f
- updateMaxWithKey :: (forall v. k v -> f v -> Maybe (f v)) -> MonoidalDMap k f -> MonoidalDMap k f
- unionsWithKey :: GCompare k => (forall v. k v -> f v -> f v -> f v) -> [MonoidalDMap k f] -> MonoidalDMap k f
- unionWithKey :: GCompare k => (forall v. k v -> f v -> f v -> f v) -> MonoidalDMap k f -> MonoidalDMap k f -> MonoidalDMap k f
- difference :: GCompare k => MonoidalDMap k f -> MonoidalDMap k g -> MonoidalDMap k f
- differenceWithKey :: GCompare k => (forall v. k v -> f v -> g v -> Maybe (f v)) -> MonoidalDMap k f -> MonoidalDMap k g -> MonoidalDMap k f
- intersectionWithKey :: GCompare k => (forall v. k v -> f v -> g v -> h v) -> MonoidalDMap k f -> MonoidalDMap k g -> MonoidalDMap k h
- isSubmapOf :: (GCompare k, Has' Eq k f) => MonoidalDMap k f -> MonoidalDMap k f -> Bool
- isSubmapOfBy :: GCompare k => (forall v. k v -> k v -> f v -> g v -> Bool) -> MonoidalDMap k f -> MonoidalDMap k g -> Bool
- isProperSubmapOf :: (GCompare k, Has' Eq k f) => MonoidalDMap k f -> MonoidalDMap k f -> Bool
- isProperSubmapOfBy :: GCompare k => (forall v. k v -> k v -> f v -> g v -> Bool) -> MonoidalDMap k f -> MonoidalDMap k g -> Bool
- filterWithKey :: GCompare k => (forall v. k v -> f v -> Bool) -> MonoidalDMap k f -> MonoidalDMap k f
- partitionWithKey :: GCompare k => (forall v. k v -> f v -> Bool) -> MonoidalDMap k f -> (MonoidalDMap k f, MonoidalDMap k f)
- mapMaybeWithKey :: GCompare k => (forall v. k v -> f v -> Maybe (g v)) -> MonoidalDMap k f -> MonoidalDMap k g
- mapEitherWithKey :: GCompare k => (forall v. k v -> f v -> Either (g v) (h v)) -> MonoidalDMap k f -> (MonoidalDMap k g, MonoidalDMap k h)
- map :: (forall v. f v -> g v) -> MonoidalDMap k f -> MonoidalDMap k g
- mapWithKey :: (forall v. k v -> f v -> g v) -> MonoidalDMap k f -> MonoidalDMap k g
- traverseWithKey :: Applicative t => (forall v. k v -> f v -> t (g v)) -> MonoidalDMap k f -> t (MonoidalDMap k g)
- mapAccumLWithKey :: (forall v. a -> k v -> f v -> (a, g v)) -> a -> MonoidalDMap k f -> (a, MonoidalDMap k g)
- mapAccumRWithKey :: (forall v. a -> k v -> f v -> (a, g v)) -> a -> MonoidalDMap k f -> (a, MonoidalDMap k g)
- mapKeysWith :: GCompare k2 => (forall v. k2 v -> f v -> f v -> f v) -> (forall v. k1 v -> k2 v) -> MonoidalDMap k1 f -> MonoidalDMap k2 f
- mapKeysMonotonic :: (forall v. k1 v -> k2 v) -> MonoidalDMap k1 f -> MonoidalDMap k2 f
- foldrWithKey :: (forall v. k v -> f v -> b -> b) -> b -> MonoidalDMap k f -> b
- foldlWithKey :: (forall v. b -> k v -> f v -> b) -> b -> MonoidalDMap k f -> b
- keys :: MonoidalDMap k f -> [Some k]
- assocs :: MonoidalDMap k f -> [DSum k f]
- fromListWithKey :: GCompare k => (forall v. k v -> f v -> f v -> f v) -> [DSum k f] -> MonoidalDMap k f
- toList :: MonoidalDMap k f -> [DSum k f]
- toAscList :: MonoidalDMap k f -> [DSum k f]
- toDescList :: MonoidalDMap k f -> [DSum k f]
- fromAscListWithKey :: GEq k => (forall v. k v -> f v -> f v -> f v) -> [DSum k f] -> MonoidalDMap k f
- split :: forall k f v. GCompare k => k v -> MonoidalDMap k f -> (MonoidalDMap k f, MonoidalDMap k f)
- splitLookup :: forall k f v. GCompare k => k v -> MonoidalDMap k f -> (MonoidalDMap k f, Maybe (f v), MonoidalDMap k f)
- showTree :: (GShow k, Has' Show k f) => MonoidalDMap k f -> String
- showTreeWith :: (forall v. k v -> f v -> String) -> Bool -> Bool -> MonoidalDMap k f -> String
- valid :: GCompare k => MonoidalDMap k f -> Bool
Documentation
newtype MonoidalDMap (f :: k -> *) (g :: k -> *) Source #
MonoidalDMap | |
|
Instances
FakeDSum | |
|
Instances
(GEq f, Has' Eq f g) => Eq (FakeDSum f g) Source # | |
(GCompare f, Has' Eq f g, Has' Ord f g) => Ord (FakeDSum f g) Source # | |
Defined in Data.Dependent.Map.Monoidal | |
(GRead f, Has' Read f g) => Read (FakeDSum f g) Source # | |
(ForallF Show f, Has' Show f g) => Show (FakeDSum f g) Source # | |
empty :: MonoidalDMap k f Source #
O(1). The empty map.
empty == fromList [] size empty == 0
singleton :: k v -> f v -> MonoidalDMap k f Source #
O(1). A map with a single element.
singleton 1 'a' == fromList [(1, 'a')] size (singleton 1 'a') == 1
null :: MonoidalDMap k f -> Bool Source #
O(1). Is the map empty?
size :: MonoidalDMap k f -> Int Source #
O(1). The number of elements in the map.
deleteFindMin :: MonoidalDMap k f -> (DSum k f, MonoidalDMap k f) Source #
O(log n). Delete and find the minimal element.
deleteFindMin (fromList [(5,"a"), (3,"b"), (10,"c")]) == ((3,"b"), fromList[(5,"a"), (10,"c")]) deleteFindMin Error: can not return the minimal element of an empty map
minViewWithKey :: forall k f. MonoidalDMap k f -> Maybe (DSum k f, MonoidalDMap k f) Source #
O(log n). Retrieves the minimal (key :=> value) entry of the map, and
the map stripped of that element, or Nothing
if passed an empty map.
maxViewWithKey :: forall k f. MonoidalDMap k f -> Maybe (DSum k f, MonoidalDMap k f) Source #
O(log n). Retrieves the maximal (key :=> value) entry of the map, and
the map stripped of that element, or Nothing
if passed an empty map.
deleteFindMax :: MonoidalDMap k f -> (DSum k f, MonoidalDMap k f) Source #
O(log n). Delete and find the maximal element.
deleteFindMax (fromList [(5,"a"), (3,"b"), (10,"c")]) == ((10,"c"), fromList [(3,"b"), (5,"a")]) deleteFindMax empty Error: can not return the maximal element of an empty map
member :: GCompare k => k a -> MonoidalDMap k f -> Bool Source #
O(log n). Is the key a member of the map? See also notMember
.
notMember :: GCompare k => k v -> MonoidalDMap k f -> Bool Source #
O(log n). Is the key not a member of the map? See also member
.
find :: GCompare k => k v -> MonoidalDMap k f -> f v Source #
findWithDefault :: GCompare k => f v -> k v -> MonoidalDMap k f -> f v Source #
O(log n). The expression (
returns
the value at key findWithDefault
def k map)k
or returns default value def
when the key is not in the map.
insert :: forall k f v. GCompare k => k v -> f v -> MonoidalDMap k f -> MonoidalDMap k f Source #
O(log n). Insert a new key and value in the map.
If the key is already present in the map, the associated value is
replaced with the supplied value. insert
is equivalent to
.insertWith
const
insertWith :: GCompare k => (f v -> f v -> f v) -> k v -> f v -> MonoidalDMap k f -> MonoidalDMap k f Source #
O(log n). Insert with a function, combining new value and old value.
will insert the entry insertWith
f key value mpkey :=> value
into mp
if key does
not exist in the map. If the key does exist, the function will
insert the entry key :=> f new_value old_value
.
insertWith' :: GCompare k => (f v -> f v -> f v) -> k v -> f v -> MonoidalDMap k f -> MonoidalDMap k f Source #
Same as insertWith
, but the combining function is applied strictly.
This is often the most desirable behavior.
insertWithKey :: forall k f v. GCompare k => (k v -> f v -> f v -> f v) -> k v -> f v -> MonoidalDMap k f -> MonoidalDMap k f Source #
O(log n). Insert with a function, combining key, new value and old value.
will insert the entry insertWithKey
f key value mpkey :=> value
into mp
if key does
not exist in the map. If the key does exist, the function will
insert the entry key :=> f key new_value old_value
.
Note that the key passed to f is the same key passed to insertWithKey
.
insertWithKey' :: forall k f v. GCompare k => (k v -> f v -> f v -> f v) -> k v -> f v -> MonoidalDMap k f -> MonoidalDMap k f Source #
Same as insertWithKey
, but the combining function is applied strictly.
insertLookupWithKey :: forall k f v. GCompare k => (k v -> f v -> f v -> f v) -> k v -> f v -> MonoidalDMap k f -> (Maybe (f v), MonoidalDMap k f) Source #
O(log n). Combines insert operation with old value retrieval.
The expression (
)
is a pair where the first element is equal to (insertLookupWithKey
f k x map
)
and the second element equal to (lookup
k map
).insertWithKey
f k x map
insertLookupWithKey' :: forall k f v. GCompare k => (k v -> f v -> f v -> f v) -> k v -> f v -> MonoidalDMap k f -> (Maybe (f v), MonoidalDMap k f) Source #
O(log n). A strict version of insertLookupWithKey
.
delete :: forall k f v. GCompare k => k v -> MonoidalDMap k f -> MonoidalDMap k f Source #
O(log n). Delete a key and its value from the map. When the key is not a member of the map, the original map is returned.
adjust :: GCompare k => (f v -> f v) -> k v -> MonoidalDMap k f -> MonoidalDMap k f Source #
O(log n). Update a value at a specific key with the result of the provided function. When the key is not a member of the map, the original map is returned.
adjustWithKey :: GCompare k => (k v -> f v -> f v) -> k v -> MonoidalDMap k f -> MonoidalDMap k f Source #
O(log n). Adjust a value at a specific key. When the key is not a member of the map, the original map is returned.
adjustWithKey' :: GCompare k => (k v -> f v -> f v) -> k v -> MonoidalDMap k f -> MonoidalDMap k f Source #
O(log n). A strict version of adjustWithKey
.
update :: GCompare k => (f v -> Maybe (f v)) -> k v -> MonoidalDMap k f -> MonoidalDMap k f Source #
updateWithKey :: forall k f v. GCompare k => (k v -> f v -> Maybe (f v)) -> k v -> MonoidalDMap k f -> MonoidalDMap k f Source #
O(log n). The expression (
) updates the
value updateWithKey
f k mapx
at k
(if it is in the map). If (f k x
) is Nothing
,
the element is deleted. If it is (
), the key Just
yk
is bound
to the new value y
.
updateLookupWithKey :: forall k f v. GCompare k => (k v -> f v -> Maybe (f v)) -> k v -> MonoidalDMap k f -> (Maybe (f v), MonoidalDMap k f) Source #
O(log n). Lookup and update. See also updateWithKey
.
The function returns changed value, if it is updated.
Returns the original key value if the map entry is deleted.
alter :: forall k f v. GCompare k => (Maybe (f v) -> Maybe (f v)) -> k v -> MonoidalDMap k f -> MonoidalDMap k f Source #
lookupIndex :: forall k f v. GCompare k => k v -> MonoidalDMap k f -> Maybe Int Source #
O(log n). Lookup the index of a key. The index is a number from
0 up to, but not including, the size
of the map.
elemAt :: Int -> MonoidalDMap k f -> DSum k f Source #
O(log n). Retrieve an element by index. Calls error
when an
invalid index is used.
updateAt :: (forall v. k v -> f v -> Maybe (f v)) -> Int -> MonoidalDMap k f -> MonoidalDMap k f Source #
O(log n). Update the element at index. Does nothing when an invalid index is used.
deleteAt :: Int -> MonoidalDMap k f -> MonoidalDMap k f Source #
findMin :: MonoidalDMap k f -> DSum k f Source #
O(log n). The minimal key of the map. Calls error
is the map is empty.
findMax :: MonoidalDMap k f -> DSum k f Source #
O(log n). The maximal key of the map. Calls error
is the map is empty.
deleteMin :: MonoidalDMap k f -> MonoidalDMap k f Source #
O(log n). Delete the minimal key. Returns an empty map if the map is empty.
deleteMax :: MonoidalDMap k f -> MonoidalDMap k f Source #
O(log n). Delete the maximal key. Returns an empty map if the map is empty.
updateMinWithKey :: (forall v. k v -> f v -> Maybe (f v)) -> MonoidalDMap k f -> MonoidalDMap k f Source #
O(log n). Update the value at the minimal key.
updateMaxWithKey :: (forall v. k v -> f v -> Maybe (f v)) -> MonoidalDMap k f -> MonoidalDMap k f Source #
O(log n). Update the value at the maximal key.
unionsWithKey :: GCompare k => (forall v. k v -> f v -> f v -> f v) -> [MonoidalDMap k f] -> MonoidalDMap k f Source #
The union of a list of maps, with a combining operation:
(
).unionsWithKey
f == foldl
(unionWithKey
f) empty
unionWithKey :: GCompare k => (forall v. k v -> f v -> f v -> f v) -> MonoidalDMap k f -> MonoidalDMap k f -> MonoidalDMap k f Source #
O(n+m). Union with a combining function.
difference :: GCompare k => MonoidalDMap k f -> MonoidalDMap k g -> MonoidalDMap k f Source #
O(m * log (n/m + 1)), m <= n. Difference of two maps. Return elements of the first map not existing in the second map.
differenceWithKey :: GCompare k => (forall v. k v -> f v -> g v -> Maybe (f v)) -> MonoidalDMap k f -> MonoidalDMap k g -> MonoidalDMap k f Source #
intersectionWithKey :: GCompare k => (forall v. k v -> f v -> g v -> h v) -> MonoidalDMap k f -> MonoidalDMap k g -> MonoidalDMap k h Source #
O(m * log (n/m + 1), m <= n. Intersection with a combining function.
isSubmapOf :: (GCompare k, Has' Eq k f) => MonoidalDMap k f -> MonoidalDMap k f -> Bool Source #
O(n+m).
This function is defined as (
).isSubmapOf
= isSubmapOfBy
eqTagged
)
isSubmapOfBy :: GCompare k => (forall v. k v -> k v -> f v -> g v -> Bool) -> MonoidalDMap k f -> MonoidalDMap k g -> Bool Source #
O(n+m).
The expression (
) returns isSubmapOfBy
f t1 t2True
if
all keys in t1
are in tree t2
, and when f
returns True
when
applied to their respective keys and values.
isProperSubmapOf :: (GCompare k, Has' Eq k f) => MonoidalDMap k f -> MonoidalDMap k f -> Bool Source #
O(n+m). Is this a proper submap? (ie. a submap but not equal).
Defined as (
).isProperSubmapOf
= isProperSubmapOfBy
eqTagged
isProperSubmapOfBy :: GCompare k => (forall v. k v -> k v -> f v -> g v -> Bool) -> MonoidalDMap k f -> MonoidalDMap k g -> Bool Source #
O(n+m). Is this a proper submap? (ie. a submap but not equal).
The expression (
) returns isProperSubmapOfBy
f m1 m2True
when
m1
and m2
are not equal,
all keys in m1
are in m2
, and when f
returns True
when
applied to their respective keys and values.
filterWithKey :: GCompare k => (forall v. k v -> f v -> Bool) -> MonoidalDMap k f -> MonoidalDMap k f Source #
O(n). Filter all keys/values that satisfy the predicate.
partitionWithKey :: GCompare k => (forall v. k v -> f v -> Bool) -> MonoidalDMap k f -> (MonoidalDMap k f, MonoidalDMap k f) Source #
O(n). Partition the map according to a predicate. The first
map contains all elements that satisfy the predicate, the second all
elements that fail the predicate. See also split
.
mapMaybeWithKey :: GCompare k => (forall v. k v -> f v -> Maybe (g v)) -> MonoidalDMap k f -> MonoidalDMap k g Source #
O(n). Map keys/values and collect the Just
results.
mapEitherWithKey :: GCompare k => (forall v. k v -> f v -> Either (g v) (h v)) -> MonoidalDMap k f -> (MonoidalDMap k g, MonoidalDMap k h) Source #
map :: (forall v. f v -> g v) -> MonoidalDMap k f -> MonoidalDMap k g Source #
O(n). Map a function over all values in the map.
mapWithKey :: (forall v. k v -> f v -> g v) -> MonoidalDMap k f -> MonoidalDMap k g Source #
O(n). Map a function over all values in the map.
traverseWithKey :: Applicative t => (forall v. k v -> f v -> t (g v)) -> MonoidalDMap k f -> t (MonoidalDMap k g) Source #
mapAccumLWithKey :: (forall v. a -> k v -> f v -> (a, g v)) -> a -> MonoidalDMap k f -> (a, MonoidalDMap k g) Source #
O(n). The function mapAccumLWithKey
threads an accumulating
argument throught the map in ascending order of keys.
mapAccumRWithKey :: (forall v. a -> k v -> f v -> (a, g v)) -> a -> MonoidalDMap k f -> (a, MonoidalDMap k g) Source #
O(n). The function mapAccumRWithKey
threads an accumulating
argument through the map in descending order of keys.
mapKeysWith :: GCompare k2 => (forall v. k2 v -> f v -> f v -> f v) -> (forall v. k1 v -> k2 v) -> MonoidalDMap k1 f -> MonoidalDMap k2 f Source #
O(n*log n).
is the map obtained by applying mapKeysWith
c f sf
to each key of s
.
The size of the result may be smaller if f
maps two or more distinct
keys to the same new key. In this case the associated values will be
combined using c
.
mapKeysMonotonic :: (forall v. k1 v -> k2 v) -> MonoidalDMap k1 f -> MonoidalDMap k2 f Source #
O(n).
, but works only when mapKeysMonotonic
f s == mapKeys
f sf
is strictly monotonic.
That is, for any values x
and y
, if x
< y
then f x
< f y
.
The precondition is not checked.
Semi-formally, we have:
and [x < y ==> f x < f y | x <- ls, y <- ls] ==> mapKeysMonotonic f s == mapKeys f s where ls = keys s
This means that f
maps distinct original keys to distinct resulting keys.
This function has better performance than mapKeys
.
foldrWithKey :: (forall v. k v -> f v -> b -> b) -> b -> MonoidalDMap k f -> b Source #
O(n). Post-order fold. The function will be applied from the lowest value to the highest.
foldlWithKey :: (forall v. b -> k v -> f v -> b) -> b -> MonoidalDMap k f -> b Source #
O(n). Pre-order fold. The function will be applied from the highest value to the lowest.
keys :: MonoidalDMap k f -> [Some k] Source #
O(n). Return all keys of the map in ascending order.
keys (fromList [(5,"a"), (3,"b")]) == [3,5] keys empty == []
assocs :: MonoidalDMap k f -> [DSum k f] Source #
O(n). Return all key/value pairs in the map in ascending key order.
fromListWithKey :: GCompare k => (forall v. k v -> f v -> f v -> f v) -> [DSum k f] -> MonoidalDMap k f Source #
O(n*log n). Build a map from a list of key/value pairs with a combining function. See also fromAscListWithKey
.
toList :: MonoidalDMap k f -> [DSum k f] Source #
O(n). Convert to a list of key/value pairs.
toAscList :: MonoidalDMap k f -> [DSum k f] Source #
O(n). Convert to an ascending list.
toDescList :: MonoidalDMap k f -> [DSum k f] Source #
O(n). Convert to a descending list.
fromAscListWithKey :: GEq k => (forall v. k v -> f v -> f v -> f v) -> [DSum k f] -> MonoidalDMap k f Source #
O(n). Build a map from an ascending list in linear time with a combining function for equal keys. The precondition (input list is ascending) is not checked.
split :: forall k f v. GCompare k => k v -> MonoidalDMap k f -> (MonoidalDMap k f, MonoidalDMap k f) Source #
O(log n). The expression (
) is a pair split
k map(map1,map2)
where
the keys in map1
are smaller than k
and the keys in map2
larger than k
.
Any key equal to k
is found in neither map1
nor map2
.
splitLookup :: forall k f v. GCompare k => k v -> MonoidalDMap k f -> (MonoidalDMap k f, Maybe (f v), MonoidalDMap k f) Source #
O(log n). The expression (
) splits a map just
like splitLookup
k mapsplit
but also returns
.lookup
k map
showTree :: (GShow k, Has' Show k f) => MonoidalDMap k f -> String Source #
O(n). Show the tree that implements the map. The tree is shown
in a compressed, hanging format. See showTreeWith
.
showTreeWith :: (forall v. k v -> f v -> String) -> Bool -> Bool -> MonoidalDMap k f -> String Source #
O(n). The expression (
) shows
the tree that implements the map. Elements are shown using the showTreeWith
showelem hang wide mapshowElem
function. If hang
is
True
, a hanging tree is shown otherwise a rotated tree is shown. If
wide
is True
, an extra wide version is shown.