read16BitValue static method

int read16BitValue(
  1. List stream
)

Implementation

static int read16BitValue(List stream){
   return (nextByte(stream)! << 24)
       | (nextByte(stream)! << 16)
       | (nextByte(stream)! << 8)
       | nextByte(stream)!;
}