On Thu, 10 Oct 2013 11:14:49 +0300 Niko Tyni <[email protected]> wrote:
> Resurrecting the pure perl fallback would help, but I know there's a > bit of history behind that... Sadly that's not going to be universally possible. List::Util only contains abstract functions, implemented in XS purely for performance, so these could have a pure-perl fallback. But prettymuch all of the functions in Scalar::Util attempt some kind of internal hackery, such as weaken() or set_prototype(), that would not be possible from PP code. -- Paul "LeoNerd" Evans [email protected] ICQ# 4135350 | Registered Linux# 179460 http://www.leonerd.org.uk/ -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

