| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-08-19 | auto merge of #8564 : alexcrichton/rust/ifmt+++, r=graydon | bors | -4/+58 | |
| See discussion in #8489, but this selects option 3 by adding a `Default` trait to be implemented by various basic types. Once this makes it into a snapshot I think it's about time to start overhauling all current use-cases of `fmt!` to move towards `ifmt!`. The goal is to replace `%X` with `{}` in 90% of situations, and this commit should enable that. | ||||
| 2013-08-16 | Delegate `{}` to Default instead of Poly | Alex Crichton | -1/+55 | |
| By using a separate trait this is overridable on a per-type basis and makes room for the possibility of even more arguments passed in for the future. | ||||
| 2013-08-16 | Implement `{:s}` for ~str and @str as well | Alex Crichton | -3/+3 | |
| 2013-08-16 | doc: correct spelling in documentation. | Huon Wilson | -2/+2 | |
| 2013-08-15 | Fix a typo in the ifmt dox | Alex Crichton | -1/+1 | |
| 2013-08-13 | Add `f` formats to `ifmt!` | Alex Crichton | -1/+33 | |
| Currently the work just the same as the old `extfmt` versions | ||||
| 2013-08-12 | Explain what ifmt! is all about | Alex Crichton | -0/+301 | |
| 2013-08-12 | Correct the padding on integer types for formatting | Alex Crichton | -43/+63 | |
| 2013-08-12 | Define integer formats for all widths | Alex Crichton | -37/+56 | |
| Closes #1653 | ||||
| 2013-08-12 | Implement formatting arguments for strings and integers | Alex Crichton | -22/+145 | |
| Closes #1651 | ||||
| 2013-08-07 | Add initial support for a new formatting syntax | Alex Crichton | -0/+1326 | |
| The new macro is available under the name ifmt! (only an intermediate name) | ||||
