poly_it 0.2.4

A no-std library for manipulating polynomials with slice support and minimal allocation.
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
//! This module provides storage solution abstractions. This is done via the [`StorageProvider`](trait@StorageProvider)
//! and [`Storage`](trait@Storage) traits. Conceptually the storage type represent the specific instance of storage in question,
//! e.g. a `Vec<f64>`, whereas the storage provider represents the underlying container or mechanism, e.g. `Vec` and provides
//! a means to create different instances using that container or mechanism type.
//!

/// A trait for represting the underlying storage container or mechanism family.
pub trait StorageProvider<T> {
    /// The storage type that this family provides for `T` type elements.
    type StorageType: Storage<T>;

    /// Create a new storage provider.
    fn new() -> Self;

    /// Create a new storage instance.
    fn new_storage(&mut self) -> Self::StorageType;

    /// Create a new storage instance with at least `capacity` capacity.
    /// Is allowed to panic if the storage type cannot support the requested capacity.
    fn storage_with_capacity(&mut self, capacity: usize) -> Self::StorageType;
}

/// Represents a slice-like storage type for a specific type of element.
pub trait Storage<T>: Clone {
    /// A reference to the underlying storage provider family.
    type Provider: StorageProvider<T, StorageType = Self>;

    /// Clears all data in the storage.
    fn clear(&mut self);

    /// Push an element to storage.
    fn push(&mut self, value: T);

    /// Pop the last element from storage.
    fn pop(&mut self) -> Option<T>;

    /// Return an immutable refrence to the data.
    fn as_slice(&self) -> &[T];

    /// Return a mutable reference to the data.
    fn as_mut_slice(&mut self) -> &mut [T];

    /// Return the length of the data. Should always concide with the
    /// the slice's length.
    #[inline]
    fn len(&self) -> usize {
        self.as_slice().len()
    }

    /// Return the capacity of the storage type.
    fn capacity(&self) -> usize;
}

#[cfg(feature = "alloc")]
pub mod vec {
    //! The `Vec` storage family.
    extern crate alloc;
    use alloc::vec::Vec;

    use super::{Storage, StorageProvider};

    /// Represents the vector storage family.
    pub struct VecStorage;

    impl<T> StorageProvider<T> for VecStorage
    where
        T: Clone,
    {
        type StorageType = Vec<T>;
        #[inline]
        fn new() -> Self {
            Self
        }

        #[inline]
        fn new_storage(&mut self) -> Self::StorageType {
            Self::StorageType::new()
        }

        #[inline]
        fn storage_with_capacity(&mut self, capacity: usize) -> Self::StorageType {
            Self::StorageType::with_capacity(capacity)
        }
    }

    impl<T> Storage<T> for Vec<T>
    where
        T: Clone,
    {
        type Provider = VecStorage;

        #[inline]
        fn clear(&mut self) {
            self.clear();
        }

        #[inline]
        fn push(&mut self, value: T) {
            self.push(value);
        }

        #[inline]
        fn pop(&mut self) -> Option<T> {
            self.pop()
        }

        #[inline]
        fn len(&self) -> usize {
            self.len()
        }

        #[inline]
        fn capacity(&self) -> usize {
            self.capacity()
        }

        #[inline]
        fn as_slice(&self) -> &[T] {
            self.as_slice()
        }

        #[inline]
        fn as_mut_slice(&mut self) -> &mut [T] {
            self.as_mut_slice()
        }
    }
}

#[cfg(feature = "tinyvec")]
pub mod tinyvec {
    //! [TinyVec](https://docs.rs/tinyvec/latest/tinyvec/) storage families.
    use super::{Storage, StorageProvider};
    #[cfg(feature = "alloc")]
    use alloc::vec::Vec;
    #[cfg(feature = "alloc")]
    pub use tinyvec::TinyVec;
    pub use tinyvec::{Array, ArrayVec};

    /// Represents the `tinyvec::Array` storage family of a particular capacity.
    pub struct TinyVecArrayStorage<const CAP: usize>;

    impl<const CAP: usize, T> StorageProvider<T> for TinyVecArrayStorage<CAP>
    where
        T: Clone,
        [T; CAP]: Array<Item = T>,
    {
        type StorageType = ArrayVec<[T; CAP]>;
        #[inline]
        fn new() -> Self {
            Self
        }

        #[inline]
        fn new_storage(&mut self) -> Self::StorageType {
            Self::StorageType::new()
        }

        #[inline]
        fn storage_with_capacity(&mut self, capacity: usize) -> Self::StorageType {
            if capacity > <[T; CAP] as Array>::CAPACITY {
                panic!(
                    "Requested capacity of {} exceeds maximum of {}",
                    capacity,
                    <[T; CAP] as Array>::CAPACITY
                )
            }
            Self::StorageType::new()
        }
    }

    impl<const CAP: usize, T> Storage<T> for ArrayVec<[T; CAP]>
    where
        T: Clone,
        [T; CAP]: Array<Item = T>,
    {
        type Provider = TinyVecArrayStorage<CAP>;

        #[inline]
        fn clear(&mut self) {
            self.clear();
        }

        #[inline]
        fn push(&mut self, value: T) {
            self.push(value);
        }

        #[inline]
        fn pop(&mut self) -> Option<T> {
            self.pop()
        }

        #[inline]
        fn len(&self) -> usize {
            self.len()
        }

        #[inline]
        fn capacity(&self) -> usize {
            self.capacity()
        }

        #[inline]
        fn as_slice(&self) -> &[T] {
            self.as_slice()
        }

        #[inline]
        fn as_mut_slice(&mut self) -> &mut [T] {
            self.as_mut_slice()
        }
    }

