
Audio::TagLib::ByteVectorList - A list of ByteVectors

use Audio::TagLib::ByteVectorList;
my $i = Audio::TagLib::ByteVctorList->split(
Audio::TagLib::ByteVector->new("Here I am"),
Audio::TagLib::ByteVector->new(" "));
print $i->toByteVector()->data(), "\n"; # got "here I am"

A List specialization with some handy features useful for ByteVectors.
Construct an empty ByteVectorList.
Make a shallow, implicitly shared, copy of $l. Because this is implicitly shared, this method is lightweight and suitable for pass-by-value usage.
Destroys this ByteVectorList instance.
Convert the ByteVectorList to a ByteVector separated by $separator. By default a space is used.
Splits the ByteVector $v into several strings at $pattern. This will not include the pattern in the returned ByteVectors.
Splits the ByteVector $v into several strings at $pattern. This will not include the pattern in the returned ByteVectors. $max is the maximum number of entries that will be separated. If $max for instance is 2 then a maximum of 1 match will be found and the vector will be split on that match.
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.