Vendor dependencies

This commit is contained in:
2026-08-01 16:11:49 +03:00
parent 7f139a0241
commit 6b5e7f0f8b
29706 changed files with 9575646 additions and 0 deletions
@@ -0,0 +1,16 @@
# Bit-Slice to Bit-Array Conversion Error
This error is produced when an `&BitSlice` view is unable to be recast as a
`&BitArray` view with the same parameters.
Unlike ordinary scalars and arrays, where arrays are never aligned more
stringently than their components, `BitSlice` is aligned to an individual bit
while `BitArray` is aligned to its `A` storage type.
This is produced whenever a `&BitSlice` view is not exactly as long as the
destination `&BitArray` view is, or does not also begin at the zeroth bit in an
`A::Store` element.
## Original
[`array::TryFromSliceError`](core::array::TryFromSliceError)