Sha256: a8565c0b32ad345900295a1bafbcffb8138ee4c9d9e3aca2603772958c3a1ae1

Contents?: true

Size: 1.84 KB

Versions: 8

Compression:

Stored size: 1.84 KB

Contents

/*
** hash.c - Hash class
**
** See Copyright Notice in mruby.h
*/

#include <mruby.h>
#include <mruby/array.h>
#include <mruby/hash.h>

/*
 * call-seq:
 *   hsh.values_at(key, ...)   -> array
 *
 * Return an array containing the values associated with the given keys.
 * Also see <code>Hash.select</code>.
 *
 *   h = { "cat" => "feline", "dog" => "canine", "cow" => "bovine" }
 *   h.values_at("cow", "cat")  #=> ["bovine", "feline"]
 */

static mrb_value
hash_values_at(mrb_state *mrb, mrb_value hash)
{
  mrb_value *argv, result;
  mrb_int argc, i;
  int ai;

  mrb_get_args(mrb, "*", &argv, &argc);
  result = mrb_ary_new_capa(mrb, argc);
  ai = mrb_gc_arena_save(mrb);
  for (i = 0; i < argc; i++) {
    mrb_ary_push(mrb, result, mrb_hash_get(mrb, hash, argv[i]));
    mrb_gc_arena_restore(mrb, ai);
  }
  return result;
}

/*
 *  call-seq:
 *     hsh.slice(*keys) -> a_hash
 *
 *  Returns a hash containing only the given keys and their values.
 *
 *     h = { a: 100, b: 200, c: 300 }
 *     h.slice(:a)           #=> {:a=>100}
 *     h.slice(:b, :c, :d)   #=> {:b=>200, :c=>300}
 */
static mrb_value
hash_slice(mrb_state *mrb, mrb_value hash)
{
  mrb_value *argv, result;
  mrb_int argc, i;

  mrb_get_args(mrb, "*", &argv, &argc);
  if (argc == 0) {
    return mrb_hash_new_capa(mrb, argc);
  }
  result = mrb_hash_new_capa(mrb, argc);
  for (i = 0; i < argc; i++) {
    mrb_value key = argv[i];
    mrb_value val;

    val = mrb_hash_fetch(mrb, hash, key, mrb_undef_value());
    if (!mrb_undef_p(val)) {
      mrb_hash_set(mrb, result, key, val);
    }
  }
  return result;
}

void
mrb_mruby_hash_ext_gem_init(mrb_state *mrb)
{
  struct RClass *h;

  h = mrb->hash_class;
  mrb_define_method(mrb, h, "values_at", hash_values_at, MRB_ARGS_ANY());
  mrb_define_method(mrb, h, "slice",     hash_slice, MRB_ARGS_ANY());
}

void
mrb_mruby_hash_ext_gem_final(mrb_state *mrb)
{
}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
script_core-0.2.5 ext/enterprise_script_service/mruby/mrbgems/mruby-hash-ext/src/hash-ext.c
script_core-0.2.4 ext/enterprise_script_service/mruby/mrbgems/mruby-hash-ext/src/hash-ext.c
script_core-0.2.3 ext/enterprise_script_service/mruby/mrbgems/mruby-hash-ext/src/hash-ext.c
script_core-0.2.2 ext/enterprise_script_service/mruby/mrbgems/mruby-hash-ext/src/hash-ext.c
script_core-0.2.1 ext/enterprise_script_service/mruby/mrbgems/mruby-hash-ext/src/hash-ext.c
script_core-0.2.0 ext/enterprise_script_service/mruby/mrbgems/mruby-hash-ext/src/hash-ext.c
script_core-0.1.1 ext/enterprise_script_service/mruby/mrbgems/mruby-hash-ext/src/hash-ext.c
script_core-0.1.0 ext/enterprise_script_service/mruby/mrbgems/mruby-hash-ext/src/hash-ext.c