Skip to content

Instantly share code, notes, and snippets.

@rsrchboy
Last active August 29, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rsrchboy/2e2216c9a16fa06b345b to your computer and use it in GitHub Desktop.
Save rsrchboy/2e2216c9a16fa06b345b to your computer and use it in GitHub Desktop.
# easiest is via AttributeShortcuts
use MooseX::AttributeShortcuts 0.028;
has foo => (
is => 'rw',
# $_ == $_[0] == the value to be validated
isa => sub { die unless $_[0] == 5 },
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment