aabel-identifier-rs 0.1.2

A crate the defines identifier behavior, such comparing them, or generating sequences of identifiers.
Documentation
  • Coverage
  • 50%
    3 out of 6 items documented2 out of 4 items with examples
  • Size
  • Source code size: 8.80 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 272.55 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • veminovici/aabel-identifier-rs
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • veminovici

Simplee > Aabel > Identifier

Crates.io CI GitHub top language License:MIT GitHub code size in bytes GitHub last commit GitHub watchers

Description

A Rust crate that defines some behavior related to identifiers, such:

  • any type which implements Eq will be an Identifier.
  • any type which implements PartialOrd will be a PartialOrdIdentifier.
  • capabilities to generate sequences of identifiers.

Examples

Any type which implements the [Eq] trait will automatically be an identifier.

use aabel_identifier_rs::*;

fn test_identifier(_id: impl Identifier) {
    assert!(true);
}

let id = 10_u8;
test_identifier(id);

You can create an iterator which generates new idenfiers, given a starting point and a function which compute a new identifier value from a previous one.

use aabel_identifier_rs::*;

let id = 10_u8;
let mut iter = id.into_ids_iterator(|id| id + 1);

assert_eq!(iter.next(), Some(10));
assert_eq!(iter.next(), Some(11));

About

Code designed and written on the beautiful island of Saaremaa, Estonia.