>>>> has 'list' =>
>>>> ( is => 'rw',
>>>> isa => 'ArrayRef',
>>>> lazy => 1,
>>>> default => sub { [] },
>>>> clearer => '_clear_list',
>>>> );> Wow. I have to re-read the docs. I missed that one. Thanks for your patience. The "clearer" option to "has" is what's causing the _clear_list method to be created for you. Shawn
