#array #ops #type #index #ready #default #self

array-ops

Automatic method implementations for array data types

1 unstable release

0.1.0 Mar 19, 2020

#18 in #ready

Download history 1/week @ 2023-12-04 5/week @ 2023-12-11 14/week @ 2023-12-18 4/week @ 2023-12-25 1/week @ 2024-01-01 6/week @ 2024-01-08 141/week @ 2024-01-15 7/week @ 2024-01-22 4/week @ 2024-01-29 5/week @ 2024-02-05 26/week @ 2024-02-12 55/week @ 2024-02-19 43/week @ 2024-02-26 34/week @ 2024-03-04 49/week @ 2024-03-11 41/week @ 2024-03-18

172 downloads per month
Used in 3 crates

MPL-2.0+

23KB
425 lines

array-ops

Ready made default method implementations for array data types.

Overview

This crate provides a number of traits with default implementations for most of the standard library's methods on array like data structures. All you need to do to apply them to your own array like data structure is to implement HasLength and Index<usize> (and IndexMut<usize> for mutable operations), which means you need a len() method and an index() method, and the Array trait will provide default methods for everything else, implemented using just those two methods.

Documentation

Example

# use array_ops::*;
# use std::ops::{Index, IndexMut};
#[derive(PartialEq, Eq, Debug)]
struct MyNewtypedVec<A>(Vec<A>);

impl<A> From<Vec<A>> for MyNewtypedVec<A> {
    fn from(vec: Vec<A>) -> Self {
        Self(vec)
    }
}

impl<A> HasLength for MyNewtypedVec<A> {
    fn len(&self) -> usize {
        self.0.len()
    }
}

impl<A> Index<usize> for MyNewtypedVec<A> {
    type Output = A;
    fn index(&self, index: usize) -> &A {
        self.0.index(index)
    }
}

impl<A> IndexMut<usize> for MyNewtypedVec<A> {
    fn index_mut(&mut self, index: usize) -> &mut A {
        self.0.index_mut(index)
    }
}

impl<A> Array for MyNewtypedVec<A> {}
impl<A> ArrayMut for MyNewtypedVec<A> {}

# fn main() {
let mut my_vec = MyNewtypedVec::from(vec![3, 1, 3, 3, 7]);
assert!(my_vec.starts_with(&[3, 1, 3]));
my_vec.sort_unstable();
let expected = MyNewtypedVec::from(vec![1, 3, 3, 3, 7]);
assert_eq!(expected, my_vec);
# }

Licence

Copyright 2020 Bodil Stokke

This software is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.

Code of Conduct

Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.

Dependencies

~140KB