RIO.Map

Map type

data Map k a

Operators

(\\)

Query

null

size

member

notMember

lookup

findWithDefault

lookupLT

lookupGT

lookupLE

lookupGE

Construction

empty

singleton

Insertion

insert

insertWith

insertWithKey

insertLookupWithKey

Delete/Update

delete

adjust

adjustWithKey

update

updateWithKey

updateLookupWithKey

alter

Combine

Union

union

unionWith

unionWithKey

unions

unionsWith

Difference

difference

differenceWith

differenceWithKey

Intersection

intersection

intersectionWith

intersectionWithKey

General combining functions

Deprecated general combining function

mergeWithKey

Traversal

Map

map

mapWithKey

traverseWithKey

mapAccum

mapAccumWithKey

mapAccumRWithKey

mapKeys

mapKeysWith

Folds

foldr

foldl

foldrWithKey

foldlWithKey

foldMapWithKey

Strict folds

foldr'

foldl'

foldrWithKey'

foldlWithKey'

Conversion

elems

keys

assocs

keysSet

fromSet

Lists

toList

fromList

fromListWith

fromListWithKey

Filter

filter

filterWithKey

partition

partitionWithKey

mapMaybe

mapMaybeWithKey

mapEither

mapEitherWithKey

split

splitLookup

splitRoot

Submap

isSubmapOf

isSubmapOfBy

isProperSubmapOf

isProperSubmapOfBy

Indexed

lookupIndex

elemAt

deleteAt

Min/Max

deleteMin

deleteMax

updateMin

updateMax

updateMinWithKey

updateMaxWithKey

minView

maxView

minViewWithKey

maxViewWithKey

Debugging

showTree

showTreeWith

valid