Are there plans to implement unpackbits()?
And what are good practices for getting the same result fast while unpackbits() is not implemented?
I'd like to use the resulting bits as Boolean indices into a constant integer array X or do np.nditer(np.nonzero(X)) or whatever is fastest for achieving the same effect.