Class: XMLEncoding

Inherits:
Object
  • Object
show all
Defined in:
ext/xmlparser/xmlparser.c

Instance Method Summary collapse

Instance Method Details

#convert(str) ⇒ Object



1035
1036
1037
1038
1039
# File 'ext/xmlparser/xmlparser.c', line 1035

static VALUE
XMLEncoding_convert(VALUE obj, VALUE str)
{
  return INT2FIX('?');
}

#map(i) ⇒ Object



1029
1030
1031
1032
1033
# File 'ext/xmlparser/xmlparser.c', line 1029

static VALUE
XMLEncoding_map(VALUE obj, VALUE i)
{
  return i;
}