(t: &mut T)
| 215 | |
| 216 | #[inline] |
| 217 | pub(super) fn by_mut<T: Sized, Num: ArgNumber>(t: &mut T) -> ArgReg<'_, Num> { |
| 218 | raw_arg(as_mut_ptr(t).cast()) |
| 219 | } |
| 220 | |
| 221 | /// Convert an optional mutable reference into a `usize` for passing to a |
| 222 | /// syscall. |
no test coverage detected