|
NAMEVenus::Role::Superable - Superable Role ABSTRACTSuperable Role for Perl 5 SYNOPSISpackage Example; use Venus::Class; with 'Venus::Role::Superable'; package main; my $example = Example->new; # $example->super; DESCRIPTIONThis package modifies the consuming package and provides methods for dispatching to superclasses using "next::method" in mro. METHODSThis package provides the following methods: supersuper(any @args) (any) The super method dispatches to superclasses uses the C3 method resolution order to get better consistency in multiple inheritance situations. Since 3.55
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.
|