    #[cfg(feature = "alloc")]
    /// Represents the `tinyvec::TinyVec` storage family of a particular stack capacity.
    pub struct TinyVecStorage<const CAP: usize>;

    #[cfg(feature = "alloc")]
    impl<const CAP: usize, T> StorageProvider<T> for TinyVecStorage<CAP>
    where
        T: Clone,
        [T; CAP]: Array<Item = T>,
    {
        type StorageType = TinyVec<[T; CAP]>;
        #[inline]
        fn new() -> Self {
            Self
        }

        #[inline]
        fn new_storage(&mut self) -> Self::StorageType {
            Self::StorageType::new()
        }

        #[inline]
        fn storage_with_capacity(&mut self, capacity: usize) -> Self::StorageType {
            if capacity <= <[T; CAP] as Array>::CAPACITY {
                TinyVec::Inline(ArrayVec::new())
            } else {
                TinyVec::Heap(Vec::with_capacity(capacity))
            }
        }
    }

    #[cfg(feature = "alloc")]
    impl<const CAP: usize, T> Storage<T> for TinyVec<[T; CAP]>
    where
        T: Clone,
        [T; CAP]: Array<Item = T>,
    {
        type Provider = TinyVecStorage<CAP>;

        #[inline]
        fn clear(&mut self) {
            self.clear();
        }

        #[inline]
        fn push(&mut self, value: T) {
            self.push(value);
        }

        #[inline]
        fn pop(&mut self) -> Option<T> {
            self.pop()
        }

        #[inline]
        fn len(&self) -> usize {
            self.len()
        }

        #[inline]
        fn capacity(&self) -> usize {
            self.capacity()
        }

        #[inline]
        fn as_slice(&self) -> &[T] {
            self.as_slice()
        }

        #[inline]
        fn as_mut_slice(&mut self) -> &mut [T] {
            self.as_mut_slice()
        }
    }
}

#[cfg(feature = "arrayvec")]
pub mod arrayvec {
    //! [ArrayVec](https://docs.rs/arrayvec/latest/arrayvec/) storage family.
    use super::{Storage, StorageProvider};
    pub use arrayvec::ArrayVec;

    /// Represents the `arrayvec::ArrayVec` storage family of a particular capacity.
    pub struct ArrayVecStorage<const CAP: usize>;

    impl<const CAP: usize, T> StorageProvider<T> for ArrayVecStorage<CAP>
    where
        T: Clone,
    {
        type StorageType = ArrayVec<T, CAP>;
        #[inline]
        fn new() -> Self {
            Self
        }

        #[inline]
        fn new_storage(&mut self) -> Self::StorageType {
            Self::StorageType::new()
        }

        #[inline]
        fn storage_with_capacity(&mut self, capacity: usize) -> Self::StorageType {
            if capacity > CAP {
                panic!(
                    "Requested capacity of {} exceeds maximum of {}",
                    capacity, CAP
                )
            }
            Self::StorageType::new()
        }
    }

    impl<const CAP: usize, T> Storage<T> for ArrayVec<T, CAP>
    where
        T: Clone,
    {
        type Provider = ArrayVecStorage<CAP>;

        #[inline]
        fn clear(&mut self) {
            self.clear();
        }

        #[inline]
        fn push(&mut self, value: T) {
            self.push(value);
        }

        #[inline]
        fn pop(&mut self) -> Option<T> {
            self.pop()
        }

        #[inline]
        fn len(&self) -> usize {
            self.len()
        }

        #[inline]
        fn capacity(&self) -> usize {
            self.capacity()
        }

        #[inline]
        fn as_slice(&self) -> &[T] {
            self.as_slice()
        }

        #[inline]
        fn as_mut_slice(&mut self) -> &mut [T] {
            self.as_mut_slice()
        }
    }
}

#[cfg(feature = "smallvec")]
pub mod smallvec {
    //! [SmallVec](https://docs.rs/smallvec/latest/smallvec/) storage family.
    use super::{Storage, StorageProvider};
    pub use smallvec::{Array, SmallVec};

    /// Represents the `smallvec::SmallVec` storage family of a particular stack capacity.
    pub struct SmallVecStorage<const CAP: usize>;

    impl<const CAP: usize, T> StorageProvider<T> for SmallVecStorage<CAP>
    where
        T: Clone,
        [T; CAP]: Array<Item = T>,
    {
        type StorageType = SmallVec<[T; CAP]>;
        #[inline]
        fn new() -> Self {
            Self
        }

        #[inline]
        fn new_storage(&mut self) -> Self::StorageType {
            Self::StorageType::new()
        }

        #[inline]
        fn storage_with_capacity(&mut self, capacity: usize) -> Self::StorageType {
            SmallVec::with_capacity(capacity)
        }
    }

    impl<const CAP: usize, T> Storage<T> for SmallVec<[T; CAP]>
    where
        T: Clone,
        [T; CAP]: Array<Item = T>,
    {
        type Provider = SmallVecStorage<CAP>;

        #[inline]
        fn clear(&mut self) {
            self.clear();
        }

        #[inline]
        fn push(&mut self, value: T) {
            self.push(value);
        }

        #[inline]
        fn pop(&mut self) -> Option<T> {
            self.pop()
        }

        #[inline]
        fn len(&self) -> usize {
            self.len()
        }

        #[inline]
        fn capacity(&self) -> usize {
            self.capacity()
        }

        #[inline]
        fn as_slice(&self) -> &[T] {
            self.as_slice()
        }

        #[inline]
        fn as_mut_slice(&mut self) -> &mut [T] {
            self.as_mut_slice()
        }
    }
}