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

Venus::Box - Box Class

Box Class for Perl 5

  package main;
  use Venus::Box;
  my $box = Venus::Box->new(
    value => {},
  );
  # $box->keys->count->unbox;

This package provides a pure Perl boxing mechanism for wrapping objects and values, and chaining method calls across all objects.

This package integrates behaviors from:

Venus::Role::Buildable

Venus::Role::Proxyable

This package provides the following methods:

  unbox(string $method, any @args) (any)

The unbox method returns the un-boxed underlying object. This is a virtual method that dispatches to "__handle__unbox". 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

unbox example 1
  # given: synopsis;
  my $unbox = $box->unbox;
  # bless({ value => {} }, "Venus::Hash")
    
unbox example 2
  # given: synopsis;
  my $unbox = $box->unbox('count');
  # 0
    

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.