Hacker News new | ask | show | jobs
by leeoniya 866 days ago
nice writeup!

  // After
  export enum Options {
      None = 0, Flag1 = 1 << 0, Flag2 = 1 << 1, Flag3 = 1 << 2, TotalBits = 3,
  }
i would recommend using `const enum` for performance, since it will get inlined.