summary refs log tree commit diff
path: root/src/libstd/fmt/rt.rs
AgeCommit message (Collapse)AuthorLines
2014-03-28Convert most code to new inner attribute syntax.Brian Anderson-2/+2
Closes #2569
2014-01-03Remove std::eitherAlex Crichton-2/+6
2013-12-11Make 'self lifetime illegal.Erik Price-13/+13
Also remove all instances of 'self within the codebase. This fixes #10889.
2013-10-17Register new snapshotsAlex Crichton-11/+0
2013-10-15Build a few extra features into format! parsingAlex Crichton-0/+15
* Allow named parameters to specify width/precision * Intepret the format string '0$' as "width is the 0th argument" instead of thinking the lone '0' was the sign-aware-zero-padding flag. To get both you'd need to put '00$' which makes more sense if you want both to happen. Closes #9669
2013-08-12Correct the padding on integer types for formattingAlex Crichton-1/+1
2013-08-07Add initial support for a new formatting syntaxAlex Crichton-0/+62
The new macro is available under the name ifmt! (only an intermediate name)