hash static method

int hash(
  1. Position position
)
override

The hash code for position.

Implementation

static int hash(Position position) =>
    Object.hash(position.x, position.y, position.optZ, position.optM);