()
| 93 | /// Pass the `mem::size_of` of a type. |
| 94 | #[inline] |
| 95 | pub(super) fn size_of<'a, T: Sized, Num: ArgNumber>() -> ArgReg<'a, Num> { |
| 96 | pass_usize(core::mem::size_of::<T>()) |
| 97 | } |
| 98 | |
| 99 | /// Pass an arbitrary `usize` value. |
| 100 | /// |
nothing calls this directly
no test coverage detected