use bitstream_io::{BitWrite, Endianness};
use crate::{util, BitEncode, Result, Untagged};
impl<Ctx, T> BitEncode<Ctx, Untagged> for [T]
where
T: BitEncode<Ctx>,
{
fn encode<W, E>(&self, write: &mut W, ctx: &mut Ctx, _: Untagged) -> Result<()>
where
W: BitWrite,
E: Endianness,
{
util::encode_items::<_, E, _, _>(self.iter(), write, ctx)
}
}
#[cfg(feature = "prepend-tags")]
impl<Ctx, T> BitEncode<Ctx> for [T]
where
T: BitEncode<Ctx>,
{
fn encode<W, E>(&self, write: &mut W, ctx: &mut Ctx, (): ()) -> Result<()>
where
W: BitWrite,
E: Endianness,
{
self.len().encode::<_, E>(write, ctx, ())?;
self.encode::<_, E>(write, ctx, Untagged)
}
}
#[cfg(feature = "alloc")]
#[allow(clippy::wildcard_imports)]
mod decode {
use alloc::{boxed::Box, vec::Vec};
use bitstream_io::BitRead;
use crate::BitDecode;
use super::*;
impl<Ctx, T> BitDecode<Ctx, Untagged> for Box<[T]>
where
T: BitDecode<Ctx>,
{
fn decode<R, E>(read: &mut R, ctx: &mut Ctx, tag: Untagged) -> Result<Self>
where
R: BitRead,
E: Endianness,
{
Vec::decode::<_, E>(read, ctx, tag).map(Into::into)
}
}
impl<Tag, Ctx, T> BitDecode<Ctx, crate::Tag<Tag>> for Box<[T]>
where
T: BitDecode<Ctx>,
Tag: TryInto<usize>,
{
fn decode<R, E>(read: &mut R, ctx: &mut Ctx, tag: crate::Tag<Tag>) -> Result<Self>
where
R: BitRead,
E: Endianness,
{
Vec::decode::<_, E>(read, ctx, tag).map(Into::into)
}
}
#[cfg(feature = "prepend-tags")]
impl<Ctx, T> BitDecode<Ctx> for Box<[T]>
where
T: BitDecode<Ctx>,
{
fn decode<R, E>(read: &mut R, ctx: &mut Ctx, (): ()) -> Result<Self>
where
R: BitRead,
E: Endianness,
{
Vec::decode::<_, E>(read, ctx, ()).map(Into::into)
}
}
test_decode!(Box<[u8]>| crate::Tag(3); [0x01, 0x02, 0x03] => Box::new([1, 2, 3]));
#[cfg(test)]
mod untagged {
use super::*;
test_decode!(Box<[u8]>| Untagged; [0x01, 0x02, 0x03] => Box::new([1, 2, 3]));
}
#[cfg(feature = "prepend-tags")]
test_roundtrip!(Box<[i32]>);
}
test_encode!(&[u8]| Untagged; &[1, 2, 3] => [0x01, 0x02, 0x03]);