KiokuDB::TypeMap::Entry::Std - Role for more easily specifying collapse/expand methods


KiokuDB documentation Contained in the KiokuDB distribution.

Index


Code Index:

NAME

Top

KiokuDB::TypeMap::Entry::Std - Role for more easily specifying collapse/expand methods

SYNOPSIS

Top

TODO

DESCRIPTION

Top

This role just integrates other roles into a single place for convenience. The roles that it integrates are:

KiokuDB::TypeMap::Entry
KiokuDB::TypeMap::Entry::Std::ID
KiokuDB::TypeMap::Entry::Std::Compile
KiokuDB::TypeMap::Entry::Std::Intrinsic

SEE ALSO

Top

KiokuDB::TypeMap::Entry KiokuDB::TypeMap::Entry::Std::ID KiokuDB::TypeMap::Entry::Std::Compile KiokuDB::TypeMap::Entry::Std::Intrinsic


KiokuDB documentation Contained in the KiokuDB distribution.

#!/usr/bin/perl

package KiokuDB::TypeMap::Entry::Std;
use Moose::Role;

use KiokuDB::TypeMap::Entry::Compiled;

use namespace::clean -except => 'meta';

with qw(
    KiokuDB::TypeMap::Entry
    KiokuDB::TypeMap::Entry::Std::ID
    KiokuDB::TypeMap::Entry::Std::Compile
    KiokuDB::TypeMap::Entry::Std::Intrinsic
);


__PACKAGE__

__END__