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
overloading(3) Perl Programmers Reference Guide overloading(3)

overloading - perl pragma to lexically control overloading

    {
        no overloading;
        my $str = "$object"; # doesn't call stringification overload
    }

    # it's lexical, so this stringifies:
    warn "$object";

    # it can be enabled per op
    no overloading qw("");
    warn "$object";

    # and also reenabled
    use overloading;

This pragma allows you to lexically disable or enable overloading.
"no overloading"
Disables overloading entirely in the current lexical scope.
"no overloading @ops"
Disables only specific overloads in the current lexical scope.
"use overloading"
Reenables overloading in the current lexical scope.
"use overloading @ops"
Reenables overloading only for specific ops in the current lexical scope.
2022-02-19 perl v5.34.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.