Method: Containers::CBst#size

Defined in:
ext/containers/bst/bst.c

#sizeObject



226
227
228
229
230
# File 'ext/containers/bst/bst.c', line 226

static VALUE rb_bst_size(VALUE self) { 
  bst *tree;
  Data_Get_Struct(self,bst,tree);
  return INT2FIX(tree->size);
}