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
Mo::build(3) User Contributed Perl Documentation Mo::build(3)

Mo::build - Adds the build feature to Mo

    use Mo qw'build';
    has name => ( is => 'rw' );

    sub BUILD {
        my $self = shift;
        ...
    }

Adds the "BUILD" feature to Mo when imported.

If a sub called "BUILD" exists on the package, it will be executed on $self during instantiation.

Any non-lazy "default" and "builder" attributes, as well as any value passed to "new" will already be set when "BUILD" is called.

    package ABCD;
    use Mo qw'build builder default';
    use feature 'say';

    has a => (default => 1234, lazy => 0);
    has b => (builder => '_b', lazy => 0);
    has c => (is => 'rw');
    has d => (is => 'rw');

    sub _b { 'blue' }

    sub BUILD {
        my ($self) = @_;
        say $self->{a};
        say $self->{b};
        say $self->{c};
        say 'undef' unless defined $self->{d};
    }

    ABCD->new(c => 'days') # => 1234
                           #    blue
                           #    days
                           #    undef
2016-07-06 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.