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 int[] toIntArray(Collection<Integer> is) {
        int[] out = new int[is.size()];
        int index = 0;
        for (Integer i : is)
            out[index++] = i;
        return out;
    }
}