Class: XMLEncoding

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

Instance Method Summary collapse

Instance Method Details

#convert(str) ⇒ Object



1058
1059
1060
1061
1062
# File 'ext/xmlparser.c', line 1058

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

#map(i) ⇒ Object



1052
1053
1054
1055
1056
# File 'ext/xmlparser.c', line 1052

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