NAME
IO::Vec - writev and readv in perl
VERSION
Version 0.01
SYNOPSIS
use Sys::IOVec qw/writev readv/;
my @foo = qw/foo bar bas/;
writev STDOUT, @foo;
readv STDIN, @foo;
FUNCTIONS
writev *filehandle, @values
Write the values.
readv *filehandle, @values
Read the data into the values. The values will not be resized, but filled as much as possible using their current size.
AUTHOR
Leon Timmermans, <fawaka at gmail.com>
BUGS
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?Queue=Sys-IOVec. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Sys::IOVec
You can also look for information at:
RT: CPAN's request tracker
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
ACKNOWLEDGEMENTS
COPYRIGHT & LICENSE
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.