in reply to Removing an element from an AV?

Just a thought, but if the order's not important you might could use a hash / HV* instead of an array. That'll let you maintain the list with hv_delete_ent() and get a list of the items with keys (and / or the C equivalent by building an iterator and working up your own AV*).

Replies are listed 'Best First'.
Re^2: Removing an element from an AV?
by Anonymous Monk on Oct 08, 2004 at 18:40 UTC
    Thanks, it's something to consider. It would probably be faster too, right? I may just do this.