GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Function::Fallback::CoreOrPP(3) User Contributed Perl Documentation Function::Fallback::CoreOrPP(3)

Function::Fallback::CoreOrPP - Functions that use non-core XS module but provide pure-Perl/core fallback

This document describes version 0.090 of Function::Fallback::CoreOrPP (from Perl distribution Function-Fallback-CoreOrPP), released on 2020-02-03.

 use Function::Fallback::CoreOrPP qw(clone unbless uniq);

 my $clone = clone({blah=>1});
 my $unblessed = unbless($blessed_ref);
 my @uniq  = uniq(1, 3, 2, 1, 4);  # -> (1, 3, 2, 4)

This module provides functions that use non-core XS modules (for best speed, reliability, feature, etc) but falls back to those that use core XS or pure-Perl modules when the non-core XS module is not available.

This module helps when you want to bootstrap your Perl application with a portable, dependency-free Perl script. In a vanilla Perl installation (having only core modules), you can use App::FatPacker to include non-core pure-Perl dependencies to your script.

Try to use Data::Clone's "clone", but fall back to using Clone::PP's "clone".

A shortcut for:

 return map {clone($_)} @data

Try to use Acme::Damn's "damn" to unbless a reference but fall back to shallow copying.

NOTE: "damn()" MODIFIES the original reference. (XXX in the future an option to clone the reference first will be provided), while shallow copying will return a shallow copy.

NOTE: The shallow copy method currently only handles blessed {scalar,array,hash}ref as those are the most common.

Try to use List::MoreUtils's "uniq", but fall back to using slower, pure-Perl implementation.

Please visit the project's homepage at <https://metacpan.org/release/Function-Fallback-CoreOrPP>.

Source repository is at <https://github.com/perlancar/perl-Function-Fallback-CoreOrPP>.

Please report any bugs or feature requests on the bugtracker website <https://rt.cpan.org/Public/Dist/Display.html?Name=Function-Fallback-CoreOrPP>

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.

Clone::Any can also use multiple backends. I used to avoid it because Storable's "dclone" (which is used as the backend) did not support Regexp objects out of the box until version 3.08. Plus must use deparse to handle coderefs.

perlancar <perlancar@cpan.org>

This software is copyright (c) 2020, 2017, 2016, 2014 by perlancar@cpan.org.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

2020-02-03 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.