non-empty-slice 0.5.1

Non-empty slices.
Documentation
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
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
//! Various non-empty iterators over non-empty vectors and slices.

#[cfg(feature = "std")]
use std::vec::IntoIter;

#[cfg(all(not(feature = "std"), feature = "alloc"))]
use alloc::vec::IntoIter;

use core::{
    fmt,
    iter::Map,
    slice::{self, Iter, IterMut},
};

use non_zero_size::Size;

use non_empty_iter::{NonEmptyAdapter, NonEmptyIterator};

use crate::slice::{NonEmptyBytes, NonEmptySlice};

/// Represents non-empty by-value iterators.
#[cfg(any(feature = "std", feature = "alloc"))]
pub type IntoNonEmptyIter<T> = NonEmptyAdapter<IntoIter<T>>;

/// Represents non-empty by-reference iterators.
pub type NonEmptyIter<'a, T> = NonEmptyAdapter<Iter<'a, T>>;

/// Represents non-empty by-mutable-reference iterators.
pub type NonEmptyIterMut<'a, T> = NonEmptyAdapter<IterMut<'a, T>>;

/// Represents functions mapping chunks to non-empty slices.
///
/// This is mostly an implementation detail, though it can be useful in case
/// one needs to name the type of the iterator explicitly.
pub type NonEmptySliceFn<'a, T> = fn(&'a [T]) -> &'a NonEmptySlice<T>;

/// Represents functions mapping mutable chunks to non-empty mutable slices.
///
/// This is mostly an implementation detail, though it can be useful in case
/// one needs to name the type of the iterator explicitly.
pub type NonEmptyMutSliceFn<'a, T> = fn(&'a mut [T]) -> &'a mut NonEmptySlice<T>;

/// Represents non-empty iterators over non-empty slices in (non-overlapping) chunks,
/// starting at the beginning of the non-empty slice.
///
/// This `struct` is created by the [`chunks`] method on [`NonEmptySlice<T>`].
///
/// [`chunks`]: NonEmptySlice::chunks
#[derive(Debug)]
pub struct Chunks<'a, T> {
    slice: &'a NonEmptySlice<T>,
    size: Size,
}

impl<'a, T> Chunks<'a, T> {
    /// Constructs [`Self`].
    pub const fn new(slice: &'a NonEmptySlice<T>, size: Size) -> Self {
        Self { slice, size }
    }
}

impl<'a, T> IntoIterator for Chunks<'a, T> {
    type Item = &'a NonEmptySlice<T>;

    type IntoIter = Map<slice::Chunks<'a, T>, NonEmptySliceFn<'a, T>>;

    fn into_iter(self) -> Self::IntoIter {
        self.slice
            .as_slice()
            .chunks(self.size.get())
            // SAFETY: chunks are never empty
            .map(|chunk| unsafe { NonEmptySlice::from_slice_unchecked(chunk) })
    }
}

unsafe impl<T> NonEmptyIterator for Chunks<'_, T> {}

/// Represents non-empty iterators over non-empty slices in (non-overlapping) mutable chunks,
/// starting at the beginning of the non-empty slice.
///
/// This `struct` is created by the [`chunks_mut`] method on [`NonEmptySlice<T>`].
///
/// [`chunks_mut`]: NonEmptySlice::chunks_mut
#[derive(Debug)]
pub struct ChunksMut<'a, T> {
    slice: &'a mut NonEmptySlice<T>,
    size: Size,
}

impl<'a, T> ChunksMut<'a, T> {
    /// Constructs [`Self`].
    pub const fn new(slice: &'a mut NonEmptySlice<T>, size: Size) -> Self {
        Self { slice, size }
    }
}

impl<'a, T> IntoIterator for ChunksMut<'a, T> {
    type Item = &'a mut NonEmptySlice<T>;

    type IntoIter = Map<slice::ChunksMut<'a, T>, NonEmptyMutSliceFn<'a, T>>;

    fn into_iter(self) -> Self::IntoIter {
        self.slice
            .as_mut_slice()
            .chunks_mut(self.size.get())
            // SAFETY: chunks are never empty
            .map(|chunk| unsafe { NonEmptySlice::from_mut_slice_unchecked(chunk) })
    }
}

unsafe impl<T> NonEmptyIterator for ChunksMut<'_, T> {}

/// Represents non-empty iterators over non-empty slices in (non-overlapping) chunks,
/// starting at the end of the non-empty slice.
///
/// This `struct` is created by the [`rchunks`] method on [`NonEmptySlice<T>`].
///
/// [`rchunks`]: NonEmptySlice::rchunks
#[derive(Debug)]
pub struct RChunks<'a, T> {
    slice: &'a NonEmptySlice<T>,
    size: Size,
}

