alignDown method

int alignDown(
  1. int align
)

Pow2 only

Implementation

int alignDown(int align) => (this & -align);