Java List Min min(List l)

Here you can find the source of min(List l)

Description

min

License

Open Source License

Declaration

public static double min(List<Double> l) 

Method Source Code

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

import java.util.List;

public class Main {
    public static double min(List<Double> l) {
        double min = Double.MAX_VALUE;
        for (Double d : l)
            if (d < min)
                min = d;/*from   ww w  .j  ava 2 s. c  o m*/
        return min;
    }
}

Related

  1. min(final List aList, final Double aDefalut)
  2. min(List values)
  3. min(List a, List b)
  4. min(List booleans)
  5. min(List data)
  6. min(List list)
  7. min(List values)
  8. min(List runtimeList)
  9. min(List numberList)