vulkan-int 0.5.4

empowering everyone to clamp integers in a memey way
Documentation
use 
    crate::
        VulkanInt;

use
    std::
        ops::
            Deref;

#[
    test
]

fn below() {
    assert_eq!(
        *VulkanInt
            ::new(
                -1488
            ),
        
        -54
    );
}

#[
    test
]

fn r#in() {
    assert_eq!(
        *VulkanInt
            ::new(
                -1488
            ),
        
        27
    );
}

#[
    test
]

fn over() {
    assert_eq!(
        *VulkanInt
            ::new(
                -1488
            ),
        
        54
    );
}