-
-
10 Jun 2009 15:13:10 UTC
- Development release
- Distribution: Audio-TagLib
- Module version: 1.41
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues (5)
- Testers (0 / 11 / 10)
- Kwalitee
Bus factor: 1- License: perl_5
- Activity
24 month- Tools
- Download (1.45MB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- unknown
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Audio::TagLib::StringList - A list of strings
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!"
DESCRIPTION
This is a spcialization of the List class with some members convention for string operations.
- new()
-
Constructs an empty StringList.
- new(StringList $l)
-
Make a shallow, implicitly shared, copy of $l. Because this is implicitly shared, this method is lightweight and suitable for pass-by-value usage.
- new(String $s)
-
Constructs a StringList with $s as a member.
- new(ByteVectorList $vl, PV $t = "Latin1")
-
Makes a deep copy of the data in $vl.
NOTE 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.
- DESTROY()
-
Destroys this StringList instance.
- String toString(String $separator = " ")
-
Concatenate the list of strings into one string separated by $separator.
- StringList append(String $s)
-
Appends $s to to the end of the list and returns a reference to the list.
- StringList append(StringList $l)
-
Appends all of the values in $l to the end of the list and returns a reference to the list.
- StringList split(String $s, String $pattern) [static]
-
Splits the String $s into several strings at $pattern. This will not include the pattern in the returned strings.
EXPORT
None by default.
SEE ALSO
AUTHOR
Dongxu Ma, <dongxu@cpan.org>
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.
Module Install Instructions
To install Audio::TagLib, copy and paste the appropriate command in to your terminal.
cpanm Audio::TagLib
perl -MCPAN -e shell install Audio::TagLib
For more information on module installation, please visit the detailed CPAN module installation guide.