copyToList method
Implementation
List<List<DMatch>> copyToList() => List.generate(
length,
(i) => List.generate(
ccore.std_VecVecDMatch_length_i(ptr, i),
(j) => DMatch.fromPointer(ccore.std_VecVecDMatch_get_ij(ptr, i, j)),
),
);