Antelope Standard Library for Rust

Build Status License Crates.io

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

Feature Roadmap

Install

bash $ cargo add antelope

Quickstart

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

let symcode = SymbolCode::new("FOO"); asserteq!(5197638, symcode.raw()); asserteq!(3, symcode.length()); asserteq!(true, symcode.isvalid()); asserteq!("FOO", symcode.tostring()); ```