- or download this
if ($something) {
...
}
- or download this
has something => (
is => 'ro',
isa => 'Bool',
);
- or download this
has something => (
is => 'ro',
isa => 'Any', # Bool
);
- or download this
has something => (
is => 'ro',
isa => Bool->plus_coercions(Any, q{ !!$_ }),
coerce => 1,
);