Hoogle Search

Within LTS Haskell 24.18 (ghc-9.10.3)

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

  1. setVar :: forall a b s . Reifies s W => AddFunc a -> AddFunc b -> ZeroFunc a -> Lens' b a -> BVar s a -> BVar s b -> BVar s b

    backprop Numeric.Backprop.Internal

    setVar, but with explicit add and zero.

  2. collectVar :: (Foldable t, Functor t, Num a, Reifies s W) => t (BVar s a) -> BVar s (t a)

    backprop Numeric.Backprop.Num

    collectVar, but with Num constraints instead of Backprop constraints. Prior to v0.2.3, required a Num constraint on t a.

  3. constVar :: a -> BVar s a

    backprop Numeric.Backprop.Num

    Lift a value into a BVar representing a constant value. This value will not be considered an input, and its gradients will not be backpropagated.

  4. setVar :: (Num a, Num b, Reifies s W) => Lens' b a -> BVar s a -> BVar s b -> BVar s b

    backprop Numeric.Backprop.Num

    setVar, but with Num constraints instead of Backprop constraints.

  5. importVarNamed :: Text -> ImportSpec ()

    beam-migrate Database.Beam.Haskell.Syntax

    No documentation available.

  6. PartVariable :: String -> PartDesc

    butcher UI.Butcher.Monadic.Types

    No documentation available.

  7. getVar :: MonadCGI m => String -> m (Maybe String)

    cgi Network.CGI

    Get the value of a CGI environment variable. Example:

    remoteAddr <- getVar "REMOTE_ADDR"
    

  8. getVarWithDefault :: MonadCGI m => String -> String -> m String

    cgi Network.CGI

    No documentation available.

  9. getVars :: MonadCGI m => m [(String, String)]

    cgi Network.CGI

    Get all CGI environment variables and their values.

  10. modifyTVar :: MonadSTM stm => TVar stm a -> (a -> a) -> stm ()

    concurrency Control.Concurrent.Classy.STM.TVar

    Mutate the contents of a TVar. This is non-strict.

Page 43 of many | Previous | Next