Hoogle Search

Within LTS Haskell 24.19 (ghc-9.10.3)

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

  1. deriveXPubKey :: Ctx -> XPrvKey -> XPubKey

    haskoin-core Haskoin.Crypto.Keys.Extended

    Derive an extended public key from an extended private key. This function will preserve the depth, parent, index and chaincode fields of the extended private keys.

  2. deriveGeneric :: Name -> Q [Dec]

    linear-generics Generics.Linear.TH

    Given the name of a type or data family constructor, derive a Generic instance.

  3. deriveGeneric1 :: Name -> Q [Dec]

    linear-generics Generics.Linear.TH

    Given the name of a type or data family constructor, derive a Generic1 instance.

  4. deriveGenericAnd1 :: Name -> Q [Dec]

    linear-generics Generics.Linear.TH

    Given the name of a type or data family constructor, derive a Generic instance and a Generic1 instance.

  5. derivedVar :: TargetSrc -> Var -> Bool

    liquidhaskell-boot Language.Haskell.Liquid.Constraint.Template

    No documentation available.

  6. derivedVars :: Config -> MGIModGuts -> [Var]

    liquidhaskell-boot Language.Haskell.Liquid.GHC.Interface

    No documentation available.

  7. derivePubKey :: Ctx -> SecKey -> PubKey

    secp256k1-haskell Crypto.Secp256k1

    No documentation available.

  8. derivePubKey :: Ctx -> SecKey -> PubKey

    secp256k1-haskell Crypto.Secp256k1.Internal.Base

    No documentation available.

  9. deriveSerialize :: Q [Dec] -> Q [Dec]

    streamly-core Streamly.Data.MutByteArray

    Given an Serialize instance declaration splice without the methods (e.g. [d|instance Serialize a => Serialize (Maybe a)|]), generate an instance declaration including all the type class method implementations.

    >>> deriveSerialize = deriveSerializeWith id
    
    Usage:
    $(deriveSerialize
    [d|instance Serialize a => Serialize (Maybe a)|])
    

  10. deriveSerializeWith :: (SerializeConfig -> SerializeConfig) -> Q [Dec] -> Q [Dec]

    streamly-core Streamly.Data.MutByteArray

    deriveSerializeWith config-modifier instance-dec generates a template Haskell splice consisting of a declaration of a Serialize instance. instance-dec is a template Haskell declaration splice consisting of a standard Haskell instance declaration without the type class methods (e.g. [d|instance Serialize a => Serialize (Maybe a)|]). The type class methods for the given instance are generated according to the supplied config-modifier parameter. See SerializeConfig for default configuration settings. Usage:

    $(deriveSerializeWith
    ( inlineSerializeAt (Just NoInline)
    . inlineDeserializeAt (Just NoInline)
    )
    [d|instance Serialize a => Serialize (Maybe a)|])
    

Page 31 of many | Previous | Next