public static RubyHash constructHash(Ruby runtime, IRubyObject key1, IRubyObject value1, IRubyObject key2, IRubyObject value2, IRubyObject key3, IRubyObject value3) {
RubyHash hash = RubyHash.newHash(runtime);
hash.fastASetCheckString(runtime, key1, value1);
hash.fastASetCheckString(runtime, key2, value2);
hash.fastASetCheckString(runtime, key3, value3);
return hash;
}
public static RubyHash constructHash19(Ruby runtime, IRubyObject key1, IRubyObject value1) {
RubyHash hash = RubyHash.newHash(runtime);