spinoso_string/iter.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
use alloc::vec;
use alloc::vec::Vec;
use core::iter::FusedIterator;
use core::slice;
/// Immutable [`String`] byte slice iterator.
///
/// This struct is created by the [`iter`] method on a Spinoso [`String`]. See
/// its documentation for more.
///
/// # Examples
///
/// ```
/// # use spinoso_string::String;
/// let s = String::utf8(b"Artichoke Ruby".to_vec());
///
/// let mut checksum: u32 = 0;
/// for &byte in s.iter() {
/// checksum += byte as u32;
/// }
/// assert_eq!(checksum, 1372);
/// ```
///
/// [`String`]: crate::String
/// [`iter`]: crate::String::iter
#[derive(Debug, Clone)]
pub struct Iter<'a>(slice::Iter<'a, u8>);
impl<'a> Iter<'a> {
#[inline]
#[must_use]
pub(crate) fn from_slice(slice: &'a [u8]) -> Self {
Self(slice.iter())
}
/// Views the underlying data as a subslice of the original data.
///
/// This has the same lifetime as the original slice, and so the iterator
/// can continue to be used while this exists.
///
/// # Examples
///
/// ```
/// # use spinoso_string::String;
/// let s = String::utf8(b"Artichoke Ruby".to_vec());
///
/// // Then, we get the iterator:
/// let mut iter = s.iter();
/// assert_eq!(iter.as_slice(), b"Artichoke Ruby");
///
/// // Next, we move to the second element of the slice:
/// iter.next();
/// // Now `as_slice` returns "rtichoke Ruby":
/// assert_eq!(iter.as_slice(), b"rtichoke Ruby");
/// ```
#[inline]
#[must_use]
pub fn as_slice(&self) -> &[u8] {
self.0.as_slice()
}
}
impl<'a> AsRef<[u8]> for Iter<'a> {
fn as_ref(&self) -> &[u8] {
self.as_slice()
}
}
impl<'a> Iterator for Iter<'a> {
type Item = &'a u8;
#[inline]
fn next(&mut self) -> Option<Self::Item> {
self.0.next()
}
#[inline]
fn nth(&mut self, n: usize) -> Option<Self::Item> {
self.0.nth(n)
}
#[inline]
fn count(self) -> usize {
self.0.count()
}
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) {
self.0.size_hint()
}
#[inline]
fn last(self) -> Option<Self::Item> {
self.0.last()
}
}
impl<'a> DoubleEndedIterator for Iter<'a> {
#[inline]
fn next_back(&mut self) -> Option<Self::Item> {
self.0.next_back()
}
#[inline]
fn nth_back(&mut self, n: usize) -> Option<Self::Item> {
self.0.nth_back(n)
}
}
impl<'a> FusedIterator for Iter<'a> {}
impl<'a> ExactSizeIterator for Iter<'a> {}
/// Mutable [`String`] byte iterator.
///
/// This struct is created by the [`iter_mut`] method on a Spinoso [`String`].
/// See its documentation for more.
///
/// # Examples
///
/// ```
/// # use spinoso_string::String;
/// let mut s = String::utf8(b"Artichoke Ruby".to_vec());
///
/// for byte in s.iter_mut() {
/// *byte = b'z';
/// }
/// assert_eq!(s, "zzzzzzzzzzzzzz");
/// ```
///
/// [`String`]: crate::String
/// [`iter_mut`]: crate::String::iter_mut
#[derive(Debug)]
pub struct IterMut<'a>(slice::IterMut<'a, u8>);
impl<'a> IterMut<'a> {
#[inline]
#[must_use]
pub(crate) fn from_mut_slice(slice: &'a mut [u8]) -> Self {
Self(slice.iter_mut())
}
/// Views the underlying data as a subslice of the original data.
///
/// To avoid creating `&mut` references that alias, this is forced to consume
/// the iterator.
///
/// # Examples
///
/// ```
/// # use spinoso_string::String;
/// let mut s = String::utf8(b"Artichoke Ruby".to_vec());
/// {
/// let mut iter = s.iter_mut();
/// iter.next();
/// assert_eq!(iter.into_slice(), b"rtichoke Ruby");
/// }
/// {
/// let mut iter = s.iter_mut();
/// *iter.next().unwrap() = b'a';
/// *iter.nth(9).unwrap() = b'r';
/// }
/// assert_eq!(s, &b"artichoke ruby"[..]);
/// ```
#[inline]
#[must_use]
pub fn into_slice(self) -> &'a mut [u8] {
self.0.into_slice()
}
}
impl<'a> Iterator for IterMut<'a> {
type Item = &'a mut u8;
#[inline]
fn next(&mut self) -> Option<Self::Item> {
self.0.next()
}
#[inline]
fn nth(&mut self, n: usize) -> Option<Self::Item> {
self.0.nth(n)
}
#[inline]
fn count(self) -> usize {
self.0.count()
}
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) {
self.0.size_hint()
}
#[inline]
fn last(self) -> Option<Self::Item> {
self.0.last()
}
}
impl<'a> DoubleEndedIterator for IterMut<'a> {
#[inline]
fn next_back(&mut self) -> Option<Self::Item> {
self.0.next_back()
}
#[inline]
fn nth_back(&mut self, n: usize) -> Option<Self::Item> {
self.0.nth_back(n)
}
}
impl<'a> FusedIterator for IterMut<'a> {}
impl<'a> ExactSizeIterator for IterMut<'a> {}
/// An iterator that moves out of a string.
///
/// This struct is created by the `into_iter` method on `String` (provided by
/// the [`IntoIterator`] trait).
///
/// # Examples
///
/// ```
/// use spinoso_string::String;
///
/// let s = String::from("hello");
/// let iter: spinoso_string::IntoIter = s.into_iter();
/// ```
#[derive(Debug)]
pub struct IntoIter(vec::IntoIter<u8>);
impl IntoIter {
#[inline]
#[must_use]
pub(crate) fn from_vec(buf: Vec<u8>) -> Self {
Self(buf.into_iter())
}
/// Returns the remaining bytes of this iterator as a slice.
///
/// # Examples
///
/// ```
/// use spinoso_string::String;
///
/// let s = String::from("abc");
/// let mut into_iter = s.into_iter();
/// assert_eq!(into_iter.as_slice(), &[b'a', b'b', b'c']);
/// let _ = into_iter.next().unwrap();
/// assert_eq!(into_iter.as_slice(), &[b'b', b'c']);
/// ```
#[inline]
#[must_use]
pub fn as_slice(&self) -> &[u8] {
self.0.as_slice()
}
/// Returns the remaining bytes of this iterator as a mutable slice.
///
/// # Examples
///
/// ```
/// use spinoso_string::String;
///
/// let s = String::from("abc");
/// let mut into_iter = s.into_iter();
/// assert_eq!(into_iter.as_slice(), &[b'a', b'b', b'c']);
/// into_iter.as_mut_slice()[2] = b'z';
/// assert_eq!(into_iter.next(), Some(b'a'));
/// assert_eq!(into_iter.next(), Some(b'b'));
/// assert_eq!(into_iter.next(), Some(b'z'));
/// assert_eq!(into_iter.next(), None);
/// ```
#[inline]
#[must_use]
pub fn as_mut_slice(&mut self) -> &mut [u8] {
self.0.as_mut_slice()
}
}
impl AsRef<[u8]> for IntoIter {
#[inline]
fn as_ref(&self) -> &[u8] {
self.as_slice()
}
}
impl Iterator for IntoIter {
type Item = u8;
#[inline]
fn next(&mut self) -> Option<Self::Item> {
self.0.next()
}
#[inline]
fn nth(&mut self, n: usize) -> Option<Self::Item> {
self.0.nth(n)
}
#[inline]
fn count(self) -> usize {
self.0.count()
}
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) {
self.0.size_hint()
}
#[inline]
fn last(self) -> Option<Self::Item> {
self.0.last()
}
}
impl DoubleEndedIterator for IntoIter {
#[inline]
fn next_back(&mut self) -> Option<Self::Item> {
self.0.next_back()
}
#[inline]
fn nth_back(&mut self, n: usize) -> Option<Self::Item> {
self.0.nth_back(n)
}
}
impl FusedIterator for IntoIter {}
impl ExactSizeIterator for IntoIter {}
/// Immutable [`String`] byte iterator.
///
/// This struct is created by the [`bytes`] method on a Spinoso [`String`]. See
/// its documentation for more.
///
/// # Examples
///
/// ```
/// # use spinoso_string::String;
/// let s = String::utf8(b"Artichoke Ruby".to_vec());
///
/// let mut checksum: u32 = 0;
/// for byte in s.bytes() {
/// checksum += byte as u32;
/// }
/// assert_eq!(checksum, 1372);
/// ```
///
/// [`String`]: crate::String
/// [`bytes`]: crate::String::bytes
#[derive(Debug, Clone)]
pub struct Bytes<'a>(slice::Iter<'a, u8>);
impl<'a> From<&'a [u8]> for Bytes<'a> {
#[inline]
fn from(bytes: &'a [u8]) -> Self {
Self(bytes.iter())
}
}
impl<'a> Bytes<'a> {
#[inline]
#[must_use]
pub(crate) fn from_slice(slice: &'a [u8]) -> Self {
Self(slice.iter())
}
/// Views the underlying data as a subslice of the original data.
///
/// This has the same lifetime as the original slice, and so the iterator
/// can continue to be used while this exists.
///
/// # Examples
///
/// ```
/// # use spinoso_string::String;
/// let s = String::utf8(b"Artichoke Ruby".to_vec());
///
/// // Then, we get the iterator:
/// let mut iter = s.bytes();
/// assert_eq!(iter.as_slice(), b"Artichoke Ruby");
///
/// // Next, we move to the second element of the slice:
/// iter.next();
/// // Now `as_slice` returns "rtichoke Ruby":
/// assert_eq!(iter.as_slice(), b"rtichoke Ruby");
/// ```
#[inline]
#[must_use]
pub fn as_slice(&self) -> &[u8] {
self.0.as_slice()
}
}
impl<'a> Iterator for Bytes<'a> {
type Item = u8;
#[inline]
fn next(&mut self) -> Option<Self::Item> {
self.0.next().copied()
}
#[inline]
fn nth(&mut self, n: usize) -> Option<Self::Item> {
self.0.nth(n).copied()
}
#[inline]
fn count(self) -> usize {
self.0.count()
}
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) {
self.0.size_hint()
}
#[inline]
fn last(self) -> Option<Self::Item> {
self.0.last().copied()
}
}
impl<'a> DoubleEndedIterator for Bytes<'a> {
#[inline]
fn next_back(&mut self) -> Option<Self::Item> {
self.0.next_back().copied()
}
#[inline]
fn nth_back(&mut self, n: usize) -> Option<Self::Item> {
self.0.nth_back(n).copied()
}
}
impl<'a> FusedIterator for Bytes<'a> {}
impl<'a> ExactSizeIterator for Bytes<'a> {}