(o: IWriteable, v: number)
| 199 | } |
| 200 | |
| 201 | public static writeInt16LE(o: IWriteable, v: number) { |
| 202 | o.writeByte((v >> 0) & 0xff); |
| 203 | o.writeByte((v >> 8) & 0xff); |
| 204 | } |
| 205 | |
| 206 | public static writeInt16BE(o: IWriteable, v: number) { |
| 207 | o.writeByte((v >> 8) & 0xff); |
no test coverage detected