Hoogle Search
Within LTS Haskell 24.36 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
fromAscPairList :: (Ord a, Ord b) => [(a, b)] -> Bimap a bbimap Data.Bimap O(n). Build a bimap from a list of pairs, where both the fst and snd halves of the list are in strictly ascending order. This precondition is checked; an invalid list will cause an error. Version: 0.2.3
fromAscPairListUnchecked :: (Ord a, Ord b) => [(a, b)] -> Bimap a bbimap Data.Bimap O(n). Build a bimap from a list of pairs, where both the fst and snd halves of the list are in strictly ascending order. This precondition is not checked; an invalid list will produce a malformed bimap. Version: 0.2.3
fromList :: (Ord a, Ord b) => [(a, b)] -> Bimap a bbimap Data.Bimap O(n*log n). Build a map from a list of pairs. If there are any overlapping pairs in the list, the later ones will override the earlier ones. Version: 0.2
toAscList :: Bimap a b -> [(a, b)]bimap Data.Bimap O(n). Convert to a list of associated pairs, with the left-hand values in ascending order. Since pair ordering is lexical, the pairs will also be in ascending order. Version: 0.2
toAscListR :: Bimap a b -> [(b, a)]bimap Data.Bimap O(n). Convert to a list of associated pairs, with the right-hand values first in the pair and in ascending order. Since pair ordering is lexical, the pairs will also be in ascending order. Version: 0.2
toList :: Bimap a b -> [(a, b)]bimap Data.Bimap O(n). Convert to a list of associated pairs. Version: 0.2
cast'List :: Val a => Value -> Maybe [a]bson Data.Bson No documentation available.
valList :: Val a => [a] -> Valuebson Data.Bson No documentation available.
type
ColorList = [WeightedColor]graphviz Data.GraphViz.Attributes.Colors The sum of the optional weightings must sum to at most 1.
toColorList :: [Color] -> ColorListgraphviz Data.GraphViz.Attributes.Colors For a list of colors without weightings.