Antelope Standard Library for Rust

Build Status License Crates.io

Implements most commonly used Antelope C++ Classes into Rust.

Planned support for

Install

bash $ cargo add antelope

Cargo.toml

toml [dependencies] antelope = "0.0.1"

Quickstart

```rust use antelope::{SymbolCode};

SymbolCode::new("FOO").raw(); // => 5197638

SymbolCode::from(5197638).to_string(); // => "FOO"

SymbolCode::new("FOO") != SymbolCode::new("BAR") // => true

SymbolCode::new("FOO") == SymbolCode::new("BAR") // => false ```