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.

  1. toList :: Bimap a b -> [(a, b)]

    bimap Data.Bimap

    O(n). Convert to a list of associated pairs. Version: 0.2

  2. cast'List :: Val a => Value -> Maybe [a]

    bson Data.Bson

    No documentation available.

  3. valList :: Val a => [a] -> Value

    bson Data.Bson

    No documentation available.

  4. type ColorList = [WeightedColor]

    graphviz Data.GraphViz.Attributes.Colors

    The sum of the optional weightings must sum to at most 1.

  5. toColorList :: [Color] -> ColorList

    graphviz Data.GraphViz.Attributes.Colors

    For a list of colors without weightings.

  6. newtype LayerList

    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, ....

  7. LayerListSep :: LayerListSep -> Attribute

    graphviz Data.GraphViz.Attributes.Complete

    Valid for: G; Default: LLSep ","; Notes: requires Graphviz >= 2.30.0

  8. newtype LayerListSep

    graphviz Data.GraphViz.Attributes.Complete

    No documentation available.

  9. newtype ZipList a

    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]}
    

  10. ZipList :: [a] -> ZipList a

    graphviz Data.GraphViz.Parsing

    No documentation available.

Page 101 of many | Previous | Next