(o: IWriteable, v: number)
| 194 | } |
| 195 | |
| 196 | public static writeUInt16LE(o: IWriteable, v: number) { |
| 197 | o.writeByte((v >> 0) & 0xff); |
| 198 | o.writeByte((v >> 8) & 0xff); |
| 199 | } |
| 200 | |
| 201 | public static writeInt16LE(o: IWriteable, v: number) { |
| 202 | o.writeByte((v >> 0) & 0xff); |
no test coverage detected