Java List Min min(List list)

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

Description

min

License

Apache License

Declaration

public static double min(List<Double> list) 

Method Source Code

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

import java.util.*;

public class Main {
    public static double min(List<Double> list) {
        Collections.sort(list);//from   w  w w . j  a  va 2  s.  c  o m
        return list.get(0);
    }
}

Related

  1. min(List values)
  2. min(List a, List b)
  3. min(List booleans)
  4. min(List data)
  5. min(List l)
  6. min(List values)
  7. min(List runtimeList)
  8. min(List numberList)
  9. min(List numbers)