Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

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

  1. oauthConsumerKey :: OAuth -> ByteString

    authenticate-oauth Web.Authenticate.OAuth

    Consumer key (You MUST specify)

  2. oauthConsumerSecret :: OAuth -> ByteString

    authenticate-oauth Web.Authenticate.OAuth

    Consumer Secret (You MUST specify)

  3. checksumLength :: Int

    bech32 Codec.Binary.Bech32.Internal

    The length of the checksum portion of an encoded string, in bytes.

  4. type Consume a = Coroutine () a

    bluefin-internal Bluefin.Internal

    No documentation available.

  5. consumeEach :: forall b (es :: Effects) r . (forall (e :: Effects) . () => Consume b e -> Eff (e :& es) r) -> Eff es b -> Eff es r

    bluefin-internal Bluefin.Internal

    A version of forEach specialized to Consume. Every time the Consume is used to await a b, feed it the one created by the handler.

  6. consumeStream :: forall a (es :: Effects) r . (forall (e :: Effects) . () => Consume a e -> Eff (e :& es) r) -> (forall (e :: Effects) . () => Stream a e -> Eff (e :& es) r) -> Eff es r

    bluefin-internal Bluefin.Internal

    No documentation available.

  7. streamConsume :: forall a (es :: Effects) r . (forall (e :: Effects) . () => Stream a e -> Eff (e :& es) r) -> (forall (e :: Effects) . () => Consume a e -> Eff (e :& es) r) -> Eff es r

    bluefin-internal Bluefin.Internal

    Argument-flipped version of consumeStream

  8. subsume1 :: forall (e2 :: Effects) (e1 :: Effects) . In e2 e1 -> In (e1 :& e2) e1

    bluefin-internal Bluefin.Internal

    No documentation available.

  9. subsume2 :: forall (e1 :: Effects) (e2 :: Effects) . In e1 e2 -> In (e1 :& e2) e2

    bluefin-internal Bluefin.Internal

    No documentation available.

  10. takeConsume :: forall (ea :: Effects) (es :: Effects) (eb :: Effects) a . (ea :> es, eb :> es) => Int -> Consume a ea -> Stream a eb -> Eff es ()

    bluefin-internal Bluefin.Internal

    runPureEff $ yieldToList $ yOut -> do
    consumeStream
    (c -> takeConsume 4 c yOut)
    (yIn -> inFoldable [1..10] yIn)
    ([1,2,3,4],())
    

Page 167 of many | Previous | Next