Re: [COMMIT] PerlArray fixes

2002-02-01 Thread Dan Sugalski
At 2:15 AM -0500 2/1/02, Melvin Smith wrote: 2 - Add the PMC type to the array and hash indices Poke poke. :) This would be useful, anyone working on this in near term? Also, just curious how do we plan to unify the get_index_* stuff to one function? It'll be get_integer/string/value with a

Re: [COMMIT] PerlArray fixes

2002-01-31 Thread Melvin Smith
2 - Add the PMC type to the array and hash indices Poke poke. :) This would be useful, anyone working on this in near term? Also, just curious how do we plan to unify the get_index_* stuff to one function? Returning a PMC instead of specific type? -Melvin

[COMMIT] PerlArray fixes

2002-01-29 Thread Jeff G
PerlArray was previously unable to use negative indices to do anything but access integer values. This has now been fixed to let you use negative indices to access all basic types and alter basic types. The next step is threefold: 1 - Unify (get_integer_index, get_number_index, get_string_index)