NAME
String::BufferStack - Nested buffers for templating systems
SYNOPSIS
my $stack = String::BufferStack->new;
$stack->push( filter => sub {return uc shift} );
$stack->append("content");
$stack->flush_output;
DESCRIPTION
"String::BufferStack" provides a framework for storing nested buffers.
By default, all of the buffers flow directly to the output method, bu
more»
Revision history for String-BufferStack
1.16 Wed Oct 26 08:05:17 2011
* No code changes; fix license in META.yml
1.15 Wed Jan 6 18:26:17 2009
* Don't calculate buffer length as it is built, unless we ask
for it; it has serious runtime cost
1.14 Mon Mar 2 20:21:17 2009
* No code changes; make tests pass on 5.6
1.13 Fri Feb 27 19:19:17 2009
* N
more»