Method: JSON::Ext::Generator::State#ascii_only?
- Defined in:
- ext/json/ext/generator/generator.c
#ascii_only? ⇒ Boolean
Returns true, if NaN, Infinity, and -Infinity should be generated, otherwise returns false.
1203 1204 1205 1206 1207 |
# File 'ext/json/ext/generator/generator.c', line 1203
static VALUE cState_ascii_only_p(VALUE self)
{
GET_STATE(self);
return state->ascii_only ? Qtrue : Qfalse;
}
|