libjit-sys 0.2.1

Just-In-Time Compilation in Rust using LibJIT bindings
Documentation
1
2
3
4
5
6
7
8
9
10
11
#ifndef METHOD_DATA_H
#define METHOD_DATA_H

#include <ruby.h>

void define_method_with_data(
    VALUE klass, ID id, VALUE (*cfunc)(ANYARGS), int arity, VALUE data);

VALUE get_method_data();

#endif // METHOD_DATA_H