| Fey documentation | Contained in the Fey distribution. |
Fey::Role::TableLike - A role for things that are like a table
version 0.40
use Moose; with 'Fey::Role::TableLike';
This role has no methods or attributes of its own. It does consume the Fey::Role::Joinable role.
See Fey for details on how to report bugs.
Dave Rolsky <autarch@urth.org>
This software is Copyright (c) 2011 by Dave Rolsky.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)
| 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__