skip method

dynamic skip(
  1. int length
)

Implementation

skip( int length ) {

	this.offset += length;

}