
{{alias}}( z )
    Evaluates the identity function for a single-precision complex floating-
    point number.

    Parameters
    ----------
    z: Complex64
        Input value.

    Returns
    -------
    v: Complex64
        Input value.

    Examples
    --------
    > var v = {{alias}}( new {{alias:@stdlib/complex/float32/ctor}}( -1.0, 2.0 ) )
    <Complex64>
    > var re = {{alias:@stdlib/complex/float32/real}}( v )
    -1.0
    > var img = {{alias:@stdlib/complex/float32/imag}}( v )
    2.0

    See Also
    --------

