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.

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

  2. LayerListSep :: LayerListSep -> Attribute

    graphviz Data.GraphViz.Attributes.Complete

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

  3. newtype LayerListSep

    graphviz Data.GraphViz.Attributes.Complete

    No documentation available.

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

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

    graphviz Data.GraphViz.Parsing

    No documentation available.

  6. getZipList :: ZipList a -> [a]

    graphviz Data.GraphViz.Parsing

    No documentation available.

  7. parseList :: ParseDot a => Parse [a]

    graphviz Data.GraphViz.Parsing

    No documentation available.

  8. parseUnqtList :: ParseDot a => Parse [a]

    graphviz Data.GraphViz.Parsing

    No documentation available.

  9. tryParseList :: ParseDot a => Parse [a]

    graphviz Data.GraphViz.Parsing

    Try to parse a list of the specified type; returns an empty list if parsing fails.

  10. tryParseList' :: Parse [a] -> Parse [a]

    graphviz Data.GraphViz.Parsing

    Return an empty list if parsing a list fails.

Page 102 of many | Previous | Next