Hoogle Search

Within LTS Haskell 24.46 (ghc-9.10.3)

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

  1. setSourceColumn :: SourcePos -> Column -> SourcePos

    pandoc Text.Pandoc.Parsing

    Set the column number of a source position.

  2. setSourceLine :: SourcePos -> Line -> SourcePos

    pandoc Text.Pandoc.Parsing

    Set the line number of a source position.

  3. setSourceName :: SourcePos -> SourceName -> SourcePos

    pandoc Text.Pandoc.Parsing

    Set the name of the source.

  4. setState :: forall (m :: Type -> Type) u s . Monad m => u -> ParsecT s u m ()

    pandoc Text.Pandoc.Parsing

    An alias for putState for backwards compatibility.

  5. setTranslations :: PandocMonad m => Lang -> m ()

    pandoc Text.Pandoc.Translations

    Select the language to use with translateTerm. Note that this does not read a translation file; that is only done the first time translateTerm is used.

  6. setField :: ToContext a b => Text -> b -> Context a -> Context a

    pandoc Text.Pandoc.Writers.Shared

    Set a field of a template context. If the field already has a value, convert it into a list with the new value appended to the old value(s). This is a utility function to be used in preparing template contexts.

  7. setupTranslations :: PandocMonad m => Meta -> m ()

    pandoc Text.Pandoc.Writers.Shared

    Set translations based on the lang in metadata.

  8. setClientEncoding :: Connection -> ByteString -> IO Bool

    postgresql-libpq Database.PostgreSQL.LibPQ

    Sets the client encoding.

  9. setErrorVerbosity :: Connection -> Verbosity -> IO Verbosity

    postgresql-libpq Database.PostgreSQL.LibPQ

    Determines the verbosity of messages returned by errorMessage and resultErrorMessage. setErrorVerbosity sets the verbosity mode, returning the connection's previous setting. In ErrorsTerse mode, returned messages include severity, primary text, and position only; this will normally fit on a single line. The default mode produces messages that include the above plus any detail, hint, or context fields (these might span multiple lines). The ErrorsVerbose mode includes all available fields. Changing the verbosity does not affect the messages available from already-existing Result objects, only subsequently-created ones.

  10. setSingleRowMode :: Connection -> IO Bool

    postgresql-libpq Database.PostgreSQL.LibPQ

    Select single-row mode for the currently-executing query. This function can only be called immediately after PQsendQuery or one of its sibling functions, before any other operation on the connection such as PQconsumeInput or PQgetResult. If called at the correct time, the function activates single-row mode for the current query and returns 1. Otherwise the mode stays unchanged and the function returns 0. In any case, the mode reverts to normal after completion of the current query.

Page 313 of many | Previous | Next