Hoogle Search

Within LTS Haskell 24.43 (ghc-9.10.3)

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

  1. SqlByteString :: ByteString -> SqlValue

    HDBC Database.HDBC

    No documentation available.

  2. SqlByteString :: ByteString -> SqlValue

    HDBC Database.HDBC.SqlValue

    No documentation available.

  3. SqlByteString :: ByteString -> SqlValue

    HDBC Database.HDBC.Statement

    No documentation available.

  4. SqlByteString :: ByteString -> SqlValue

    HDBC Database.HDBC.Types

    No documentation available.

  5. cloneFromByteString :: ByteString -> Vector Bit

    bitvec Data.Bit

    Clone a ByteString to a new unboxed vector of bits.

    >>> :set -XOverloadedStrings
    
    >>> cloneFromByteString "abc"
    [1,0,0,0,0,1,1,0,0,1,0,0,0,1,1,0,1,1,0,0,0,1,1,0]
    

  6. cloneToByteString :: Vector Bit -> ByteString

    bitvec Data.Bit

    Clone an unboxed vector of bits to a new ByteString. If the bits don't completely fill the bytes, the last character will be zero-padded.

    >>> :set -XOverloadedLists
    
    >>> cloneToByteString [1,0,0,0,0,1,1,0,0,1,0,0,0,1,1,0,1,1,0,0,0,1]
    "ab#"
    

  7. cloneFromByteString :: ByteString -> Vector Bit

    bitvec Data.Bit.ThreadSafe

    Clone a ByteString to a new unboxed vector of bits.

    >>> :set -XOverloadedStrings
    
    >>> cloneFromByteString "abc"
    [1,0,0,0,0,1,1,0,0,1,0,0,0,1,1,0,1,1,0,0,0,1,1,0]
    

  8. cloneToByteString :: Vector Bit -> ByteString

    bitvec Data.Bit.ThreadSafe

    Clone an unboxed vector of bits to a new ByteString. If the bits don't completely fill the bytes, the last character will be zero-padded.

    >>> :set -XOverloadedLists
    
    >>> cloneToByteString [1,0,0,0,0,1,1,0,0,1,0,0,0,1,1,0,1,1,0,0,0,1]
    "ab#"
    

  9. shortByteString :: ShortByteString -> Builder

    bytebuild Data.Bytes.Builder

    Create a builder from a short bytestring. Implemented with bytes.

  10. runByteString :: forall (n :: Nat) . Nat n -> Builder n -> ByteString

    bytebuild Data.Bytes.Builder.Bounded

    Variant of run that puts the result in a pinned buffer and packs it up in a ByteString.

Page 59 of many | Previous | Next