Config::Model::TypeConstraints - Mouse type constraints for Config::Model
Contents
Copyright And License
This software is Copyright (c) 2005-2022 by Dominique Dumont.
This is free software, licensed under:
The GNU Lesser General Public License, Version 2.1, February 1999
perl v5.40.0 2024-11-30 Config::Model::TypeConstraints(3pm)
Description
This module provides type constraints used by Config::Model:
• "Config::Model::TypeContraints::Path". A "Maybe[Path::Tiny]" type. This type can be coerced from
"Str" type if "coerce => 1" is used to construct the attribute.
Name
Config::Model::TypeConstraints - Mouse type constraints for Config::Model
See Also
Config::Model, Mouse::Util::TypeConstraints
Synopsis
use Config::Model::TypeConstraints ;
has 'some_dir' => (
is => 'ro',
isa => 'Config::Model::TypeContraints::Path',
coerce => 1
);
Version
version 2.155
