package Foo; use Moose; coerce 'ArrayRef' => from 'Int' => via { [$_] }; has attr => ( is => 'rw', isa => 'ArrayRef[Int]', coerce => 1, ); # ... 1