| Audio-TagLib documentation | view source | Contained in the Audio-TagLib distribution. |
Audio::TagLib::ID3v2::FrameList::Iterator - Perl-only class
use Audio::TagLib::ID3v2::FrameList::Iterator;
my $tag = Audio::TagLib::ID3v2::Tag->new();
$tag->setTitle(Audio::TagLib::String->new("title"));
$tag->setArtist(Audio::TagLib::String->new("artist"));
my $list = $tag->frameList();
my $i = $list->begin();
print ${$i++}->toString()->toCString(), "\n"; # got "title"
print $$i->toString()->toCString(), "\n"; # got "artist"
Implements C++ std::map::iterator to be corporately used with FrameList.
Generates an iterator attached with no map.
Copy constructor.
Deletes the instance.
Returns the Frame pointed by current iterator.
overloaded by operator q(${})
Moves to next item.
overloaded by operator q(++)
Moves to last item.
overloaded by operator q(--)
Makes a copy of $it.
${} = ++ --
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. |