a util like offsetOf would be useful so I can remove my current hack.
@NeKzor What is your current hack and what should offsetOf do? I assume it's something like this?
const codec = new SizedStruct({ byte: u8, word: u16 });
console.log(offsetOf(codec)) // Logs `{ aligned: 4, packed: 3 }`
I better not post my hack because I implemented it incorrectly lol
It would get the offset of a field inside a struct inspired by C++ and Rust. Something like this:
offsetOf({ byte: u8, word: u32le }, 'word'); // 4
offsetOfPacked({ byte: u8, word: u32le }, 'word'); // 1
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too