
{{alias}}( table, idtypes, odtypes[, options] )
    Returns function for applying a strided function to an ndarray.

    Parameters
    ----------
    table: Object
        Dispatch table containing strided functions. The table object must have
        the following property:

        - default: default strided function to invoke when provided ndarrays
        have data types which do not have a corresponding specialized
        implementation.

        The table may having the following additional properties:

        - types: one-dimensional list of ndarray data types describing
        specialized output ndarray argument signatures.
        - fcns: list of strided functions which are specific to specialized
        output ndarray argument signatures.

        A strided function should have the following signature:

            f( arrays )

        where

        - arrays: array containing an output ndarray, followed by any additional
        ndarray arguments.

    idtypes: Array<Array<string|DataType>>
        List containing lists of supported input data types for each input
        ndarray argument.

    odtypes: Array<string|DataType>
        List of supported output data types.

    options: Object (optional)
        Function options.

    options.strictTraversalOrder: boolean (optional)
        Boolean specifying whether the order of element traversal must match the
        memory layout order of an output ndarray.

    Returns
    -------
    fcn: Function
        Function for applying a strided function to ndarrays.

    Examples
    --------
    > var idt = [ 'float64', 'float32', 'generic' ];
    > var odt = [ 'float64', 'float32', 'generic' ];
    > var t = { 'default': {{alias:@stdlib/blas/ext/base/ndarray/gsorthp}} };
    > var f = {{alias}}( t, [ idt ], odt );

fcn( out[, ...args][, options] )
    Applies a strided function and assign results to a provided output ndarray.

    Parameters
    ----------
    out: ndarray
        Output array.

    args: ...ndarray (optional)
        Additional ndarray arguments.

    options: Object (optional)
        Function options.

    options.dims: Array<integer> (optional)
        List of dimensions over which to perform operation. If not provided, the
        function performs the operation over all elements in a provided output
        ndarray.

    Returns
    -------
    out: ndarray
        Output array.

    Examples
    --------
    > var idt = [ 'float64', 'float32', 'generic' ];
    > var odt = [ 'float64', 'float32', 'generic' ];
    > var t = { 'default': {{alias:@stdlib/blas/ext/base/ndarray/gsorthp}} };
    > var f = {{alias}}( t, [ idt ], odt );
    > var buf = [ -1.0, 2.0, -3.0, -4.0 ];
    > var dt = 'generic';
    > var sh = [ buf.length ];
    > var sx = [ 1 ];
    > var ox = 0;
    > var ord = 'row-major';
    > var x = new {{alias:@stdlib/ndarray/ctor}}( dt, buf, sh, sx, ox, ord );
    > var o = {{alias:@stdlib/ndarray/from-scalar}}( 1.0 );
    > var out = f( x, o )
    <ndarray>
    > var bool = ( out === x )
    true
    > {{alias:@stdlib/ndarray/to-array}}( x )
    [ -4.0, -3.0, -1.0, 2.0 ]

    See Also
    --------
