use ;
/// Returns a tuple of ([u16], [u16]) split from a [u32] input
///
/// Takes in:
/// [u32]
///
/// Outputs:
/// A [tuple] of ([u16], [u16])
///
/// # Example
///
/// ```
/// use febits::prim_u32::u32_to_u16;
/// let input = 0xDEADBEEF;
///
/// let test: u32 = 0x1111;
/// println!("{}", test.leading_zeros());
///
/// assert_eq!(u32_to_u16(input), (0xDEAD, 0xBEEF));
/// assert_eq!(u32_to_u16(0x11112222), (0x1111, 0x2222));
/// assert_eq!(u32_to_u16(0x123456), (0x0012, 0x3456));
/// ```
///