|
NAMEVenus::Role::Matchable - Matchable Role ABSTRACTMatchable Role for Perl 5 SYNOPSIS package Example;
use Venus::Class;
with 'Venus::Role::Matchable';
attr 'active';
sub validate {
my ($self) = @_;
return $self->match->when('active')->then(true)->none(false);
}
package main;
my $example = Example->new;
# $example->validate->result;
# 0
DESCRIPTIONThis package modifies the consuming package and provides a mechanism for assembling complex pattern matching operations. METHODSThis package provides the following methods: matchmatch(string | coderef $method, any @args) (Venus::Match) The match method returns a Venus::Match object having the match value set to the invocant or the result of a dispatch. This method supports dispatching, i.e. providing a method name and arguments whose return value will be acted on by this method. Since 0.04
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.
|