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
Venus::Role::Boxable(3) User Contributed Perl Documentation Venus::Role::Boxable(3)

Venus::Role::Boxable - Boxable Role

Boxable Role for Perl 5

  package Example;
  use Venus::Class;
  with 'Venus::Role::Boxable';
  attr 'text';
  package main;
  my $example = Example->new(text => 'hello, world');
  # $example->box('text')->lc->ucfirst->concat('.')->unbox->get;
  # "Hello, world."

This package modifies the consuming package and provides a method for boxing itself. This makes it possible to chain method calls across objects and values.

This package provides the following methods:

  box(string | coderef $method, any @args) (object)

The box method returns the invocant boxed, i.e. encapsulated, using Venus::Box. This method supports dispatching, i.e. providing a method name and arguments whose return value will be acted on by this method.

Since 0.01

box example 1
  package main;
  my $example = Example->new(text => 'hello, world');
  my $box = $example->box;
  # bless({ value => bless(..., "Example") }, "Venus::Box")
    
box example 2
  package main;
  my $example = Example->new(text => 'hello, world');
  my $box = $example->box('text');
  # bless({ value => bless(..., "Venus::String") }, "Venus::Box")
  # $example->box('text')->lc->ucfirst->concat('.')->unbox->get;
    

Awncorp, "awncorp@cpan.org"

Copyright (C) 2022, Awncorp, "awncorp@cpan.org".

This program is free software, you can redistribute it and/or modify it under the terms of the Apache license version 2.0.

2023-11-27 perl v5.40.2

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.