mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
52 lines
1.0 KiB
C
52 lines
1.0 KiB
C
/*
|
|
** 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;
|
|
}
|
|
|
|
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());
|
|
}
|
|
|
|
void
|
|
mrb_mruby_hash_ext_gem_final(mrb_state *mrb)
|
|
{
|
|
}
|