IO::Vec - writev and readv in perl


NAME

IO::Vec - writev and readv in perl

Back to Top


VERSION

Version 0.01

Back to Top


SYNOPSIS

    use Sys::IOVec qw/writev readv/;
        my @foo = qw/foo bar bas/;
        writev STDOUT, @foo;
        readv STDIN, @foo;

Back to Top


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.

Back to Top


AUTHOR

Leon Timmermans, <fawaka at gmail.com>

Back to Top


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. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

Back to Top


SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Sys::IOVec

You can also look for information at:

Back to Top


ACKNOWLEDGEMENTS

Back to Top


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.

Back to Top

 IO::Vec - writev and readv in perl