Vector.zeros constructor

Vector.zeros(
  1. int n
)

Implementation

Vector.zeros(int n) : _els = List<double>.filled(n, 0.0);