Java Number Min Value min(long x, long y)

Here you can find the source of min(long x, long y)

Description

min

License

Apache License

Declaration

public static long min(long x, long y) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static long min(long x, long y) {
        return x <= y ? x : y;
    }/*from w w w  .j  a  v  a  2 s  .  c om*/

    public static int min(int x, int y) {
        return x <= y ? x : y;
    }
}

Related

  1. min(int x, int y)
  2. min(int x, int y)
  3. min(Integer a, Integer b)
  4. min(Integer i1, Integer i2)
  5. min(long m, long n)
  6. min(Number a, Number b)
  7. min(Number n0, Number n1)
  8. min(Number num1, Number num2)
  9. Min(Object in)