checkParams.d.ts 318 B

12345678
  1. /**
  2. * @description Check if access is out of bounds.
  3. * @param pos The position want to access.
  4. * @param lower The lower bound.
  5. * @param upper The upper bound.
  6. * @return Boolean about if access is out of bounds.
  7. */
  8. export declare function checkWithinAccessParams(pos: number, lower: number, upper: number): void;