goRight method

A1Partial goRight(
  1. int count
)

adjust A1PArtial right by count

Implementation

A1Partial goRight(int count) {
  if (column == null) return this;
  return vectorCopyWith(
      column: (A1.maxColumns - count) < column!
          ? A1.maxColumns
          : column! + count);
}