Lines Matching refs:ArrayString
12 - impl BorrowMut for ArrayString by @msrd0
18 - Add `.as_mut_str()` to `ArrayString` by @clarfonthey
19 - Add `remaining_capacity` to `ArrayString` by @bhgomes
50 - The ``ArrayVec::new`` and ``ArrayString::new`` constructors are properly
66 For arraystring the syntax is `ArrayString<CAP>`.
69 of the `ArrayVec` or `ArrayString` structs for the same capacity may grow
83 - Add `is_empty` methods for ArrayVec and ArrayString by @nicbn
96 - Add method `ArrayString::len` (now available directly, not just through deref to str).
97 - Use raw pointers instead of `&mut [u8]` for encoding chars into `ArrayString`
115 `ArrayString`
119 - Add `FromStr` impl for `ArrayString` by @despawnerer
153 - `ArrayString` updated to not use uninitialized memory, it instead zeros its
191 - Add methods to `ArrayString` by @DenialAdams:
216 - Add `Default` impl to `ArrayString` by @tbu-
226 - Similar changes to `ArrayString`'s push methods.
232 - `ArrayString` implements `PartialOrd, Ord` by @tbu-
239 `ArrayString`.
248 - Add constructor `ArrayString::from_byte_string`
252 - Simplify and speed up `ArrayString`’s `.push(char)`-
269 - Added methods `.is_full()` to `ArrayVec` and `ArrayString`.
275 to `ArrayString`.
281 - Implement `Clone::clone_from` for ArrayVec and ArrayString
285 - Add `ArrayString::from(&str)`
289 - Added `DerefMut` impl for `ArrayString`.
295 - Added ArrayString, a fixed capacity analogy of String