
{{alias}}( x[, options] )
    Counts the number of truthy elements along one or more ndarray dimensions.

    Parameters
    ----------
    x: ndarray
        Input ndarray.

    options: Object (optional)
        Function options.

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

    options.keepdims: boolean (optional)
        Boolean indicating whether the reduced dimensions should be included in
        the returned ndarray as singleton dimensions. Default: false.

    Returns
    -------
    out: ndarray
        Output ndarray. When performing a reduction over all elements, the
        function returns a zero-dimensional ndarray containing the result.

    Examples
    --------
    > var x = {{alias:@stdlib/ndarray/array}}( [ [ 1.0, 1.0 ], [ 0.0, 1.0 ] ] );
    > var y = {{alias}}( x )
    <ndarray>
    > y.get()
    3
    > y = {{alias}}( x, { 'keepdims': true } )
    <ndarray>[ [ 3 ] ]


{{alias}}.assign( x, y[, options] )
    Counts the number of truthy elements along one or more ndarray dimensions
    and assigns the results to a provided output ndarray.

    Parameters
    ----------
    x: ndarray
        Input ndarray.

    y: ndarray
        Output ndarray. The output shape must match the shape of the non-reduced
        dimensions of the input ndarray.

    options: Object (optional)
        Function options.

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

    Returns
    -------
    y: ndarray
        Output ndarray.

    Examples
    --------
    > var x = {{alias:@stdlib/ndarray/array}}( [ [ 1.0, 1.0 ], [ 0.0, 1.0 ] ] );
    > var y = {{alias:@stdlib/ndarray/from-scalar}}( 0, { 'dtype': 'int32' } );
    > var out = {{alias}}.assign( x, y )
    <ndarray>[ 3 ]
    > var bool = ( out === y )
    true

    See Also
    --------

