Hoogle Search

Within LTS Haskell 24.36 (ghc-9.10.3)

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

  1. forkLneBody :: FCode a -> FCode a

    ghc-lib GHC.StgToCmm.Monad

    No documentation available.

  2. foreignRegister :: StgRet -> JStgExpr

    ghc-lib GHC.StgToJS.Regs

    Given a register, return the JS syntax object representing that register

  3. forkM :: SDoc -> IfL a -> IfL a

    ghc-lib GHC.Tc.Utils.Monad

    Run thing_inside in an interleaved thread. It shares everything with the parent thread, so this is DANGEROUS. It throws an error if the computation fails It's used for lazily type-checking interface signatures, which is pretty benign. See Note [Masking exceptions in forkM]

  4. forElemId :: JSString -> Perch -> Perch

    ghcjs-perch GHCJS.Perch

    Apply action to perch with given identifier.

  5. forElemId_ :: JSString -> Perch -> IO ()

    ghcjs-perch GHCJS.Perch

    IO version of forElemId_.

  6. forElems :: JSString -> Perch -> Perch

    ghcjs-perch GHCJS.Perch

    JQuery-like DOM manipulation. It applies the Perch DOM manipulation for each found element using querySelectorAll function.

  7. forElems_ :: JSString -> Perch -> IO ()

    ghcjs-perch GHCJS.Perch

    Like forElems, but works in IO monad. Example:

    import GHCJS.Foreign.Callback (asyncCallback1)
    
    main = do
    body <- getBody
    makeRed <- asyncCallback1 (\ _ -> do
    forElems_ ".changeable" $
    this ! style "color:red")
    (flip build) body . div $ do
    div ! atr "class" "changeable" $ "Changeable"
    div "Static"
    div ! atr "class" "changeable" $ "Changeable"
    addEvent this Click makeRed
    

  8. form :: ToElem a => a -> Perch

    ghcjs-perch GHCJS.Perch

    No documentation available.

  9. forkEventForkee :: ForkEvent -> !Value

    github-types GitHub.Types.Events

    No documentation available.

  10. formURL :: forall (s :: [Symbol]) proxy . KnownScopes s => OAuthClient -> proxy s -> Text

    gogol Gogol.Auth

    Given an OAuthClient and a list of scopes to authorize, construct a URL that can be used to obtain the OAuthCode. See: Forming the URL.

Page 212 of many | Previous | Next