output.
import tanya.container.string : String; import tanya.range : backInserter; const dottedDecimal = "192.168.0.1"; String actual; const address = address4(dottedDecimal); address.get.toString(backInserter(actual)); assert(actual == dottedDecimal);
Writes this IPv4 address in dotted-decimal notation.