Skip to content

Commit

Permalink
document alternatives
Browse files Browse the repository at this point in the history
  • Loading branch information
ruz committed Jan 22, 2009
1 parent b1891ae commit 1341932
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion lib/Parse/BooleanLogic.pm
Expand Up @@ -155,7 +155,7 @@ sub init {
$self->{'re_close_paren'} = qr{\)};
}
$self->{'re_tokens'} = qr{(?:$self->{'re_operator'}|$self->{'re_open_paren'}|$self->{'re_close_paren'})};
# the next need some explanation
# the following need some explanation
# operand is something consisting of delimited strings and other strings that are not our major tokens
# so it's a (delim string or anything until a token, ['"](start of a delim) or \Z) - this is required part
# then you can have zero or more ocurences of above group, but with one exception - "anything" can not start with a token or ["']
Expand Down Expand Up @@ -518,6 +518,18 @@ sub fsolve {

1;

=head1 ALTERNATIVES
There are some alternative implementations available on the CPAN.
=over 4
=item L<Search::QueryParser> - similar purpose with several differences.
=item Another?
=back
=head1 AUTHORS
Ruslan Zakirov E<lt>ruz@cpan.orgE<gt>, Robert Spier E<lt>rspier@pobox.comE<gt>
Expand Down

0 comments on commit 1341932

Please sign in to comment.