FileDocCategorySizeDatePackage
Util.javaAPI DocExample202Wed Apr 20 15:01:54 BST 2005None

Util

public class Util extends Object

Fields Summary
Constructors Summary
Methods Summary
public static T[]fill(T[] a, T v)
Set all elements of a to the value v; return a.

        for(int i = 0; i < a.length; i++) a[i] = v;
        return a;