Class: Time
Instance Method Summary collapse
Instance Method Details
#blank? ⇒ Boolean
40 41 42 43 |
# File 'ext/faster_support/object_blank.c', line 40
static VALUE rb_true_blank(VALUE self)
{
return Qfalse;
}
|
#present? ⇒ Boolean
45 46 47 48 |
# File 'ext/faster_support/object_blank.c', line 45
static VALUE rb_true_present(VALUE self)
{
return Qtrue;
}
|