Address6.toString

Writes text representation of this address to an output range.

struct Address6
const
OR
toString
(
OR
)
()
if (
isOutputRange!(OR, const(char)[])
)

Parameters

OR

Type of the output range.

output OR

Output range.

Return Value

Type: OR

output.

Examples

import tanya.container.string : String;
import tanya.range : backInserter;

String actual;

address6("1:2:3:4:5:6:7:8").get.toString(backInserter(actual));
assert(actual == "1:2:3:4:5:6:7:8");

Meta