Antelope Standard Library for Rust

github crates.io docs.rs GitHub Workflow Status

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()); ```