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.
pattern
ShareSettings_ShareType_SHARETYPEUNSPECIFIED :: ShareSettings_ShareTypegogol-compute Gogol.Compute.Types Default value. This value is unused.
pattern
ShareSettings_ShareType_SPECIFICPROJECTS :: ShareSettings_ShareTypegogol-compute Gogol.Compute.Types Shared-reservation is open to specific projects
-
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!
NoShareInput :: a -> NoShareInput amegaparsec Text.Megaparsec.Stream No documentation available.
unNoShareInput :: NoShareInput a -> amegaparsec Text.Megaparsec.Stream No documentation available.
unShareInput :: ShareInput a -> amegaparsec Text.Megaparsec.Stream No documentation available.
CryptoError_SharedSecretSizeInvalid :: CryptoErrorcrypton Crypto.Error No documentation available.
getShared :: Params -> PrivateNumber -> PublicNumber -> SharedKeycrypton Crypto.PubKey.DH generate a shared key using our private number and the other party public number
getShared :: Curve -> PrivateNumber -> PublicPoint -> SharedKeycrypton Crypto.PubKey.ECC.DH Generating a shared key using our private number and the other party public point.
mkGenericSharedBundledLibName :: Platform -> CompilerId -> String -> StringCabal 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"