Java Boolean And and(boolean a, boolean b)

Here you can find the source of and(boolean a, boolean b)

Description

and

License

Open Source License

Declaration

public static boolean and(boolean a, boolean b) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static boolean and(boolean a, boolean b) {
        return a && b;
    }/*from w  w  w  .  j a  v  a 2  s  . co m*/
}

Related

  1. and(boolean b1, boolean b2)
  2. and(boolean val1, boolean val2)
  3. and(boolean... bools)
  4. and(boolean... bs)