blob: 78257e6966b6f4509007bc964143a14ab3c35961 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
Inline::C allows for quick and use of inlined C code in Ruby scripts.
This library automatically:
* provides rudimentary automatic conversion between Ruby and C basic
types: (unsigned)? (char|int|long|char *)
* provides compilation of inline code
* only recompiles if the C code has changed
* can easily provide speedups in excess of 25x for tight loops when
objects are being recycled too quickly.
WWW: http://sourceforge.net/projects/rubyinline
|