Provided by: libsisimai-perl_5.3.0-1_all 

NAME
Sisimai::Fact::JSON - Dumps decoded data object as a JSON format
SYNOPSIS
use Sisimai::Fact;
my $fact = Sisimai::Fact->rise('data' => 'entire email text');
for my $e ( @$fact ) {
print $e->dump('json');
}
DESCRIPTION
"Sisimai::Fact::JSON" dumps decoded data object as a JSON format. This class and method should be called
only from the parent object "Sisimai::Fact".
CLASS METHODS
"dump(Sisimai::Fact)"
dump() method returns "Sisimai::Fact" object as a JSON formatted string.
my $mail = Sisimai::Mail->new('/var/mail/root');
while( my $r = $mail->read ) {
my $fact = Sisimai::Fact->rise('data' => 'entire email text');
for my $e ( @$fact ) {
print $e->dump('json');
}
}
AUTHOR
azumakuniyuki
COPYRIGHT
Copyright (C) 2014-2016,2018,2020,2021,2024 azumakuniyuki, All rights reserved.
LICENSE
This software is distributed under The BSD 2-Clause License.
perl v5.40.1 2025-04-12 Sisimai::Fact::JSON(3pm)