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

    Parameters
    ----------
    z: Complex128
        Input value.

    Returns
    -------
    v: Complex128
        Input value.

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

    See Also
    --------

