The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Flux::Simple::ArrayOut - output stream which stores data in a given array

VERSION

version 1.03

SYNOPSIS

    use Flux::Simple::ArrayOut;
    $out = Flux::Simple::ArrayIn->new(\@data);
    $out->write('foo');
    $out->write('bar');

    say for @data
    # Prints:
    # foo
    # bar

DESCRIPTION

Usually, you shouldn't create instances of this class directly. Use array_out helper from Flux::Simple instead.

AUTHOR

Vyacheslav Matyukhin <me@berekuk.ru>

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Yandex LLC.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.