Make into bits produce bitstring stream (#13310)

# Description

Fix `into bits` to have consistent behavior when passed a byte stream.

# User-Facing Changes

Previously, it was returning a binary on stream, even though its
input/output types don't describe this possibility. We don't need this
since we have `into binary` anyway.

# Tests + Formatting
Tests added
This commit is contained in:
Devyn Cairns
2024-07-07 06:00:57 -07:00
committed by GitHub
parent 5af8d62666
commit 6ce5530fc2
4 changed files with 46 additions and 3 deletions

View File

@ -1 +1,2 @@
mod bits;
mod bytes;