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. listVarsWith :: [Expr] -> Expr -> [Expr]

    code-conjure Conjure.Engine

    O(n+m). Like lookupNames but returns a list of variables encoded as Exprs.

  2. listVars :: Typeable a => String -> a -> [Expr]

    code-conjure Conjure.Expr

    Generate an infinite list of variables based on a template and a given type. (cf. listVarsAsTypeOf)

    > putL 10 $ listVars "x" (undefined :: Int)
    [ x :: Int
    , y :: Int
    , z :: Int
    , x' :: Int
    , y' :: Int
    , z' :: Int
    , x'' :: Int
    , ...
    ]
    
    > putL 10 $ listVars "p" (undefined :: Bool)
    [ p :: Bool
    , q :: Bool
    , r :: Bool
    , p' :: Bool
    , q' :: Bool
    , r' :: Bool
    , p'' :: Bool
    , ...
    ]
    

  3. listVarsAsTypeOf :: String -> Expr -> [Expr]

    code-conjure Conjure.Expr

    Generate an infinite list of variables based on a template and the type of a given Expr. (cf. listVars)

    > let one = val (1::Int)
    > putL 10 $ "x" `listVarsAsTypeOf` one
    [ x :: Int
    , y :: Int
    , z :: Int
    , x' :: Int
    , ...
    ]
    
    > let false = val False
    > putL 10 $ "p" `listVarsAsTypeOf` false
    [ p :: Bool
    , q :: Bool
    , r :: Bool
    , p' :: Bool
    , ...
    ]
    

  4. listVarsWith :: [Expr] -> Expr -> [Expr]

    code-conjure Conjure.Expr

    O(n+m). Like lookupNames but returns a list of variables encoded as Exprs.

  5. GetVar :: Word32 -> TestSequenceEvents

    expiring-cache-map Caching.ExpiringCacheMap.Utils.TestSequence

    No documentation available.

  6. PutVar :: Word32 -> TestSequenceEvents

    expiring-cache-map Caching.ExpiringCacheMap.Utils.TestSequence

    No documentation available.

  7. ft_Face_GetVariantSelectors :: FT_Face -> IO (Ptr FT_UInt32)

    freetype2 FreeType.Core.Unicode

    No documentation available.

  8. ft_Face_GetVariantsOfChar :: FT_Face -> FT_ULong -> IO (Ptr FT_UInt32)

    freetype2 FreeType.Core.Unicode

    No documentation available.

  9. ghciOutVar :: Ghci -> TMVar String

    ghci4luatex System.Process.Ghci

    Current line on stdout

  10. menuitemPropertyGetVariant :: (HasCallStack, MonadIO m, IsMenuitem a) => a -> Text -> m (Maybe GVariant)

    gi-dbusmenu GI.Dbusmenu.Objects.Menuitem

    Look up a property on mi and return the value of it if it exits. NULL will be returned if the property doesn't exist.

Page 59 of many | Previous | Next