如题, 类似 Array::make 这样的方法怎么定义呢?
let arr = Array::make(5, 0)
找到了, 如下
func Array::make[T](len : Int, elem : T) -> Array[T]