
{{alias}}( z )
    Rounds each component of a single-precision complex floating-point number
    toward negative infinity.

    Parameters
    ----------
    z: Complex64
        Complex number.

    Returns
    -------
    out: Complex64
        Result.

    Examples
    --------
    > var v = {{alias}}( new {{alias:@stdlib/complex/float32/ctor}}( 5.5, 3.3 ) )
    <Complex64>[ 5.0, 3.0 ]

    See Also
    --------

