All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jruby.ext.ffi.DataConverter Maven / Gradle / Ivy


package org.jruby.ext.ffi;

import org.jruby.Ruby;
import org.jruby.RubyBoolean;
import org.jruby.RubyModule;
import org.jruby.anno.JRubyMethod;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.builtin.IRubyObject;

/**
 * Converts data from one FFI type to another.
 */
public class DataConverter {
    public static RubyModule createDataConverterModule(Ruby runtime, RubyModule module) {
        RubyModule result = module.defineModuleUnder("DataConverter");

        return result;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy