Fey::Role::TableLike - A role for things that are like a table


Fey documentation Contained in the Fey distribution.

Index


Code Index:

NAME

Top

Fey::Role::TableLike - A role for things that are like a table

VERSION

Top

version 0.40

SYNOPSIS

Top

  use Moose;

  with 'Fey::Role::TableLike';

DESCRIPTION

Top

This role has no methods or attributes of its own. It does consume the Fey::Role::Joinable role.

BUGS

Top

See Fey for details on how to report bugs.

AUTHOR

Top

Dave Rolsky <autarch@urth.org>

COPYRIGHT AND LICENSE

Top


Fey documentation Contained in the Fey distribution.

package Fey::Role::TableLike;
BEGIN {
  $Fey::Role::TableLike::VERSION = '0.40';
}

use strict;
use warnings;
use namespace::autoclean;

use Moose::Role;

with 'Fey::Role::Joinable';

1;

# ABSTRACT: A role for things that are like a table




__END__