module Fat

Public Class Methods

at(p1, *args, p3 = {}) click to toggle source
static VALUE singleton_method_at(int argc, VALUE *argv, VALUE self) {
  VALUE hash;
  VALUE fields;
  VALUE keywords;

  rb_scan_args(argc, argv, "1*:", &hash, &fields, &keywords);

  return fat(hash, fields, keywords);
}

Public Instance Methods

at(*args, p2 = {}) click to toggle source
static VALUE method_at(int argc, VALUE *argv, VALUE hash) {
  VALUE fields;
  VALUE keywords;

  rb_scan_args(argc, argv, "*:", &fields, &keywords);

  return fat(hash, fields, keywords);
}