Data.IntMap

Map type

data IntMap a

type Key

Operators

(!)

(\\)

Query

null

size

member

notMember

lookup

findWithDefault

Construction

empty

singleton

Insertion

insert

insertWith

insertWith'

insertWithKey

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

Traversal

Map

map

mapWithKey

mapAccum

mapAccumWithKey

mapAccumRWithKey

Folds

foldr

foldl

foldrWithKey

foldlWithKey

Strict folds

foldr'

foldl'

foldrWithKey'

foldlWithKey'

Legacy folds

fold

foldWithKey

Conversion

elems

keys

keysSet

assocs

Lists

toList

fromList

fromListWith

fromListWithKey

Ordered lists

toAscList

fromAscList

fromAscListWith

fromAscListWithKey

fromDistinctAscList

Filter

filter

filterWithKey

partition

partitionWithKey

mapMaybe

mapMaybeWithKey

mapEither

mapEitherWithKey

split

splitLookup

Submap

isSubmapOf

isSubmapOfBy

isProperSubmapOf

isProperSubmapOfBy

Min/Max

findMin

findMax

deleteMin

deleteMax

deleteFindMin

deleteFindMax

updateMin

updateMax

updateMinWithKey

updateMaxWithKey

minView

maxView

minViewWithKey

maxViewWithKey

Debugging

showTree

showTreeWith