| IO::Vec - writev and readv in perl |
IO::Vec - writev and readv in perl
Version 0.01
use Sys::IOVec qw/writev readv/;
my @foo = qw/foo bar bas/;
writev STDOUT, @foo;
readv STDIN, @foo;
Write the values.
Read the data into the values. The values will not be resized, but filled as much as possible using their current size.
Leon Timmermans, <fawaka at gmail.com>
Please report any bugs or feature requests to bug-sys-iovec at rt.cpan.org, or through
the web interface at http://rt.cpan.org/NoAuth/ReportBug.html. I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc Sys::IOVec
You can also look for information at:
Copyright 2008 Leon Timmermans, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| IO::Vec - writev and readv in perl |