Antelope
Standard Library for Rust
Implements most commonly used Antelope C++ Classes into Rust.
bash
$ cargo add antelope
Cargo.toml
toml
[dependencies]
antelope = "0.0.1"
```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 ```