Giter VIP home page Giter VIP logo

io-nestedcapture's Introduction

IO::NestedCapture
=================

IO::NestedCapture allows for some nice and simple STDIN, STDOUT, STDERR
capturing that can be nested. If you just need to capture output without the
nesting, you might want to see IO::Capture.

What do I mean by nested capture? Here's an example:

  use IO::NestedCapture ':subroutines';
  my $io = IO::String->new;

  IO::NestedCapture->set_next_out($io);

  capture_out \&foo;

  while (<$io>) { print ucfirst($_) }

  sub foo {
    capture_out \&bar;

    my $out = IO::NestedCapture->get_last_out;
    while (<$out>) { print lc($_) }
  }

  sub bar {
    print "HELLO WORLD!\n";
  }

  # output is:
  # Hello world!

Basically, the output of the first method is captured and converted to lowercase
and then the other capture captures it and converts the first character to
uppercase.

Installation
------------

Typical Module::Build install:

  perl Build.PL
  ./Build
  ./Build test
  ./Build install

Bugs and Such
-------------

Feature requests and bugs can be submitted to CPAN RT:

  http://rt.cpan.org/

Cheers,
Sterling

io-nestedcapture's People

Contributors

zostay avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.