digits 0.0.2

Custom “numeric” incrementor without u64 MAX limit in size. Like a score flipper for a custom character set.
Documentation

digits

Build Status crates.io version License

Digits is a custom character base numeric sequencer. This crate is designed for infinite character progressions. It will contain additive methods such as add and mul. Documentation is coming very soon!

This is an extension on top of base_custom. That has the following benefits.

Use any characters as your own numeric base and convert to and from decimal. This can be taken advantage of in various ways:

  • Mathematics: number conversion
  • Brute force sequencing
  • Rolling ciphers
  • Moderate information concealment
  • Other potential uses such as deriving music or art from numbers

Installation

Add the following to your Cargo.toml file

[dependencies]
digits = "^0.0.1"

To include it for usage add

extern crate digits;
use digits::Digits;

to your file.

Usage

WIP!

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.