Java Number Minus minus(int flags, int set)

Here you can find the source of minus(int flags, int set)

Description

minus

License

Open Source License

Declaration

public static final int minus(int flags, int set) 

Method Source Code

//package com.java2s;
/*//from   w  w w . j  a v  a  2 s  .co m
 * This file is part of the Jose Project
 * see http://jose-chess.sourceforge.net/
 * (c) 2002-2006 Peter Sch?fer
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 */

public class Main {
    public static final int minus(int flags, int set) {
        return flags & ~set;
    }
}

Related

  1. minus(boolean a, boolean b)
  2. minus(double a[], double b)
  3. minus(double[] a)
  4. minus(double[] p, double[] q)
  5. minus(double[][] x, double[][] y, double[][] r)
  6. minus(Integer a, Integer b)
  7. minus(Number n)
  8. minus(Number n)
  9. minus(String bigger, String smaller)