impl<'a, T> RChunks<'a, T> {
    /// Constructs [`Self`].
    pub const fn new(slice: &'a NonEmptySlice<T>, size: Size) -> Self {
        Self { slice, size }
    }
}

unsafe impl<T> NonEmptyIterator for RChunks<'_, T> {}

impl<'a, T> IntoIterator for RChunks<'a, T> {
    type Item = &'a NonEmptySlice<T>;

    type IntoIter = Map<slice::RChunks<'a, T>, NonEmptySliceFn<'a, T>>;

    fn into_iter(self) -> Self::IntoIter {
        self.slice
            .as_slice()
            .rchunks(self.size.get())
            // SAFETY: chunks are never empty
            .map(|chunk| unsafe { NonEmptySlice::from_slice_unchecked(chunk) })
    }
}

/// Represents non-empty iterators over non-empty slices in (non-overlapping) mutable chunks,
/// starting at the end of the non-empty slice.
///
/// This `struct` is created by the [`rchunks_mut`] method on [`NonEmptySlice<T>`].
///
/// [`rchunks_mut`]: NonEmptySlice::rchunks_mut
#[derive(Debug)]
pub struct RChunksMut<'a, T> {
    slice: &'a mut NonEmptySlice<T>,
    size: Size,
}

impl<'a, T> RChunksMut<'a, T> {
    /// Constructs [`Self`].
    pub const fn new(slice: &'a mut NonEmptySlice<T>, size: Size) -> Self {
        Self { slice, size }
    }
}

impl<'a, T> IntoIterator for RChunksMut<'a, T> {
    type Item = &'a mut NonEmptySlice<T>;

    type IntoIter = Map<slice::RChunksMut<'a, T>, NonEmptyMutSliceFn<'a, T>>;

    fn into_iter(self) -> Self::IntoIter {
        self.slice
            .as_mut_slice()
            .rchunks_mut(self.size.get())
            // SAFETY: chunks are never empty
            .map(|chunk| unsafe { NonEmptySlice::from_mut_slice_unchecked(chunk) })
    }
}

unsafe impl<T> NonEmptyIterator for RChunksMut<'_, T> {}

/// Represents non-empty iterators over non-empty slices in (non-overlapping) chunks,
/// starting at the beginning of the non-empty slice.
///
/// When the length of the non-empty slice is not divisible by the chunk size,
/// the last chunk will be omitted.
///
/// This `struct` is created by the [`chunks_exact`] method on [`NonEmptySlice<T>`].
///
/// [`chunks_exact`]: NonEmptySlice::chunks_exact
#[derive(Debug)]
pub struct ChunksExact<'a, T> {
    slice: &'a NonEmptySlice<T>,
    size: Size,
}

impl<'a, T> ChunksExact<'a, T> {
    /// Constructs [`Self`].
    pub const fn new(slice: &'a NonEmptySlice<T>, size: Size) -> Self {
        Self { slice, size }
    }
}

impl<'a, T> IntoIterator for ChunksExact<'a, T> {
    type Item = &'a NonEmptySlice<T>;

    type IntoIter = Map<slice::ChunksExact<'a, T>, NonEmptySliceFn<'a, T>>;

    fn into_iter(self) -> Self::IntoIter {
        self.slice
            .as_slice()
            .chunks_exact(self.size.get())
            // SAFETY: chunks are never empty
            .map(|chunk| unsafe { NonEmptySlice::from_slice_unchecked(chunk) })
    }
}

unsafe impl<T> NonEmptyIterator for ChunksExact<'_, T> {}

/// Represents non-empty iterators over non-empty slices in (non-overlapping) mutable chunks,
/// starting at the beginning of the non-empty slice.
///
/// When the length of the non-empty slice is not divisible by the chunk size,
/// the last chunk will be omitted.
///
/// This `struct` is created by the [`chunks_exact_mut`] method on [`NonEmptySlice<T>`].
///
/// [`chunks_exact_mut`]: NonEmptySlice::chunks_exact_mut
#[derive(Debug)]
pub struct ChunksExactMut<'a, T> {
    slice: &'a mut NonEmptySlice<T>,
    size: Size,
}

impl<'a, T> ChunksExactMut<'a, T> {
    /// Constructs [`Self`].
    pub const fn new(slice: &'a mut NonEmptySlice<T>, size: Size) -> Self {
        Self { slice, size }
    }
}

