mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 06:30:28 +03:00
12 lines
295 B
Text
12 lines
295 B
Text
Deprecate std.format : formatElement
|
|
|
|
`formatElement` from `std.format` has been accidentally made public and
|
|
will be removed from public view in 2.107.0.
|
|
|
|
Please use instead of `formatElement(sink, value, fmt)`:
|
|
|
|
```
|
|
import std.range : only;
|
|
|
|
sink.put(format!("%("~fmt~"%)")(only(value)));
|
|
```
|