isWhite function

bool isWhite(
  1. int color
)

check if color is white

Implementation

bool isWhite(int color) => ((color) & 0xffffff == 0xffffff);