tmp/tmpmaxgno96/{from.md → to.md}
RENAMED
|
@@ -15,11 +15,11 @@ template<class T, class Context,
|
|
| 15 |
{ cf.format(t, fc) } -> same_as<typename Context::iterator>;
|
| 16 |
};
|
| 17 |
|
| 18 |
template<class T, class charT>
|
| 19 |
concept formattable =
|
| 20 |
-
formattable-with<remove_reference_t<T>, basic_format_context<fmt-iter-for<charT>>>;
|
| 21 |
```
|
| 22 |
|
| 23 |
A type `T` and a character type `charT` model `formattable` if
|
| 24 |
`formatter<remove_cvref_t<T>, charT>` meets the requirements
|
| 25 |
[[formatter.requirements]] and, if `remove_reference_t<T>` is
|
|
|
|
| 15 |
{ cf.format(t, fc) } -> same_as<typename Context::iterator>;
|
| 16 |
};
|
| 17 |
|
| 18 |
template<class T, class charT>
|
| 19 |
concept formattable =
|
| 20 |
+
formattable-with<remove_reference_t<T>, basic_format_context<fmt-iter-for<charT>, charT>>;
|
| 21 |
```
|
| 22 |
|
| 23 |
A type `T` and a character type `charT` model `formattable` if
|
| 24 |
`formatter<remove_cvref_t<T>, charT>` meets the requirements
|
| 25 |
[[formatter.requirements]] and, if `remove_reference_t<T>` is
|