
{{alias}}( x )
    Decomposes a double-precision floating-point number into integral and
    fractional parts, each having the same type and sign as the input value.

    Parameters
    ----------
    x: number
        Input value.

    Returns
    -------
    out: Array<number>
        Integral and fractional parts.

    Examples
    --------
    > var parts = {{alias}}( 3.14 )
    [ 3.0, 0.14000000000000012 ]
    > parts = {{alias}}( 3.14 )
    [ 3.0, 0.14000000000000012 ]
    > parts = {{alias}}( +0.0 )
    [ +0.0, +0.0 ]
    > parts = {{alias}}( -0.0 )
    [ -0.0, -0.0 ]
    > parts = {{alias}}( {{alias:@stdlib/constants/float64/pinf}} )
    [ Infinity, +0.0 ]
    > parts = {{alias}}( {{alias:@stdlib/constants/float64/ninf}} )
    [ -Infinity, -0.0 ]
    > parts = {{alias}}( NaN )
    [ NaN, NaN ]


{{alias}}.assign( x, out, stride, offset )
    Decomposes a double-precision floating-point number into integral and
    fractional parts, each having the same type and sign as the input value,
    and assigns results to a provided output array.

    Parameters
    ----------
    x: number
        Input value.

    out: Array|TypedArray|Object
        Output array.

    stride: integer
        Output array stride.

    offset: integer
        Output array index offset.

    Returns
    -------
    out: Array|TypedArray|Object
        Integral and fractional parts.

    Examples
    --------
    > var out = new {{alias:@stdlib/array/float64}}( 2 );
    > var parts = {{alias}}.assign( 3.14, out, 1, 0 )
    <Float64Array>[ 3.0, 0.14000000000000012 ]
    > var bool = ( parts === out )
    true

    See Also
    --------
