GMP provides some [bit-fiddling operations](https://gmplib.org/manual/Integer-Logic-and-Bit-Fiddling) that we don't currently export, e.g. to directly test or set the n-th bit. You can simulate these operations by doing bit operations with `BigInt(1) << n`, but that requires constructing an intermediate `BigInt`. Apparently these operations [show up in some crypto algorithms](https://discourse.julialang.org/t/convert-a-number-to-a-byte-array/111867/14?u=stevengj), so it might be nice to expose a high-level interface.