
{{alias}}( x )
    Evaluates the identity function for an unsigned 32-bit integer `x`.

    Parameters
    ----------
    x: integer
        Input value.

    Returns
    -------
    y: integer
        Input value.

    Examples
    --------
    > var y = {{alias}}( 1 )
    1
    > y = {{alias}}( 2 )
    2
    > y = {{alias}}( 0 )
    0
    > y = {{alias}}( 4294967295 )
    4294967295

    See Also
    --------

