package Audio::TagLib::ByteVectorList; 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::ByteVectorList - A list of ByteVectors =head1 SYNOPSIS 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" =head1 DESCRIPTION A List specialization with some handy features useful for ByteVectors. =over =item I Construct an empty ByteVectorList. =item I $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. =item I Destroys this ByteVectorList instance. =item I toByteVector(L $separator = " ")> Convert the ByteVectorList to a ByteVector separated by $separator. By default a space is used. =item I split(L $v, L $pattern, IV $byteAlign = 1)> [static] Splits the ByteVector $v into several strings at $pattern. This will not include the pattern in the returned ByteVectors. =item I split(L $v, L $pattern, IV byteAlign, IV max)> [static] 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. =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