summary refs log tree commit diff
path: root/src/libstd/c_str.rs
AgeCommit message (Expand)AuthorLines
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