/* * call-seq: * fi.stored? -> bool * * Return true if the field is stored in the index. */ static VALUE frb_fi_is_stored(VALUE self) { FieldInfo *fi = (FieldInfo *)DATA_PTR(self); return fi_is_stored(fi) ? Qtrue : Qfalse; }