Search::GIN::Keys::Deep - use Moose::Role;


Search-GIN documentation Contained in the Search-GIN distribution.

Index


Code Index:

NAME

Top

Search::GIN::Keys::Deep - use Moose::Role;

VERSION

Top

version 0.08

SYNOPSIS

Top

	with qw(Search::GIN::Keys::Deep);

DESCRIPTION

Top

AUTHOR

Top

Yuval Kogman <nothingmuch@cpan.org>

COPYRIGHT AND LICENSE

Top


Search-GIN documentation Contained in the Search-GIN distribution.

use strict;
use warnings;
package Search::GIN::Keys::Deep;
BEGIN {
  $Search::GIN::Keys::Deep::VERSION = '0.08';
}
# ABSTRACT:

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

with qw(
    Search::GIN::Keys
    Search::GIN::Keys::Join
    Search::GIN::Keys::Expand
);

sub process_keys {
    my ( $self, @keys ) = @_;

    $self->join_keys( $self->expand_keys(@keys) );
}

1;




__END__