cl-traits-derive

Crates.iocl-traits-derive
lib.rscl-traits-derive
version1.0.0
sourcesrc
created_at2019-03-12 00:50:09.442493
updated_at2020-04-05 01:26:07.725398
descriptionDerives for cl-traits
homepage
repositoryhttps://github.com/c410-f3r/cl-traits
max_upload_size
id120165
size20,857
Caio (c410-f3r)

documentation

README

Collection Traits (cl-traits)

CI crates.io Documentation License Rustc

Yet another library that generalizes collections. This is a best effort without GAT.

Many data structures have unique features that make it difficult or even impossible to create a single trait that fits all. This crate tries to circumvent such behaviour by providing a single method for each trait to achieve maximum flexibility and freedom.

Examples

use cl_traits::*;

struct SomeCustomVector(Vec<i32>, Vec<i32>);

impl Length for SomeCustomVector {
  type Output = usize;

  fn length(&self) -> Self::Output {
    self.0.length() + self.1.length()
  }
}

fn main() {
  let v = SomeCustomVector(vec![1, 2], vec![3, 4, 5, 6]);
  assert_eq!(v.length(), 6);
}

You can see more complete examples in the examples directory.

Derives

Derives are somewhat limited because they aggregate every single attribute, threfore, should be used with caution.

use cl_traits::*;
use cl_traits_derive::*;

#[derive(WithLength)]
struct SomeCustomVector(Vec<i32>, Vec<i32>);

fn main() {
  let v = SomeCustomVector(vec![1, 2], vec![3, 4, 5, 6]);
  assert_eq!(v.length(), (2, 4));
}
Commit count: 0

cargo fmt