newArray static method

List<MathComplex> newArray(
  1. int len
)

Implementation

static List<MathComplex> newArray( int len ){
	List<MathComplex> a = List.filled( len, MathComplex() );
	for( int i = 0; i < len; i++ ){
		a[i] = MathComplex();
	}
	return a;
}