Hoogle Search

Within LTS Haskell 24.39 (ghc-9.10.3)

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

  1. identifierSet :: HasIdentifierSet s => Lens' s IdentifierSet

    clash-lib Clash.Netlist.Id

    No documentation available.

  2. identifierSetM :: IdentifierSetMonad m => (IdentifierSet -> IdentifierSet) -> m IdentifierSet

    clash-lib Clash.Netlist.Id

    No documentation available.

  3. identifierKey# :: Identifier -> ((Text, Bool), [Word])

    clash-lib Clash.Netlist.Types

    No documentation available.

  4. identifierSet :: HasIdentifierSet s => Lens' s IdentifierSet

    clash-lib Clash.Netlist.Types

    No documentation available.

  5. identifierSetM :: IdentifierSetMonad m => (IdentifierSet -> IdentifierSet) -> m IdentifierSet

    clash-lib Clash.Netlist.Types

    No documentation available.

  6. idToInPort :: Id -> NetlistMonad (Maybe (Identifier, HWType))

    clash-lib Clash.Netlist.Util

    Same as idToPort, but * Throws an error if the port is a composite type with a BiSignalIn

  7. idToOutPort :: Id -> NetlistMonad (Maybe (Identifier, HWType))

    clash-lib Clash.Netlist.Util

    Same as idToPort, but: * Throws an error if port is of type BiSignalIn

  8. idToPort :: Id -> NetlistMonad (Maybe (Identifier, HWType))

    clash-lib Clash.Netlist.Util

    No documentation available.

  9. id' :: Expr -> Expr

    code-conjure Conjure.Engine

    Constructs an application of id as an Expr. Only works for Int, Bool, Char, String, [Int], [Bool].

    > id' yy
    id yy :: Int
    
    > id' one
    id 1 :: Int
    
    > evl (id' one) :: Int
    1
    
    > id' pp
    id p :: Bool
    
    > id' false
    id' False :: Bool
    
    > evl (id' true) :: Bool
    True :: Bool
    

  10. idBool :: Expr

    code-conjure Conjure.Engine

    The function id encoded as an Expr. (cf. id')

Page 313 of many | Previous | Next