Java xor xor(boolean o, boolean t)

Here you can find the source of xor(boolean o, boolean t)

Description

xor

License

Open Source License

Declaration

public static boolean xor(boolean o, boolean t) 

Method Source Code

//package com.java2s;
/*/*from   w  ww .  jav a2s  .  c  om*/
 The MIT License (MIT)
    
 Copyright (c) 2017 Wundero
    
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
 in the Software without restriction, including without limitation the rights
 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 copies of the Software, and to permit persons to whom the Software is
 furnished to do so, subject to the following conditions:
    
 The above copyright notice and this permission notice shall be included in all
 copies or substantial portions of the Software.
    
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
 */

public class Main {
    public static boolean xor(boolean o, boolean t) {
        return !xnor(o, t);
    }

    public static boolean xnor(boolean o, boolean t) {
        return (o && t) || (!o && !t);
    }
}

Related

  1. xor(boolean a, boolean b)
  2. xor(boolean a[], boolean b[])
  3. xor(boolean b1, boolean b2)
  4. xor(boolean b1, boolean b2)
  5. xor(boolean val1, boolean val2)
  6. xOr(boolean x, boolean y)
  7. xor(boolean... bools)
  8. xor(boolean[] array)