impl<'a, T> IntoIterator for ChunksExactMut<'a, T> {
    type Item = &'a mut NonEmptySlice<T>;

    type IntoIter = Map<slice::ChunksExactMut<'a, T>, NonEmptyMutSliceFn<'a, T>>;

    fn into_iter(self) -> Self::IntoIter {
        self.slice
            .as_mut_slice()
            .chunks_exact_mut(self.size.get())
            // SAFETY: chunks are never empty
            .map(|chunk| unsafe { NonEmptySlice::from_mut_slice_unchecked(chunk) })
    }
}

unsafe impl<T> NonEmptyIterator for ChunksExactMut<'_, T> {}

/// Represents non-empty iterators over non-empty slices in (non-overlapping) chunks,
/// starting at the end of the non-empty slice.
///
/// When the length of the non-empty slice is not divisible by the chunk size,
/// the last chunk will be omitted.
///
/// This `struct` is created by the [`rchunks_exact`] method on [`NonEmptySlice<T>`].
///
/// [`rchunks_exact`]: NonEmptySlice::rchunks_exact
#[derive(Debug)]
pub struct RChunksExact<'a, T> {
    slice: &'a NonEmptySlice<T>,
    size: Size,
}

impl<'a, T> RChunksExact<'a, T> {
    /// Constructs [`Self`].
    pub const fn new(slice: &'a NonEmptySlice<T>, size: Size) -> Self {
        Self { slice, size }
    }
}

impl<'a, T> IntoIterator for RChunksExact<'a, T> {
    type Item = &'a NonEmptySlice<T>;

    type IntoIter = Map<slice::RChunksExact<'a, T>, NonEmptySliceFn<'a, T>>;

    fn into_iter(self) -> Self::IntoIter {
        self.slice
            .as_slice()
            .rchunks_exact(self.size.get())
            // SAFETY: chunks are never empty
            .map(|chunk| unsafe { NonEmptySlice::from_slice_unchecked(chunk) })
    }
}

unsafe impl<T> NonEmptyIterator for RChunksExact<'_, T> {}

/// Represents non-empty iterators over non-empty slices in (non-overlapping) mutable chunks,
/// starting at the end of the non-empty slice.
///
/// When the length of the non-empty slice is not divisible by the chunk size,
/// the last chunk will be omitted.
///
/// This `struct` is created by the [`rchunks_exact_mut`] method on [`NonEmptySlice<T>`].
///
/// [`rchunks_exact_mut`]: NonEmptySlice::rchunks_exact_mut
#[derive(Debug)]
pub struct RChunksExactMut<'a, T> {
    slice: &'a mut NonEmptySlice<T>,
    size: Size,
}

impl<'a, T> RChunksExactMut<'a, T> {
    /// Constructs [`Self`].
    pub const fn new(slice: &'a mut NonEmptySlice<T>, size: Size) -> Self {
        Self { slice, size }
    }
}

impl<'a, T> IntoIterator for RChunksExactMut<'a, T> {
    type Item = &'a mut NonEmptySlice<T>;

    type IntoIter = Map<slice::RChunksExactMut<'a, T>, NonEmptyMutSliceFn<'a, T>>;

    fn into_iter(self) -> Self::IntoIter {
        self.slice
            .as_mut_slice()
            .rchunks_exact_mut(self.size.get())
            // SAFETY: chunks are never empty
            .map(|chunk| unsafe { NonEmptySlice::from_mut_slice_unchecked(chunk) })
    }
}

unsafe impl<T> NonEmptyIterator for RChunksExactMut<'_, T> {}

/// Represents non-empty iterators over non-empty slices in (overlapping) windows.
///
/// This `struct` is created by the [`windows`] method on [`NonEmptySlice<T>`].
///
/// [`windows`]: NonEmptySlice::windows
#[derive(Debug)]
pub struct Windows<'a, T> {
    slice: &'a NonEmptySlice<T>,
    size: Size,
}

impl<'a, T> Windows<'a, T> {
    /// Constructs [`Self`].
    pub const fn new(slice: &'a NonEmptySlice<T>, size: Size) -> Self {
        Self { slice, size }
    }
}

impl<'a, T> IntoIterator for Windows<'a, T> {
    type Item = &'a NonEmptySlice<T>;

    type IntoIter = Map<slice::Windows<'a, T>, NonEmptySliceFn<'a, T>>;

    fn into_iter(self) -> Self::IntoIter {
        self.slice
            .as_slice()
            .windows(self.size.get())
            // SAFETY: windows are never empty
            .map(|window| unsafe { NonEmptySlice::from_slice_unchecked(window) })
    }
}

unsafe impl<T> NonEmptyIterator for Windows<'_, T> {}

/// Represents non-empty iterators over non-empty slices in (non-overlapping) chunks,
/// separated by the given predicate.
///
/// This `struct` is created by the [`chunk_by`] method on [`NonEmptySlice<T>`].
///
/// [`chunk_by`]: NonEmptySlice::chunk_by
pub struct ChunkBy<'a, T, P: FnMut(&T, &T) -> bool> {
    slice: &'a NonEmptySlice<T>,
    predicate: P,
}

impl<T: fmt::Debug, P: FnMut(&T, &T) -> bool> fmt::Debug for ChunkBy<'_, T, P> {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter
            .debug_struct(stringify!(ChunkBy))
            .field(stringify!(slice), &self.slice)
            .finish()
    }
}

impl<'a, T, P: FnMut(&T, &T) -> bool> ChunkBy<'a, T, P> {
    /// Constructs [`Self`].
    pub const fn new(slice: &'a NonEmptySlice<T>, predicate: P) -> Self {
        Self { slice, predicate }
    }
}

impl<'a, T, P: FnMut(&T, &T) -> bool> IntoIterator for ChunkBy<'a, T, P> {
    type Item = &'a NonEmptySlice<T>;

    type IntoIter = Map<slice::ChunkBy<'a, T, P>, NonEmptySliceFn<'a, T>>;

    fn into_iter(self) -> Self::IntoIter {
        self.slice
            .as_slice()
            .chunk_by(self.predicate)
            // SAFETY: chunks are never empty
            .map(|chunk| unsafe { NonEmptySlice::from_slice_unchecked(chunk) })
    }
}

unsafe impl<T, P: FnMut(&T, &T) -> bool> NonEmptyIterator for ChunkBy<'_, T, P> {}

/// Represents non-empty iterators over non-empty slices in (non-overlapping) mutable chunks,
/// separated by the given predicate.
///
/// This `struct` is created by the [`chunk_by_mut`] method on [`NonEmptySlice<T>`].
///
/// [`chunk_by_mut`]: NonEmptySlice::chunk_by_mut
pub struct ChunkByMut<'a, T, P: FnMut(&T, &T) -> bool> {
    slice: &'a mut NonEmptySlice<T>,
    predicate: P,
}

impl<T: fmt::Debug, P: FnMut(&T, &T) -> bool> fmt::Debug for ChunkByMut<'_, T, P> {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter
            .debug_struct(stringify!(ChunkByMut))
            .field(stringify!(slice), &self.slice)
            .finish()
    }
}

impl<'a, T, P: FnMut(&T, &T) -> bool> ChunkByMut<'a, T, P> {
    /// Constructs [`Self`].
    pub const fn new(slice: &'a mut NonEmptySlice<T>, predicate: P) -> Self {
        Self { slice, predicate }
    }
}

impl<'a, T, P: FnMut(&T, &T) -> bool> IntoIterator for ChunkByMut<'a, T, P> {
    type Item = &'a mut NonEmptySlice<T>;

    type IntoIter = Map<slice::ChunkByMut<'a, T, P>, NonEmptyMutSliceFn<'a, T>>;

    fn into_iter(self) -> Self::IntoIter {
        self.slice
            .as_mut_slice()
            .chunk_by_mut(self.predicate)
            // SAFETY: chunks are never empty
            .map(|chunk| unsafe { NonEmptySlice::from_mut_slice_unchecked(chunk) })
    }
}

unsafe impl<T, P: FnMut(&T, &T) -> bool> NonEmptyIterator for ChunkByMut<'_, T, P> {}

/// Represents non-empty iterators that produce escaped versions of provided slices,
/// treating them as ASCII strings.
///
/// This `struct` is created by the [`escape_ascii`] method on [`NonEmptyBytes`].
///
/// [`escape_ascii`]: NonEmptyBytes::escape_ascii
#[derive(Debug)]
pub struct EscapeAscii<'a> {
    bytes: &'a NonEmptyBytes,
}

impl<'a> EscapeAscii<'a> {
    /// Constructs [`Self`].
    #[must_use]
    pub const fn new(bytes: &'a NonEmptyBytes) -> Self {
        Self { bytes }
    }
}

impl<'a> IntoIterator for EscapeAscii<'a> {
    type Item = u8;

    type IntoIter = slice::EscapeAscii<'a>;

    fn into_iter(self) -> Self::IntoIter {
        self.bytes.as_slice().escape_ascii()
    }
}

unsafe impl NonEmptyIterator for EscapeAscii<'_> {}