📜  dart 固定长度列表 - Dart 代码示例

📅  最后修改于: 2022-03-11 14:48:02.406000             🧑  作者: Mango

代码示例1
You can ensure that tempOutput is not a fixed-length list by initializing it as

var tempOutput = new List.from(input);

thereby declaring tempOutput to be a mutable copy of input.