ruby-sys 0.3.0

Low level bindings to MRI, Matz's Ruby Interpreter.
Documentation
1
2
3
4
5
6
use types::{c_long, SignedValue, Value};

extern "C" {
    pub fn rb_int2inum(num: SignedValue) -> Value;
    pub fn rb_num2int(num: Value) -> c_long;
}