Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Data.AssocList.List.Eq
Synopsis
- lookupFirst :: Eq a => a -> AssocList a b -> Maybe b
- lookupAll :: Eq a => a -> AssocList a b -> [b]
- removeFirst :: Eq a => a -> AssocList a b -> AssocList a b
- removeAll :: Eq a => a -> AssocList a b -> AssocList a b
- mapFirst :: Eq a => a -> (b -> b) -> AssocList a b -> AssocList a b
- mapAll :: Eq a => a -> (b -> b) -> AssocList a b -> AssocList a b
- alterFirst :: Eq a => a -> (Maybe b -> Maybe b) -> AssocList a b -> AssocList a b
- alterAll :: Eq a => a -> ([b] -> [b]) -> AssocList a b -> AssocList a b
- partition :: Eq a => a -> AssocList a b -> ([b], AssocList a b)
- break :: Eq a => a -> AssocList a b -> (AssocList a b, AssocList a b)
- breakPartition :: Eq a => a -> AssocList a b -> (AssocList a b, [b], AssocList a b)
- (!) :: Eq a => AssocList a b -> a -> b
- (!?) :: Eq a => AssocList a b -> a -> Maybe b
Related modules
Some other modules that are a lot like this one:
- Data.AssocList.List.Equivalence - Functions on
AssocList
s that involveEquivalence
s on the keys - Data.AssocList.List.Predicate - Functions on
AssocList
s that involvePredicate
s on the keys
Lookup
lookupFirst :: Eq a => a -> AssocList a b -> Maybe b Source #
Obtain the first value associated with a particular key, if such a mapping is present.
>>>
lookupFirst 'B' [('A',1), ('B',2), ('B',3), ('C',4)]
Just 2
The result is Nothing
if the key is not mapped by any entry in
the list.
>>>
lookupFirst 'D' [('A',1), ('B',2), ('B',3), ('C',4)]
Nothing
This function is the same as !?
but for the order of its
arguments.
lookupAll :: Eq a => a -> AssocList a b -> [b] Source #
Obtain all values associated with a particular key, in the order in which the mappings appear in the list.
>>>
lookupAll 'B' [('A',1), ('B',2), ('B',3), ('C',4), ('B',3)]
[2,3,3]
Removal
removeFirst :: Eq a => a -> AssocList a b -> AssocList a b Source #
Produce a modified version of the association list in which the first occurrence of a particular key has been removed.
>>>
removeFirst 'B' [('A',1), ('B',2), ('B',3), ('C',4)]
[('A',1),('B',3),('C',4)]
If the key is not present in the mapping, then the original list is returned.
>>>
removeFirst 'C' [('A',1), ('B',2), ('B',3)]
[('A',1),('B',2),('B',3)]
removeAll :: Eq a => a -> AssocList a b -> AssocList a b Source #
Produce a modified version of the association list in which all occurrences of a particular key have been removed.
>>>
removeAll 'B' [('A',1), ('B',2), ('B',3), ('C',4)]
[('A',1),('C',4)]
If the key is not present in the mapping, then the original list is returned.
>>>
removeAll 'C' [('A',1), ('B',2), ('B',3)]
[('A',1),('B',2),('B',3)]
Mapping
The "map" functions modify values while preserving the structure of the assocative list. The resulting list has the same size and order as the original.
mapFirst :: Eq a => a -> (b -> b) -> AssocList a b -> AssocList a b Source #
At the position where a particular key first appears in the list, apply a function to the corresponding value.
>>>
mapFirst 'B' negate [('A', 1), ('B', 4), ('C', 2), ('B', 6)]
[('A',1),('B',-4),('C',2),('B',6)]
If the key does not appear in the list, then the original list is returned without modification.
>>>
mapFirst 'D' negate [('A', 1), ('B', 4), ('C', 2), ('B', 6)]
[('A',1),('B',4),('C',2),('B',6)]
mapAll :: Eq a => a -> (b -> b) -> AssocList a b -> AssocList a b Source #
At each position where a particular key appears in the list, apply a function to the corresponding value.
>>>
mapAll 'B' negate [('A', 1), ('B', 4), ('C', 2), ('B', 6)]
[('A',1),('B',-4),('C',2),('B',-6)]
If the key does not appear in the list, then the original list is returned without modification.
>>>
mapAll 'D' negate [('A', 1), ('B', 4), ('C', 2), ('B', 6)]
[('A',1),('B',4),('C',2),('B',6)]
Alteration
The "alter" functions provide an all-in-one way to do insertion, modification, and removal.
Insert, modify, or delete a single value corresponding to the first place where a particular key appears in the list.
Modification - If the key first appears in the list with a
corresponding value of x
, and f x =
, then that value
Just
x'x
will be replaced with x'
in the resulting list.
>>>
alterFirst 'B' (fmap negate) [('A', 1), ('B', 4), ('C', 2), ('B', 6)]
[('A',1),('B',-4),('C',2),('B',6)]
Removal - If the key first appears in the list with a corresponding
value of x
, and f x =
, then that mapping will be removed
in the resulting list.Nothing
>>>
alterFirst 'B' (\_ -> Nothing) [('A', 1), ('B', 4), ('C', 2), ('B', 6)]
[('A',1),('C',2),('B',6)]
Insertion - If the key does not appear in the list and
f
, then Nothing
= Just
xx
be appended to the end of the list.
>>>
alterFirst 'D' (\_ -> Just 0) [('A', 1), ('B', 4), ('C', 2), ('B', 6)]
[('A',1),('B',4),('C',2),('B',6),('D',0)]
Modify the list of values that correspond to a particular key.
Mapping - For example, to negate all values of
:B
>>>
alterAll 'B' (map negate) [('A', 1), ('B', 4), ('B', 5), ('C', 2)]
[('A',1),('B',-4),('B',-5),('C',2)]
Length alteration - For example, to limit the number of occurrences
of B
to at most two:
>>>
alterAll 'B' (take 2) [('A', 1), ('B', 4), ('B', 5), ('B', 6), ('C', 2)]
[('A',1),('B',4),('B',5),('C',2)]
Removal - If f
returns an empty list, then the key will be removed
from the list entirely.
>>>
alterAll 'B' (\_ -> []) [('A', 1), ('B', 4), ('B', 5), ('C', 2)]
[('A',1),('C',2)]
Reordering - The key may appear in multiple noncontiguous positions in the input list, but all of the new mappings for the key in the output will be in one contiguous sequence starting at the position where the key first appears in the input list.
>>>
alterAll 'B' (map negate) [('A', 1), ('B', 4), ('C', 2), ('B', 5), ('D', 3), ('B', 6)]
[('A',1),('B',-4),('B',-5),('B',-6),('C',2),('D',3)]
Insertion - If the key does not appear in the list, then any result
from f
will be appended to the end of the list.
>>>
alterAll 'D' (\_ -> [7, 8]) [('A', 1), ('B', 4), ('C', 2), ('B', 6)]
[('A',1),('B',4),('C',2),('B',6),('D',7),('D',8)]
Grouping
break :: Eq a => a -> AssocList a b -> (AssocList a b, AssocList a b) Source #
Produces a tuple of two results:
- The longest prefix of the association list that does not contain a particular key
- The remainder of the list
>>>
break 'B' [('A',1), ('B',2), ('B',3), ('C',4)]
([('A',1)],[('B',2),('B',3),('C',4)])
If the first mapping in the list contains the given key, then the first part of the resulting tuple is empty, and the second part of the result is the entire list.
>>>
break 'A' [('A',1), ('B',2), ('B',3), ('C',4)]
([],[('A',1),('B',2),('B',3),('C',4)])
If the key is not present in the list, then the first part of the resulting tuple is the entire list, and the second part of the result is empty.
>>>
break 'D' [('A',1), ('B',2), ('B',3), ('C',4)]
([('A',1),('B',2),('B',3),('C',4)],[])
breakPartition :: Eq a => a -> AssocList a b -> (AssocList a b, [b], AssocList a b) Source #
break
on a key, then partition
the remainder.
separates breakPartition
key ll
into three parts:
- The key-value pairs for which the key is not
key
that occur in the list before the first occurrence ofkey
(fst (
)break
key l) - All values associated with
key
(
)lookupAll
key l - The key-value pairs for which the key is not
key
that occur in the list after the first occurrence ofkey
(
)removeAll
key (snd (break
key l))
>>>
breakPartition 'B' [('A',1),('B',2),('C',3),('B',4)]
([('A',1)],[2,4],[('C',3)])
If the key is not present in the list, then the first part of the result is the entire list, and the other parts are empty.
>>>
breakPartition 'D' [('A',1),('B',2),('C',3),('B',4)]
([('A',1),('B',2),('C',3),('B',4)],[],[])
Operators
(!) :: Eq a => AssocList a b -> a -> b Source #
Obtain the first value associated with a particular key.
>>>
[('A',1), ('B',2), ('B',3), ('C',4)] ! 'B'
2
This function is to be used only when the key must be known to
be present in the mapping. If x
is not mapped by any entry in
AssocList
l
, then l
throws !
xMissingAssocListKey
.
The exclamation mark is intended as a reminder of this danger.
>>>
[('A', 1), ('B', 2), ('B', 3), ('C', 4)] ! 'D'
*** Exception: MissingAssocListKey
There is a related operator called !?
which maps the
missing-key condition to Nothing
instead.
(!?) :: Eq a => AssocList a b -> a -> Maybe b Source #
Obtain the first value associated with a particular key, if such a mapping is present.
>>>
[('A',1), ('B',2), ('B',3), ('C',4)] !? 'B'
Just 2
The result is Nothing
if the key is not mapped by any entry in
the list.
>>>
[('A',1), ('B',2), ('B',3), ('C',4)] !? 'D'
Nothing
This function is the same as lookupFirst
but for the order of
its arguments.