Add ByteString::clear() method

This commit is contained in:
Nikolay Kim 2022-07-07 10:39:55 +06:00
parent 073ea6db29
commit 55c837a5f8
4 changed files with 23 additions and 2 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [0.1.16] (2022-07-07)
* Add ByteString::clear() method
## [0.1.15] (2022-06-20)
* Add Buf/BufMut impls

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-bytes"
version = "0.1.15"
version = "0.1.16"
license = "MIT"
authors = ["Nikolay Kim <fafhrd91@gmail.com>", "Carl Lerche <me@carllerche.com>"]
description = "Types and traits for working with bytes (bytes crate fork)"

View file

@ -140,6 +140,23 @@ impl ByteString {
self.0.trimdown()
}
/// Clears the buffer, removing all data.
///
/// # Examples
///
/// ```
/// use ntex_bytes::ByteString;
///
/// let mut a = ByteString::from("hello world");
/// a.clear();
///
/// assert!(a.is_empty());
/// ```
#[inline]
pub fn clear(&mut self) {
self.0.clear()
}
/// Creates a new `ByteString` from a Bytes.
///
/// # Safety