追加到 Ceylon 中的序列
Appending to a sequence in Ceylon
如何在 Ceylon 中将单个元素附加到列表中?我尝试了这样的 append
方法,但它只接受另一个列表:
value list = [1,2].append(3); // Integer is not assignable to 'Nothing[]'
显然,我可以通过包装元素来变通:
value list = [1,2].append([3]);
但我觉得应该有更好的方法...
您必须是 Python 程序员。您正在寻找的方法称为 withTrailing
:
value list = [1,2].withTrailing(3);
如何在 Ceylon 中将单个元素附加到列表中?我尝试了这样的 append
方法,但它只接受另一个列表:
value list = [1,2].append(3); // Integer is not assignable to 'Nothing[]'
显然,我可以通过包装元素来变通:
value list = [1,2].append([3]);
但我觉得应该有更好的方法...
您必须是 Python 程序员。您正在寻找的方法称为 withTrailing
:
value list = [1,2].withTrailing(3);