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. bytestringLE :: ByteString -> Pair NatRepr BV

    bv-sized Data.BitVector.Sized

    Construct a BV from a little-endian bytestring.

    >>> case bytestringLE (BS.pack [0, 1, 1]) of p -> (fstPair p, sndPair p)
    (24,BV 65792)
    

  2. package bytestring-strict-builder

    An efficient strict bytestring builder According to the competition benchmarks, this library provides on average the fastest builder of strict bytestrings. . Practical benchmarks have proven it to be highly performant as well. The encoders from the "postgresql-binary" library have shown a stable performance improvement by factors of up to 10 after the migration from the standard builder to "bytestring-strict-builder".

  3. bytestringVectorTypeMap :: TypeMap

    nvim-hs Neovim.API.TH

    No documentation available.

  4. byteStringWhile :: (Word8 -> Bool) -> Read ByteString

    ptr Ptr.Read

    No documentation available.

  5. package bytestring-conversion

    Type-classes to convert values to and from ByteString. Defines the type-classes ToByteString and FromByteString to convert values to and from textual ByteString encodings.

  6. package bytestring-encodings

    checks to see if a given bytestring adheres to a certain encoding This module provides a family of functions, isX, of type ByteString -> Bool, which return True if the input ByteString adheres to a certain encoding X, and False otherwise.

  7. package bytestring-to-vector

    Convert between ByteString and Vector.Storable without copying This library allows conversion between the types from Data.ByteString (package bytestring) and Data.Vector.Storable (package vector) without copying the underlying data. This is useful, for example, when ByteString IO produces or consumes vectors of numbers in native byte order. The conversion relies on the fact that ByteString and Vector use their respective ForeignPtrs in compatible ways. This library is a fork of the spool package written by Keegan McAllister.

  8. byteStringToVector :: Storable a => ByteString -> Vector a

    bytestring-to-vector Data.Vector.Storable.ByteString

    Convert a ByteString to a Vector. This function can produce Vectors which do not obey architectural alignment requirements. On x86 this should not be an issue.

  9. package bytestring-tree-builder

    A very efficient ByteString builder implementation based on the binary tree According to the benchmarks this builder implementation beats all the alternatives. It is especially well-suited for generating strict bytestrings, beating the standard builder by at least the factor of 4.

  10. byteStringOf :: Parser s a -> Parser s ByteString

    djot Djot.Parse

    Returns bytestring consumed by parse.

Page 23 of many | Previous | Next