| Audio-TagLib documentation | view source | Contained in the Audio-TagLib distribution. |
Audio::TagLib::Ogg::FieldListMap - Perl-only class
use Audio::TagLib::Ogg::FieldListMap;
my $xc = Audio::TagLib::Ogg::XiphComment->new();
$xc->setTitle(Audio::TagLib::String->new("title"));
$xc->setArtist(Audio::TagLib::String->new("artist"));
my $i = $xc->fieldListMap();
tie my %i, ref($i), $i;
print $i{Audio::TagLib::String->new("TITLE")}->toString()->toCString(),
"\n"; # got "title"
Implements TagLib::Ogg::FieldListMap in C/C++ code, which is of type TagLib::Map<String, StringList>.
Optionally, you can tie an instance of ItemListMap with a hash symbol,
just like this: tie my %h, ref($i), $i;, Then operate throught
%h.
see Audio::TagLib::Ogg::XiphComment::fieldListMap()
Constructs an empty FieldListMap.
Make a shallow, implicitly shared, copy of $m.
Destroys this instance of the FieldListMap.
Returns an STL style iterator to the beginning of the map.
see Audio::TagLib::Ogg::FieldListMap::Iterator (Audio::TagLib::Ogg::FieldListMap::Iterator)
Returns an STL style iterator to the end of the map.
see Audio::TagLib::Ogg::FieldListMap::Iterator (Audio::TagLib::Ogg::FieldListMap::Iterator)
Inserts $value under $key in the map. If a value for $key already exists it will be overwritten.
Removes all of the elements from elements from the map. This however will not free memory of all the items.
The number of elements in the map.
see isEmpty()
Returns true if the map is empty.
see size()
Find the first occurance of $key.
Returns true if the map contains an instance of $key.
Erase the item at $it from the list.
Returns the value associated with $key.
note This has undefined behavior if the key is not present in the map.
Make a shallow, implicitly shared, copy of $m.
None by default.
Dongxu Ma, <dongxu@cpan.org>
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.
| Audio-TagLib documentation | view source | Contained in the Audio-TagLib distribution. |