ruby-sys 0.3.0

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

extern "C" {
    pub fn rb_proc_call_with_block(rproc: Value,
                                   argc: Argc,
                                   argv: *const Value,
                                   pass_procval: Value)
                                   -> Value;
}