add #[hdl] let destructuring #17

Merged
programmerjake merged 2 commits from programmerjake/fayalite:add-let-destructuring into master 2025-02-11 07:07:26 +00:00
Showing only changes of commit 209d5b5fe1 - Show all commits

View file

@ -567,12 +567,12 @@ impl_prim_int!(i64, SInt<64>);
impl_prim_int!(i128, SInt<128>); impl_prim_int!(i128, SInt<128>);
impl_prim_int!( impl_prim_int!(
/// for portability reasons, [`usize`] always translates to [`UInt<64>`] /// for portability reasons, [`usize`] always translates to [`UInt<64>`][type@UInt]
usize, UInt<64> usize, UInt<64>
); );
impl_prim_int!( impl_prim_int!(
/// for portability reasons, [`isize`] always translates to [`SInt<64>`] /// for portability reasons, [`isize`] always translates to [`SInt<64>`][type@SInt]
isize, SInt<64> isize, SInt<64>
); );