//! Implementing `Encode` and `RefEncode` for `NSUInteger`.
//!
//! Note that in this case `NSUInteger` could actually just be a type alias
//! for `usize`, and that's already available under `objc2::ffi::NSUInteger`.
use ;
// SAFETY: `NSUInteger` has the same `repr` as `usize`.
unsafe
// SAFETY: `&NSUInteger` has the same representation as `&usize`.
unsafe