in reply to Re^2: Callback function in xsubpp (each)
in thread Callback function in xsubpp
What I would do is honor my best practice of not manipulating Perl data structures from XS code and just iterate over the keys in regular Perl code using for my $key ( keys %hash ) [which makes a copy of just the keys].
- tye
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Callback function in xsubpp (xs--)
by sriniiyer (Initiate) on Aug 07, 2013 at 12:33 UTC | |
|
Re^4: Callback function in xsubpp (xs--)
by sriniiyer (Initiate) on Jul 31, 2013 at 12:48 UTC |