> bitfield-replace and bitfield-replace-same treat the dest / src arguments flipped.
Fixed. That was a hangover from SRFI 60, whose implementation I adopted.
> bit-field-every? is not implemented (set to #f)
Implemented.
> (bits bool ...) is treating the arguments MSB first, while the spec
> says the first argument is bit #0, and so on.
Fixed as a result of fixing list->integer.
> Related to the above, the specs for integer->list, integer->vector,
> list->integer, vector->integer do not clearly state what the correct
> order is. The sample implementation clearly uses MSB
> first in a consistent fashion.
Fixed to use LSB first in both spec and implementation.
A git diff is attached.