loc-0.1.4.1: Line and column positions and ranges in text files
Safe HaskellSafe-Inferred
LanguageHaskell2010

Data.Loc.Internal.Map

Synopsis

Documentation

module Data.Map

below :: Ord k => k -> Map k a -> Map k a Source #

below k m is the subset of Map m whose keys are less than k.

above :: Ord k => k -> Map k a -> Map k a Source #

below k m is the subset of Map m whose keys are greater than k.

belowInclusive :: Ord k => k -> Map k a -> Map k a Source #

belowInclusive k m is the subset of Map m whose keys are less than or equal to k.

aboveInclusive :: Ord k => k -> Map k a -> Map k a Source #

aboveInclusive k m is the subset of Map m whose keys are greater than or equal to k.