skipLast method

Printer<T> skipLast(
  1. int count
)

Skips all but the last count characters.

Implementation

Printer<T> skipLast(int count) => SkipLastPrinter<T>(this, count);