为什么LinkedList可变迭代器没有`remove_next`方法?

时间:2015-04-14 10:52:35

标签: rust

我希望O(1) Vec中的节点被{{1}}删除。{{1}}或其他节点不能删除。

1 个答案:

答案 0 :(得分:3)

为什么不存在remove_next方法的最可能原因是Rust团队正在评估游标作为替代方法:

#[inline]
#[unstable(feature = "collections",
           reason = "this is probably better handled by a cursor type -- we'll see")]

[Source]