/usr/share/perl5/Courriel/Role/Streams.pm is in libcourriel-perl 0.31-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | package Courriel::Role::Streams;
{
$Courriel::Role::Streams::VERSION = '0.31';
}
use strict;
use warnings;
use namespace::autoclean;
use Courriel::Types qw( Streamable );
use MooseX::Params::Validate qw( validated_list );
use Moose::Role;
{
my @spec = ( output => { isa => Streamable, coerce => 1 } );
sub stream_to {
my $self = shift;
my ($output) = validated_list(
\@_,
@spec,
);
$self->_stream_to($output);
return;
}
}
sub as_string {
my $self = shift;
my $string = q{};
$self->stream_to( output => $self->_string_output( \$string ) );
return $string;
}
sub _string_output {
my $self = shift;
my $stringref = shift;
my $string = q{};
return sub { ${$stringref} .= $_ for @_ };
}
1;
|