Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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

import java.util.*;

public class Main {
    public static double[] toDoubleArray(Collection<Double> ds) {
        double[] out = new double[ds.size()];
        int index = 0;
        for (Double d : ds)
            out[index++] = d;
        return out;
    }
}