CQL::AndNode - represents an AND node in a CQL parse tree


CQL-Parser documentation Contained in the CQL-Parser distribution.

Index


Code Index:

NAME

Top

CQL::AndNode - represents an AND node in a CQL parse tree

SYNOPSIS

Top

    use CQL::AndNode;
    my $node = CQL::AndNode->new( left => $left, right => $right );

DESCRIPTION

Top

CQL::AndNode inherits from CQL::BooleanNode, where you will find most of the functionality.


CQL-Parser documentation Contained in the CQL-Parser distribution.

package CQL::AndNode;

use strict;
use warnings;
use base qw( CQL::BooleanNode );

sub op { return 'and'; }

1;