Java Number Min Value min(long m, long n)

Here you can find the source of min(long m, long n)

Description

min

License

Open Source License

Declaration

public static long min(long m, long n) 

Method Source Code

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

public class Main {
    public static long min(long m, long n) {
        return m <= n ? m : n;
    }//  www.jav a2 s . c  o m
}

Related

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