Module: Groonga::ID
- Defined in:
- ext/groonga/rb-grn-id.c
Constant Summary collapse
- NIL =
INT2NUM(GRN_ID_NIL)
- MAX =
INT2NUM(GRN_ID_MAX)
Class Method Summary collapse
Class Method Details
.builtin?(id) ⇒ Boolean
34 35 36 37 38 39 40 41 42 43 |
# File 'ext/groonga/rb-grn-id.c', line 34
static VALUE
rb_grn_id_s_builtin_p (VALUE self, VALUE rb_id)
{
grn_ctx *ctx = NULL;
grn_id id;
id = NUM2INT(rb_id);
return CBOOL2RVAL(grn_id_is_builtin(ctx, id));
}
|