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.
bytestringLE :: ByteString -> Pair NatRepr BVbv-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)
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".
bytestringVectorTypeMap :: TypeMapnvim-hs Neovim.API.TH No documentation available.
byteStringWhile :: (Word8 -> Bool) -> Read ByteStringptr Ptr.Read No documentation available.
-
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.
-
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.
-
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.
byteStringToVector :: Storable a => ByteString -> Vector abytestring-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.
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.
byteStringOf :: Parser s a -> Parser s ByteStringdjot Djot.Parse Returns bytestring consumed by parse.