package Fey::Role::Comparable; BEGIN { $Fey::Role::Comparable::VERSION = '0.40'; } use strict; use warnings; use namespace::autoclean; use Moose::Role; sub is_comparable {1} 1; # ABSTRACT: A role for things that can be part of a WHERE clause =pod =head1 NAME Fey::Role::Comparable - A role for things that can be part of a WHERE clause =head1 VERSION version 0.40 =head1 SYNOPSIS use Moose; with 'Fey::Role::Comparable'; =head1 DESCRIPTION Classes which do this role represent an object which can be compared to a column in a C clause. =head1 METHODS This role provides the following methods: =head2 $object->is_comparable() Returns true. =head1 BUGS See L for details on how to report bugs. =head1 AUTHOR Dave Rolsky =head1 COPYRIGHT AND LICENSE This software is Copyright (c) 2011 by Dave Rolsky. This is free software, licensed under: The Artistic License 2.0 (GPL Compatible) =cut __END__