Hoogle Search

Within LTS Haskell 24.3 (ghc-9.10.2)

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

  1. postMultipart :: forall (m :: Type -> Type) . MonadIO m => ByteString -> MultipartParams -> RequestBuilder m ()

    snap-core Snap.Test

    Builds an HTTP "POST" request with the given form parameters, using the "form-data/multipart" MIME type. Example:

    ghci> :set -XOverloadedStrings
    ghci> buildRequest $ postMultipart "/foo/bar" [("param0", FormData ["baz", "quux"])]
    POST /foo/bar HTTP/1.1
    content-type: multipart/form-data; boundary=snap-boundary-572334111ec0c05ad4812481e8585dfa
    content-length: 406
    host: localhost
    
    sn="localhost" c=127.0.0.1:60000 s=127.0.0.1:8080 ctx=/ clen=406
    

  2. lastM :: forall (v :: Type -> Type) (n :: Natural) a m . (Vector v a, Monad m) => Vector v (n + 1) a -> m a

    vector-sized Data.Vector.Generic.Sized

    O(1) Yield the last element of a non-empty vector in a monad. See the documentation for indexM for an explanation of why this is useful.

  3. lastM :: forall (n :: Natural) a m . (Prim a, Monad m) => Vector (n + 1) a -> m a

    vector-sized Data.Vector.Primitive.Sized

    O(1) Yield the last element of a non-empty vector in a monad. See the documentation for indexM for an explanation of why this is useful.

  4. lastM :: forall (n :: Natural) a m . Monad m => Vector (n + 1) a -> m a

    vector-sized Data.Vector.Sized

    O(1) Yield the last element of a non-empty vector in a monad. See the documentation for indexM for an explanation of why this is useful.

  5. lastM :: forall (n :: Natural) a m . (Storable a, Monad m) => Vector (n + 1) a -> m a

    vector-sized Data.Vector.Storable.Sized

    O(1) Yield the last element of a non-empty vector in a monad. See the documentation for indexM for an explanation of why this is useful.

  6. lastM :: forall (n :: Natural) a m . (Unbox a, Monad m) => Vector (n + 1) a -> m a

    vector-sized Data.Vector.Unboxed.Sized

    O(1) Yield the last element of a non-empty vector in a monad. See the documentation for indexM for an explanation of why this is useful.

  7. eLastModified :: Entry -> !Integer

    zip-archive Codec.Archive.Zip

    Modification time (seconds since unix epoch)

  8. anyOrderedListMarker :: forall s (m :: Type -> Type) . (Stream s m Char, UpdateSourcePos s Char) => ParsecT s ParserState m ListAttributes

    pandoc Text.Pandoc.Parsing

    Parses an ordered list marker and returns list attributes.

  9. orderedListMarker :: forall s (m :: Type -> Type) . (Stream s m Char, UpdateSourcePos s Char) => ListNumberStyle -> ListNumberDelim -> ParsecT s ParserState m Int

    pandoc Text.Pandoc.Parsing

    Parses an ordered list marker with a given style and delimiter, returns number.

  10. orderedListMarkers :: (Int, ListNumberStyle, ListNumberDelim) -> [Text]

    pandoc Text.Pandoc.Shared

    Generate infinite lazy list of markers for an ordered list, depending on list attributes.

Page 53 of many | Previous | Next