Create little-endian binary from x::6 y::10 integer parts

Perhaps using Binary.<<</2.

Something like x = ogf <<< 10 ||| ocf; <<x::little-16>>.

That way you don’t have to pack just for immediate unpacking.

Maybe you can even inline x into the binary, I’m never sure what’s possible within a binary literal, I use them to rarely for creating values.