printNbtStream

Outputs textual representation of Nbt stream into sink or stdout if not provided.

  1. void printNbtStream(R input)
  2. void printNbtStream(R input, Sink sink, ulong numItems, string indent)
    void
    printNbtStream
    (
    string singleIndent = " "
    Sink
    R
    )
    (
    auto ref R input
    ,
    auto ref Sink sink
    ,
    ulong numItems = ulong.max
    ,
    string indent = ""
    )
    if (
    isInputRange!R &&
    is(ElementType!R == ubyte)
    &&
    isOutputRange!(Sink, char)
    )

Meta