Array.empty constructor

Array.empty()

Implementation

factory Array.empty() {
  return Array.zeros(shape: Tuple2(0, 0));
}