Class: XMLEncoding

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

Instance Method Summary collapse

Instance Method Details

#convert(str) ⇒ Object



1041
1042
1043
1044
1045
# File 'ext/xmlparser.c', line 1041

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

#map(i) ⇒ Object



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

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