All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jsimpledb.parse.expr.BitwiseXorParser Maven / Gradle / Ivy

The newest version!

/*
 * Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
 */

package org.jsimpledb.parse.expr;

/**
 * Parses bit-wise XOR expressions of the form {@code x ^ y}. Also supports {@link java.util.Set} symmetric difference.
 */
public class BitwiseXorParser extends BinaryExprParser {

    public static final BitwiseXorParser INSTANCE = new BitwiseXorParser();

    public BitwiseXorParser() {
        super(BitwiseAndParser.INSTANCE, Op.XOR);
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy