summary refs log tree commit diff
path: root/src/libstd/c_str.rs
AgeCommit message (Expand)AuthorLines
2014-01-07stdtest: Fix all leaked trait importsAlex Crichton-4/+3
2013-12-23std: Fix all code examplesAlex Crichton-3/+7
2013-12-20std: silence warnings when compiling test.Huon Wilson-2/+1
2013-12-19std::str: replace .as_imm_buf with .as_ptr.Huon Wilson-8/+7
2013-12-19std::vec: remove .as_muf_buf, replaced by .as_mut_ptr & .len.Huon Wilson-6/+5
2013-12-19std::vec: remove .as_imm_buf, replaced by .as_ptr & .len.Huon Wilson-9/+8
2013-12-15std::vec: convert to(_mut)_ptr to as_... methods on &[] and &mut [].Huon Wilson-1/+1
2013-12-15std::vec: remove unnecessary count parameter on {bytes,Huon Wilson-1/+1
2013-12-11Make 'self lifetime illegal.Erik Price-5/+5
2013-12-04std::str: s/from_utf8_slice/from_utf8/, to make the basic case shorter.Huon Wilson-1/+1
2013-11-26libstd: Remove all non-`proc` uses of `do` from libstdPatrick Walton-54/+42
2013-11-19libstd: Change all uses of `&fn(A)->B` over to `|A|->B` in libstdPatrick Walton-10/+10
2013-11-11Remove #[fixed_stack_segment] and #[rust_stack]Alex Crichton-8/+3
2013-11-04docs: Replace std::iterator with std::iter.Huon Wilson-1/+1
2013-10-24Remove IoFactoryObject for ~IoFactoryAlex Crichton-1/+3
2013-10-24Remove rt::io::supportAlex Crichton-0/+43
2013-10-22Drop the '2' suffix from logging macrosAlex Crichton-4/+4
2013-09-30std: Remove usage of fmt!Alex Crichton-4/+4
2013-09-26std: simplify vec.with_c_strErick Tryzelaar-28/+20
2013-09-26std: add micro optimization to vec.with_c_str_uncheckedErick Tryzelaar-0/+47
2013-09-26std: Up vec.with_c_str's stack buffer to 128Erick Tryzelaar-1/+1
2013-09-26std: Remove an unnecessary comment from c_strErick Tryzelaar-3/+0
2013-09-26std: Micro-optimize vec.with_c_str for short vectorsErick Tryzelaar-14/+52
2013-09-26std: Add benchmarks to c_strErick Tryzelaar-0/+103
2013-09-26std: implement Container for CStringErick Tryzelaar-2/+10
2013-09-25rustdoc: Change all code-blocks with a scriptAlex Crichton-4/+4
2013-09-20auto merge of #9276 : alexcrichton/rust/dox, r=brsonbors-0/+52
2013-09-18Register new snapshotsAlex Crichton-3/+1
2013-09-17Document a few undocumented modules in libstdAlex Crichton-0/+52
2013-09-16switch Drop to `&mut self`Daniel Micay-1/+1
2013-09-15c_str: Add new method .as_str() -> Option<&str>Kevin Ballard-3/+74
2013-09-09rename `std::iterator` to `std::iter`Daniel Micay-2/+2
2013-09-04Added explicit pub to several conditions. Enables completion of #6009.Felix S. Klock II-3/+3
2013-09-03Fixes #8881. condition! imports parent's pub identifiersjmgrosen-0/+2
2013-08-27Remove offset_inbounds for an unsafe offset functionAlex Crichton-2/+2
2013-08-22Enabled unit tests in std and extra.Vadim Chugunov-2/+0
2013-08-19Add externfn macro and correctly label fixed_stack_segmentsNiko Matsakis-0/+8
2013-08-15Make CString.iter() publicKevin Ballard-1/+1
2013-08-15Add ToCStr method .with_c_str()Kevin Ballard-0/+23
2013-08-15Check for interior nulls in .to_c_str()Kevin Ballard-12/+99
2013-08-14Clarify docs on CString.unwrap()Kevin Ballard-0/+1
2013-08-07std: fix a bad type cast for in str.to_c_str()Erick Tryzelaar-1/+1
2013-08-07std: Make CString::new unsafe b/c it can mutate a *T ptrErick Tryzelaar-2/+2
2013-08-07std: remove unnecessary test from c_str.drop and use safer transmuteErick Tryzelaar-2/+2
2013-08-07std: Fix c_str.iter() and add testErick Tryzelaar-3/+20
2013-08-05std: c_str should use regions on methodsErick Tryzelaar-3/+3
2013-08-04std: Update the c_str docs, and support CString not owning the pointerErick Tryzelaar-138/+63
2013-08-04std: replace str::as_c_str with std::c_strErick Tryzelaar-0/+291