Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. class (IsList full, item ~ Item full, FoldableLL full item, Monoid full) => ListLike full item | full -> item

    ListLike Data.ListLike.Base

    The class implementing list-like functions. It is worth noting that types such as Map can be instances of ListLike. Due to their specific ways of operating, they may not behave in the expected way in some cases. For instance, cons may not increase the size of a map if the key you have given is already in the map; it will just replace the value already there. Implementators must define at least:

    • singleton
    • head
    • tail
    • null or genericLength

  2. type ListOps full = ListLike full Item full

    ListLike Data.ListLike.Base

    A version of ListLike with a single type parameter, the item type is obtained using the Item type function from IsList.

  3. class ListLike full item => ListLikeIO full item | full -> item

    ListLike Data.ListLike.IO

    An extension to ListLike for those data types that support I/O. These functions mirror those in System.IO for the most part. They also share the same names; see the comments in Data.ListLike for help importing them. Note that some types may not be capable of lazy reading or writing. Therefore, the usual semantics of System.IO functions regarding laziness may or may not be available from a particular implementation. Minimal complete definition:

    • hGetLine
    • hGetContents
    • hGet
    • hGetNonBlocking
    • hPutStr

  4. data ListMap (m :: Type -> Type) a

    ghc-lib-parser GHC.Data.TrieMap

    No documentation available.

  5. module Data.List2010

    No documentation available.

  6. Listen :: forall (a :: Type -> Type) a1 w . a a1 -> WriterH w a (w, a1)

    data-effects Data.Effect.Writer

    Obtains the accumulated value in the scope and returns it together as a pair.

  7. Listen :: forall (a :: Type -> Type) a1 w . a a1 -> WriterH w a (w, a1)

    data-effects-core Data.Effect

    Obtains the accumulated value in the scope and returns it together as a pair.

  8. type ListContains (n :: Nat) x (ts :: [Type]) = (SNatRep n, InList x ts ~ n, HVectIdx n ts ~ x)

    hvect Data.HVect

    No documentation available.

  9. ListExpression :: ValidationList -> ListOrRangeExpression

    xlsx Codec.Xlsx.Types.DataValidation

    a plain list of elements

  10. data ListOrRangeExpression

    xlsx Codec.Xlsx.Types.DataValidation

    No documentation available.

Page 13 of many | Previous | Next