Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

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

  1. showThreadId :: ThreadId -> Text

    co-log Colog.Message

    Shows a thread id in the following format: >> showThreadId $ Control.Concurrent.myThreadId "[ThreadId 4898] "

  2. data Erlang'dt_spread_tag

    codec-beam Codec.Beam.Bifs

    No documentation available.

  3. Erlang'dt_spread_tag :: Erlang'dt_spread_tag

    codec-beam Codec.Beam.Bifs

    No documentation available.

  4. data Erlang'read_timer

    codec-beam Codec.Beam.Bifs

    No documentation available.

  5. Erlang'read_timer :: Erlang'read_timer

    codec-beam Codec.Beam.Bifs

    No documentation available.

  6. runReaderP :: forall (m :: Type -> Type) r i o u a . Monad m => r -> Pipe i o u (ReaderT r m) a -> Pipe i o u m a

    conduino Data.Conduino.Lift

    Turn a pipe over ReaderT into a directly parameterized pipe. Instead of getting the parameter from the globally shared ReaderT environment, give it directly instead. It can be useful to "ignore" a globally shared environment and just give the r directly and immediately.

  7. boolReader :: (Eq a, Show a, FoldCase a, IsString a, IsString e, Monoid e) => a -> Either e Bool

    configuration-tools Configuration.Utils.CommandLine

    No documentation available.

  8. eitherReadP :: Text -> ReadP a -> Text -> Either Text a

    configuration-tools Configuration.Utils.CommandLine

    Create an either-reader from a ReadP parser.

  9. eitherReader :: (String -> Either String a) -> ReadM a

    configuration-tools Configuration.Utils.CommandLine

    Convert a function producing an Either into a reader. As an example, one can create a ReadM from an attoparsec Parser easily with

    import qualified Data.Attoparsec.Text as A
    import qualified Data.Text as T
    attoparsecReader :: A.Parser a -> ReadM a
    attoparsecReader p = eitherReader (A.parseOnly p . T.pack)
    

  10. jsonReader :: FromJSON a => ReadM a

    configuration-tools Configuration.Utils.CommandLine

    An option reader for a JSON value.

Page 754 of many | Previous | Next