Hoogle Search
Within LTS Haskell 24.6 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
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.
-
graphviz Data.GraphViz.Attributes.Complete A list of layer names. The names should all be unique LRName values, and when printed will use an arbitrary character from defLayerSep. The values in the list are implicitly numbered 1, 2, ....
LayerListSep :: LayerListSep -> Attributegraphviz Data.GraphViz.Attributes.Complete Valid for: G; Default: LLSep ","; Notes: requires Graphviz >= 2.30.0
-
graphviz Data.GraphViz.Attributes.Complete No documentation available.
-
graphviz Data.GraphViz.Parsing Lists, but with an Applicative functor based on zipping.
Examples
In contrast to the Applicative for List:>>> (+) <$> [1, 2, 3] <*> [4, 5, 6] [5,6,7,6,7,8,7,8,9]
The Applicative instance of ZipList applies the operation by pairing up the elements, analogous to zipWithN>>> (+) <$> ZipList [1, 2, 3] <*> ZipList [4, 5, 6] ZipList {getZipList = [5,7,9]}
>>> (,,,) <$> ZipList [1, 2] <*> ZipList [3, 4] <*> ZipList [5, 6] <*> ZipList [7, 8] ZipList {getZipList = [(1,3,5,7),(2,4,6,8)]}
>>> ZipList [(+1), (^2), (/ 2)] <*> ZipList [5, 5, 5] ZipList {getZipList = [6.0,25.0,2.5]}
-
graphviz Data.GraphViz.Parsing No documentation available.