Method: Containers::CSplayTreeMap#each
- Defined in:
- ext/containers/splaytree_map/splaytree.c
#each ⇒ Object
389 390 391 392 393 |
# File 'ext/containers/splaytree_map/splaytree.c', line 389
static VALUE splaytree_each(VALUE self) {
splaytree *tree = get_tree_from_self(self);
splay_each(tree, &splaytree_each_helper, NULL);
return self;
}
|