矩陣 | 拷貝二維數組

/** * MatClone * @param mat */ export let MatClone = <T>(mat: T[][]): T[][] => mat.map(raw => [...raw])
相關文章
相關標籤/搜索