Skip to content
brett hartshorn edited this page Sep 16, 2015 · 1 revision

Gotchas

  • it is not safe to use list.append because in rust that method is defined to take another list/vector and drain its items into list. You should use list.push instead, and read the document for rusts vector class: http://doc.rust-lang.org/std/vec/struct.Vec.html

Sidebar

Clone this wiki locally