BinaryNode.java
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
package org.apache.doris.nereids.trees;
/**
* interface for all tree node that have two children.
*/
public interface BinaryNode<
NODE_TYPE extends TreeNode<NODE_TYPE>,
LEFT_CHILD_TYPE extends TreeNode,
RIGHT_CHILD_TYPE extends TreeNode>
extends TreeNode<NODE_TYPE> {
default LEFT_CHILD_TYPE left() {
return (LEFT_CHILD_TYPE) child(0);
}
default RIGHT_CHILD_TYPE right() {
return (RIGHT_CHILD_TYPE) child(1);
}
@Override
default int arity() {
return 2;
}
}