
Mojo::ByteStream - ByteStream

use Mojo::ByteStream;
my $stream = Mojo::ByteStream->new('foobarbaz');
$stream->camelize;
$stream->decamelize;
$stream->b64_encode;
$stream->b64_decode;
$stream->encode('utf8');
$stream->decode('utf8');
$stream->md5_sum;
$stream->qp_decode;
$stream->qp_encode;
$stream->quote;
$stream->unquote;
$stream->url_escape;
$stream->url_sanitize;
$stream->url_unescape;
my $length = $stream->length;
my $stream2 = $stream->clone;
print $stream2->to_string;
# Chained
my $stream = Mojo::ByteStream->new('foo bar baz')->quote;
$stream = $stream->unquote->encode('utf8)->b64_encode;
print "$stream";

Mojo::ByteStream provides portable text and bytestream manipulation functions.

Mojo::ByteStream inherits all methods from Mojo::Base and implements the following new ones.
newmy $stream = Mojo::ByteStream->new($string);
b64_decode$stream = $stream->b64_decode;
b64_encode$stream = $stream->b64_encode;
camelize$stream = $stream->camelize;
clonemy $stream2 = $stream->clone;
decamelize$stream = $stream->decamelize;
decode$stream = $stream->decode($encoding);
encode$stream = $stream->encode($encoding);
lengthmy $length = $stream->length;
md5_sum$stream = $stream->md5_sum;
qp_decode$stream = $stream->qp_decode;
qp_encode$stream = $stream->qp_encode;
quote$stream = $stream->quote;
to_stringmy $string = $stream->to_string;
unquote$stream = $stream->unquote;
url_escape $stream = $stream->url_escape;
$stream = $stream->url_escape('A-Za-z0-9\-\.\_\~');
url_sanitize$stream = $stream->url_sanitize;
url_unescape$stream = $stream->url_unescape;
