|
Module Data/BinaryThis module is undocumented. This is a list of its definitions. copyAllBytes :: OutputStream -> InputStream -> <Proc> () Copy all available bytes from output stream to input stream. readBytes :: InputStream -> Integer -> <Proc> Maybe (Vector Byte) Reads bytes from the stream. The integer parameter is the maximum number of bytes. Returns Nothing if stream has finished or a vector of bytes read. readBytesM :: InputStream -> MVector Byte -> <Proc> Integer Reads bytes from the stream to a mutable vector. The maximum number of bytes read is the dimension of the vector. Returns the actual number of bytes read or -1, if the stream has finished. readRangeOfBytesM :: InputStream -> MVector Byte -> Integer -> Integer -> <Proc> Integer Reads a range of bytes from the stream to a mutable vector. The first integer is the offset the second integer is the maximum length of the range. Returns the actual number of bytes read or -1, if the stream has finished. writeBytes :: OutputStream -> Vector Byte -> <Proc> () Writes given vector of bytes to output stream. writeBytesM :: OutputStream -> MVector Byte -> <Proc> () writeRangeOfBytes :: OutputStream -> Vector Byte -> Integer -> Integer -> <Proc> () Writes a range of bytes from the vector to output stream. The first integer is the offset the second integer is the length of the range. writeRangeOfBytesM :: OutputStream -> MVector Byte -> Integer -> Integer -> <Proc> () |