Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

moosex::attributehelpers::trait::collection::list(3pm) [debian man page]

MooseX::AttributeHelpers::Trait::Collection::List(3pm)	User Contributed Perl Documentation MooseX::AttributeHelpers::Trait::Collection::List(3pm)

NAME
MooseX::AttributeHelpers::Collection::List - List attribute SYNOPSIS
package Stuff; use Moose; use MooseX::AttributeHelpers; has 'options' => ( metaclass => 'Collection::List', is => 'ro', isa => 'ArrayRef[Int]', default => sub { [] }, provides => { map => 'map_options', grep => 'filter_options', } ); DESCRIPTION
This module provides an List attribute which provides a number of list operations. See MooseX::AttributeHelpers::MethodProvider::List for more details. METHODS
meta method_provider has_method_provider helper_type BUGS
All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. AUTHOR
Stevan Little <stevan@iinteractive.com> COPYRIGHT AND LICENSE
Copyright 2007-2009 by Infinity Interactive, Inc. <http://www.iinteractive.com> This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2010-01-02 MooseX::AttributeHelpers::Trait::Collection::List(3pm)

Check Out this Related Man Page

MooseX::AttributeHelpers::Trait::Collection::Bag(3pm)	User Contributed Perl Documentation  MooseX::AttributeHelpers::Trait::Collection::Bag(3pm)

NAME
MooseX::AttributeHelpers::Collection::Bag - Bag attribute SYNOPSIS
package Stuff; use Moose; use MooseX::AttributeHelpers; has 'word_histogram' => ( metaclass => 'Collection::Bag', is => 'ro', isa => 'Bag', # optional ... as is defalt provides => { 'add' => 'add_word', 'get' => 'get_count_for', 'empty' => 'has_any_words', 'count' => 'num_words', 'delete' => 'delete_word', } ); DESCRIPTION
This module provides a Bag attribute which provides a number of bag-like operations. See MooseX::AttributeHelpers::MethodProvider::Bag for more details. METHODS
meta method_provider has_method_provider helper_type process_options_for_provides BUGS
All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. AUTHOR
Stevan Little <stevan@iinteractive.com> COPYRIGHT AND LICENSE
Copyright 2007-2009 by Infinity Interactive, Inc. <http://www.iinteractive.com> This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2010-01-02 MooseX::AttributeHelpers::Trait::Collection::Bag(3pm)
Man Page

3 More Discussions You Might Find Interesting

1. AIX

Helpful AIX Commands to keep -Enjoy

List the licensed program productslslpp -L List the defined devices lsdev -C -H List the disk drives on the system lsdev -Cc disk List the memory on the system lsdev -Cc memory (MCA) List the memory on the system lsattr -El sys0 -a realmem (PCI) lsattr -El mem0 List system resources lsattr... (9 Replies)
Discussion started by: Aix|Dr
9 Replies

2. Shell Programming and Scripting

Read from "list1" and list matches in "list2"

I want to print any matching IP addresse in List1 with List 2; List 1 List of IP addresses; 161.85.58.210 250.57.15.129 217.23.162.249 74.76.129.101 30.221.177.237 3.147.200.59 170.58.142.64 127.65.109.33 150.167.242.146 223.3.20.186 25.181.180.99 2.55.199.32 (3 Replies)
Discussion started by: lewk
3 Replies

3. Shell Programming and Scripting

Webdav automation

Hi, I am required to automate file transfer to a Sharepoint Collection, I have failed in mounting the webdav as a file system using davfs2 so I am investigating Curl and Cadaver. Cadaver is probably the easiest solution, I can successfully connect and transfer files. However can anyone advise... (2 Replies)
Discussion started by: mcclunyboy
2 Replies