1
0
Fork 0
mirror of https://codeberg.org/icewind/bitbuffer.git synced 2026-06-03 16:44:06 +02:00

remove note after stream performance following optimizations

This commit is contained in:
Robin Appelman 2019-03-03 14:14:12 +01:00
commit be689d05a4

View file

@ -3,8 +3,6 @@
//! The main way of handling with the binary data is to first create a [`BitBuffer`] //! The main way of handling with the binary data is to first create a [`BitBuffer`]
//! ,wrap it into a [`BitStream`] and then read from the stream. //! ,wrap it into a [`BitStream`] and then read from the stream.
//! //!
//! If performance is critical, working directly on the BitBuffer can be faster.
//!
//! Once you have a BitStream, there are 2 different approaches of reading data //! Once you have a BitStream, there are 2 different approaches of reading data
//! //!
//! - read primitives, Strings and byte arrays, using [`read_bool`], [`read_int`], [`read_float`], [`read_byes`] and [`read_string`] //! - read primitives, Strings and byte arrays, using [`read_bool`], [`read_int`], [`read_float`], [`read_byes`] and [`read_string`]