Help language development. Donate to The Perl Foundation
IO::Blob - IO:: interface for reading/writing a Blob
use v6;
use IO::Blob;
my $data = "foo\nbar\n";
my IO::Blob $io = IO::Blob.new($data.encode);
$io.get; # => "foo\n"
$io.print('buz');
$io.seek(0); # rewind
$io.slurp-rest; # => "foo\nbar\nbuz"
IO::
interface for reading/writing a Blob. This class inherited from IO::Handle.
The IO::Blob class implements objects which behave just like IO::Handle objects, except that you may use them to write to (or read from) Blobs.
This module is inspired by IO::Scalar of perl5.
Make a instance. This method is equivalent to open
.
my $io = IO::Blob.new("foo\nbar\n".encode);
Make a instance. This method is equivalent to new
.
my $io = IO::Blob.open("foo\nbar\n".encode);
Make a instance. This method is equivalent to open
.
my $io = IO::Blob.new("foo\nbar\n");
Make a instance. This method is equivalent to new
.
my $io = IO::Blob.open("foo\nbar\n");
Reads a single line from the Blob.
my $io = IO::Blob.open("foo\nbar\n".encode);
$io.get; # => "foo\n"
Read a single character from the Blob.
my $io = IO::Blob.open("foo\nbar\n".encode);
$io.getc; # => "f\n"
Return a lazy list of the Blob's lines read via get
, limited to $limit
lines.
my $io = IO::Blob.open("foo\nbar\n".encode);
for $io.lines -> $line {
$line; # 1st: "foo\n", 2nd: "bar\n"
}
Read a single word (separated on whitespace) from the Blob.
my $io = IO::Blob.open("foo bar\tbuz\nqux".encode);
$io.word; # => "foo "
Return a lazy list of the Blob's words (separated on whitespace) read via word
, limited to $count
words.
my $io = IO::Blob.open("foo bar\tbuz\nqux".encode);
for $io.words -> $word {
$word; # 1st: "foo ", 2nd: "bar\t", 3rd: "buz\n", 4th: "qux"
}
Text writing; writes the given @text
to the Blob.
Text writing; similar to print, but add a newline to end of the @text
.
Binary reading; reads and returns $bytes
bytes from the Blob.
Binary writing; writes $buf to the Blob.
Move the pointer (that is the position at which any subsequent read or write operations will begin,) to the byte position specified by $offset
relative to the location specified by $whence
which may be one of:
The beginning of the file.
The current position in the file.
The end of the file.
Returns the current position of the pointer in bytes.
Returns the number of lines read from the file.
Return the remaining content of the Blob from the current position (which may have been set by previous reads or by seek.) If the adverb :bin
is provided a Buf will be returned.
Return the remaining content of the Blob from the current position (which may have been set by previous reads or by seek.) Return will be a Str with the optional encoding :enc
.
Returns Bool::True if the read operations have exhausted the content of the Blob;
Will close a previously opened Blob.
Returns Bool::True if the Blob is closed.
Returns the current Blob.
moznion [email protected]
mattn
shoichikaji
Copyright 2015 moznion [email protected]
This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.