package Audio::TagLib::StringList; use 5.008003; use strict; use warnings; our $VERSION = '1.41'; use Audio::TagLib; # Preloaded methods go here. 1; __END__ # Below is stub documentation for your module. You'd better edit it! =head1 NAME Audio::TagLib::StringList - A list of strings =head1 SYNOPSIS use Audio::TagLib::StringList; my $i = Audio::TagLib::StringList->new(); $i->append(Audio::TagLib::String->new("catch")); $i->append(Audio::TagLib::String->new("me!")); print $i->toString()->toCString(), "\n"; # got "catch me!" =head1 DESCRIPTION This is a spcialization of the List class with some members convention for string operations. =over =item I Constructs an empty StringList. =item I Make a shallow, implicitly shared, copy of $l. Because this is implicitly shared, this method is lightweight and suitable for pass-by-value usage. =item I $s)> Constructs a StringList with $s as a member. =item I $vl, PV $t = "Latin1")> Makes a deep copy of the data in $vl. B This should only be used with the 8-bit codecs Latin1 and UTF8, when used with other codecs it will simply print a warning and exit. =item I Destroys this StringList instance. =item I toString(L $separator = " ")> Concatenate the list of strings into one string separated by $separator. =item I $s)> Appends $s to to the end of the list and returns a reference to the list. =item I Appends all of the values in $l to the end of the list and returns a reference to the list. =item I $s, L $pattern)> [static] Splits the String $s into several strings at $pattern. This will not include the pattern in the returned strings. =back =head2 EXPORT None by default. =head1 SEE ALSO L =head1 AUTHOR Dongxu Ma, Edongxu@cpan.orgE =head1 COPYRIGHT AND LICENSE Copyright (C) 2005 by Dongxu Ma This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.7 or, at your option, any later version of Perl 5 you may have available. =cut