Regexp.Foo is a class, and Regexp.Builtin is an object.
/ Per Hedbor ()
Previous text:
2003-09-24 11:46: Subject: foo
This is even more interesting,
Regexp.pmod/Module.pmod: | class Foo | { | inherit Regexp.Builtin; | }
| > indices(Regexp.Foo); | (2) Result: ({ /* 1 element */ | "_SimpleRegexp" | }) | > indices(Regexp.Builtin); | (3) Result: ({ /* 6 elements */ | "replace", | "`()", | "split", | "SimpleRegexp", | "match", | "_SimpleRegexp" | })
Er... Okey?
/ Mirar