|
NAMEVenus::Role::Unpackable - Unpackable Role ABSTRACTUnpackable Role for Perl 5 SYNOPSIS package Example;
use Venus::Class;
with 'Venus::Role::Unpackable';
sub execute {
return shift;
}
package main;
my $example = Example->new;
# $example->unpack("hello", 123, 1.23)->signature(
# 'string', 'number', 'float',
# );
DESCRIPTIONThis package modifies the consuming package and provides methods for unpacking and validating argument lists. METHODSThis package provides the following methods: unpackunpack(any @args) (Venus::Unpack) The unpack method passes the arguments provided to Venus::Unpack for unpacking and validating arbitrary argument lists. Since 2.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.
|