| CQL-Parser documentation | Contained in the CQL-Parser distribution. |
CQL::NotNode - represents a NOT node in a CQL parse tree
use CQL::NotNode;
my $node = CQL::NotNode->new( left => $left, right => $right );
CQL::NotNode inherits from CQL::BooleanNode, where you'll find most of the functionality.
| CQL-Parser documentation | Contained in the CQL-Parser distribution. |
package CQL::NotNode; use strict; use warnings; use base qw( CQL::BooleanNode );
sub op { return 'not'; } 1;