summary refs log tree commit diff
path: root/src/libsyntax/owned_slice.rs
AgeCommit message (Collapse)AuthorLines
2014-03-30Rename `from_iterator` to `from_iter` for consistency.Brian Anderson-1/+1
2014-03-29Register new snapshotFlavio Percoco-17/+0
2014-03-27serialize: use ResultSean McArthur-0/+20
All of Decoder and Encoder's methods now return a Result. Encodable.encode() and Decodable.decode() return a Result as well. fixes #12292
2014-03-25Changed `iter::Extendable` and `iter::FromIterator` to take a `Iterator` by ↵Marvin Löbel-1/+1
value
2014-03-23use TotalEq for HashMapDaniel Micay-0/+2
Closes #5283
2014-03-22syntax: add the OwnedSlice vector wrapper.Huon Wilson-0/+142
This is a stand-in until we have a saner `~[T]` type (i.e. a proper owned slice). It's a library version of what `~[T]` will be, i.e. an owned pointer and a length.