WordBase<T extends WordBase<T, K>, K extends WordField<NativeType>>.of16s constructor

const WordBase<T extends WordBase<T, K>, K extends WordField<NativeType>>.of16s(
  1. int ls16, [
  2. int upperLs16 = 0,
  3. int lowerMs16 = 0,
  4. int ms16 = 0,
])

Implementation

const WordBase.of16s(int ls16, [int upperLs16 = 0, int lowerMs16 = 0, int ms16 = 0]) : this.of32s((upperLs16 << 16) | (ls16 & _mask16), (ms16 << 16) | (lowerMs16 & _mask16));