The OpenD Programming Language

YearMonth.toISOExtString

struct YearMonth
const scope
void
toISOExtString
(
W
)
(
scope ref W w
)
if (
isOutputRange!(W, char)
)

Examples

auto ym = YearMonth(1999, Month.jan);
assert(ym.toISOExtString == "1999-01");

Meta