nycJSorg/angular-presentation

View on GitHub
apps/kirjs/src/app/modules/binary/parser/readers/abstract-reader.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type BinaryReaderResult = any;

export abstract class BinaryReader {
  abstract read(bits: number);
  abstract peak(bits: number);

  abstract hasMore(): boolean;
}