skip method

Printer<T> skip(
  1. int count
)

Skips all but the first count characters.

Implementation

Printer<T> skip(int count) => SkipPrinter<T>(this, count);