|
NAMEVenus::Box - Box Class ABSTRACTBox Class for Perl 5 SYNOPSIS package main;
use Venus::Box;
my $box = Venus::Box->new(
value => {},
);
# $box->keys->count->unbox;
DESCRIPTIONThis package provides a pure Perl boxing mechanism for wrapping objects and values, and chaining method calls across all objects. INTEGRATESThis package integrates behaviors from: Venus::Role::Buildable Venus::Role::Proxyable METHODSThis package provides the following methods: unboxunbox(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
AUTHORSAwncorp, "awncorp@cpan.org" LICENSECopyright (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.
|