The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

CQL::NotNode - represents a NOT node in a CQL parse tree

SYNOPSIS

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

DESCRIPTION

CQL::NotNode inherits from CQL::BooleanNode, where you'll find most of the functionality.