Group
Extension

Matches 1

autobox-JSON ( R/RS/RSRCHBOY/autobox-JSON-0.0006.tar.gz, RSRCHBOY, 2014; MetaCPAN )
autobox-JSON/lib/autobox/JSON.pm ( view source; MetaCPAN )
::JSON;
$autobox::JSON::VERSION = '0.0006';
use 5.008;
use strict;
use warnings;

use parent 'autobox';

sub import {
    my ($class) = @_;

    $class->SUPER::import(
        HASH => 'autobox::JSON::
JSON::Ref',
        STRING => 'autobox::JSON::String',
    );
}

=head1 NAME

autobox::JSON - bringing JSON functions to autobox

=head1 VERSION

version 0.0006

=head1 SYNOPSIS

    use autobox::JSON
 34}->encode_json;
    # {"name":"Jim","age":46}

    my $person = '{"name":"Jim","age":46}'->decode_json
    # {name => 'Jim', age => 34}

    my $serialized_person = $person->encode_json;
    # {"na

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.