rust/src/libcollections
Paul Woolcock ac73335f2f implement From<Vec<char>> and From<&'a [char]> for String
Though there are ways to convert a slice or vec of chars into a string,
it would be nice to be able to just do `String::from(['a', 'b', 'c'])`,
so this PR implements `From<Vec<char>>` and `From<&'a [char]>` for
String.
2016-07-27 12:07:49 -04:00
..
btree Add doc for btree_map types 2016-07-20 14:06:25 +02:00
binary_heap.rs std: Stabilize APIs for the 1.11.0 release 2016-07-03 10:49:01 -07:00
borrow.rs Added Default trait for Cow 2016-06-23 07:05:16 +01:00
Cargo.toml rustbuild: Add support for crate tests + doctests 2016-05-12 08:52:20 -07:00
enum_set.rs std: Clean out deprecated APIs 2016-03-12 12:31:13 -08:00
fmt.rs Auto merge of #34544 - 3Hren:issue/xx/reinterpret-format-precision-for-strings, r=alexcrichton 2016-07-21 16:19:54 -07:00
lib.rs std: Stabilize APIs for the 1.11.0 release 2016-07-03 10:49:01 -07:00
linked_list.rs Add examples for LinkedList 2016-07-17 03:19:27 +02:00
macros.rs Use box syntax in vec! macro 2016-02-25 22:08:23 -05:00
range.rs note work still to be done 2016-02-27 02:01:41 -05:00
slice.rs Rewrite/expansion of slice::split doc examples. 2016-07-25 16:59:33 -04:00
str.rs std: Fix up stabilization discrepancies 2016-06-23 14:08:11 -07:00
string.rs implement From<Vec<char>> and From<&'a [char]> for String 2016-07-27 12:07:49 -04:00
vec.rs Fix incorrect 'memory leak' example for Vec::set_len. 2016-07-23 09:08:45 -04:00
vec_deque.rs Update VecDeque documentation to specify direction of index 0 (#34920) 2016-07-22 17:50:54 +05:30