bump version to 1.15
[gitmo/Moose.git] / lib / Moose / Meta / Attribute / Native / Trait / String.pm
CommitLineData
c466e58f 1package Moose::Meta::Attribute::Native::Trait::String;
e3c07b19 2use Moose::Role;
3
efa728b4 4our $VERSION = '1.15';
e3c07b19 5$VERSION = eval $VERSION;
6our $AUTHORITY = 'cpan:STEVAN';
7
e7724627 8use Moose::Meta::Method::Accessor::Native::String::append;
9use Moose::Meta::Method::Accessor::Native::String::chomp;
10use Moose::Meta::Method::Accessor::Native::String::chop;
11use Moose::Meta::Method::Accessor::Native::String::clear;
12use Moose::Meta::Method::Accessor::Native::String::inc;
13use Moose::Meta::Method::Accessor::Native::String::length;
14use Moose::Meta::Method::Accessor::Native::String::match;
15use Moose::Meta::Method::Accessor::Native::String::prepend;
16use Moose::Meta::Method::Accessor::Native::String::replace;
17use Moose::Meta::Method::Accessor::Native::String::substr;
e3c07b19 18
c466e58f 19with 'Moose::Meta::Attribute::Native::Trait';
e3c07b19 20
2edb73d9 21sub _default_default { q{} }
22sub _default_is { 'rw' }
2e069f5a 23sub _helper_type { 'Str' }
e3c07b19 24
e3c07b19 25no Moose::Role;
26
e3c07b19 271;
28
29__END__
30
31=pod
32
33=head1 NAME
34
2420461c 35Moose::Meta::Attribute::Native::Trait::String - Helper trait for Str attributes
e3c07b19 36
37=head1 SYNOPSIS
38
39 package MyHomePage;
40 use Moose;
e3c07b19 41
42 has 'text' => (
9610c1d2 43 traits => ['String'],
e3c07b19 44 is => 'rw',
45 isa => 'Str',
2edb73d9 46 default => q{},
9610c1d2 47 handles => {
5f3663b2 48 add_text => 'append',
49 replace_text => 'replace',
9610c1d2 50 },
e3c07b19 51 );
52
53 my $page = MyHomePage->new();
54 $page->add_text("foo"); # same as $page->text($page->text . "foo");
55
56=head1 DESCRIPTION
57
58This module provides a simple string attribute, to which mutating string
59operations can be applied more easily (no need to make an lvalue attribute
60metaclass or use temporary variables). Additional methods are provided for
61completion.
62
63If your attribute definition does not include any of I<is>, I<isa>,
5f3663b2 64I<default> or I<handles> but does use the C<String> metaclass,
e3c07b19 65then this module applies defaults as in the L</SYNOPSIS>
2420461c 66above. This allows for a very basic string definition:
e3c07b19 67
2420461c 68 has 'foo' => (traits => ['String']);
e3c07b19 69 $obj->append_foo;
70
e3c07b19 71=head1 PROVIDED METHODS
72
e3c07b19 73=over 4
74
157e0475 75=item B<inc>
e3c07b19 76
77Increments the value stored in this slot using the magical string autoincrement
a6dd8c94 78operator. Note that Perl doesn't provide analogous behavior in C<-->, so
e3c07b19 79C<dec> is not available.
80
157e0475 81=item B<append($string)>
e3c07b19 82
83Append a string, like C<.=>.
84
157e0475 85=item B<prepend($string)>
e3c07b19 86
87Prepend a string.
88
157e0475 89=item B<replace($pattern, $replacement)>
e3c07b19 90
91Performs a regexp substitution (L<perlop/s>). There is no way to provide the
92C<g> flag, but code references will be accepted for the replacement, causing
93the regex to be modified with a single C<e>. C</smxi> can be applied using the
94C<qr> operator.
95
157e0475 96=item B<match($pattern)>
e3c07b19 97
157e0475 98Like C<replace> but without the replacement. Provided mostly for completeness.
e3c07b19 99
157e0475 100=item B<chop>
e3c07b19 101
102L<perlfunc/chop>
103
157e0475 104=item B<chomp>
e3c07b19 105
106L<perlfunc/chomp>
107
157e0475 108=item B<clear>
e3c07b19 109
110Sets the string to the empty string (not the value passed to C<default>).
111
eb95da0e 112=item B<length>
113
114L<perlfunc/length>
115
116=item B<substr>
117
118L<perlfunc/substr>. We go to some lengths to match the different functionality
119based on C<substr>'s arity.
120
e3c07b19 121=back
122
79b647c6 123=head1 METHODS
124
125=over 4
126
127=item B<meta>
128
79b647c6 129=back
130
e3c07b19 131=head1 BUGS
132
d4048ef3 133See L<Moose/BUGS> for details on reporting bugs.
e3c07b19 134
135=head1 AUTHOR
136
137Stevan Little E<lt>stevan@iinteractive.comE<gt>
138
139=head1 COPYRIGHT AND LICENSE
140
141Copyright 2007-2009 by Infinity Interactive, Inc.
142
143L<http://www.iinteractive.com>
144
145This library is free software; you can redistribute it and/or modify
146it under the same terms as Perl itself.
147
148=cut