Hoogle Search

Within LTS Haskell 24.10 (ghc-9.10.2)

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

  1. pattern ShareSettings_ShareType_SHARETYPEUNSPECIFIED :: ShareSettings_ShareType

    gogol-compute Gogol.Compute.Types

    Default value. This value is unused.

  2. pattern ShareSettings_ShareType_SPECIFICPROJECTS :: ShareSettings_ShareType

    gogol-compute Gogol.Compute.Types

    Shared-reservation is open to specific projects

  3. newtype NoShareInput a

    megaparsec Text.Megaparsec.Stream

    This wrapper selects the no-input-sharing Stream implementation for Text (Text) and ByteString (ByteString). This means that our parsers will create independent copies rather than using slices of the input. See also the documentation of copy. More importantly, any parser output will be independent of the input, and holding on to parts of the output will never prevent the input from being garbage collected. For maximum performance you might consider using ShareInput instead, but beware of its pitfalls!

  4. NoShareInput :: a -> NoShareInput a

    megaparsec Text.Megaparsec.Stream

    No documentation available.

  5. unNoShareInput :: NoShareInput a -> a

    megaparsec Text.Megaparsec.Stream

    No documentation available.

  6. unShareInput :: ShareInput a -> a

    megaparsec Text.Megaparsec.Stream

    No documentation available.

  7. CryptoError_SharedSecretSizeInvalid :: CryptoError

    crypton Crypto.Error

    No documentation available.

  8. getShared :: Params -> PrivateNumber -> PublicNumber -> SharedKey

    crypton Crypto.PubKey.DH

    generate a shared key using our private number and the other party public number

  9. getShared :: Curve -> PrivateNumber -> PublicPoint -> SharedKey

    crypton Crypto.PubKey.ECC.DH

    Generating a shared key using our private number and the other party public point.

  10. mkGenericSharedBundledLibName :: Platform -> CompilerId -> String -> String

    Cabal Distribution.Simple.BuildPaths

    Create a library name for a bundled shared library from a given name. This matches the naming convention for shared libraries as implemented in GHC's packageHsLibs function in the Packages module. If the given name is prefixed with HS, then this prepends lib and appends the compiler flavour/version and shared library extension e.g.: "HSrts-1.0" -> "libHSrts-1.0-ghc8.7.20190109.so" Otherwise the given name should be prefixed with C, then this strips the C, prepends lib and appends the shared library extension e.g.: Cffi -> "libffi.so"

Page 23 of many | Previous | Next