Advertisement
three18ti

Array of Objects

Dec 20th, 2011
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.31 KB | None | 0 0
  1. has 'ip_block'      => (
  2.     is          => 'rw',
  3.     isa         => 'ArrayRef[Obj]',
  4.     default     => sub { [] },
  5.     lazy        => 1,
  6.     handles     => {
  7.         ip_block_add  => 'push',
  8.         ip_block_next => 'shift',
  9.         ip_block_list => 'elements',
  10.         ip_block_size => 'count',
  11.     }
  12. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement