@stdlib/array
Version:
Arrays.
72 lines (53 loc) • 1.58 kB
Plain Text
{{alias}}( x, mask )
Returns a new array by applying a mask to a provided input array.
If a mask array element is falsy, the corresponding element in `x` is
included in the output array; otherwise, the corresponding element in `x` is
"masked" and thus excluded from the output array.
Parameters
----------
x: ArrayLikeObject
Input array.
mask: ArrayLikeObject
Mask array.
Returns
-------
out: Array
Output array.
Examples
--------
> var x = [ 1, 2, 3, 4 ];
> var y = {{alias}}( x, [ 0, 1, 0, 1 ] )
[ 1, 3 ]
{{alias}}.assign( x, mask, out, stride, offset )
Applies a mask to a provided input array and assigns unmasked values to
elements in a provided output array.
If a mask array element is falsy, the corresponding element in `x` is
included in the output array; otherwise, the corresponding element in `x` is
"masked" and thus excluded from the output array.
Parameters
----------
x: ArrayLikeObject
Input array.
mask: ArrayLikeObject
Mask array.
out: ArrayLikeObject
Output array.
stride: integer
Output array stride.
offset: integer
Output array offset.
Returns
-------
out: ArrayLikeObject
Output array.
Examples
--------
> var x = [ 1, 2, 3, 4 ];
> var m = [ 0, 1, 0, 1 ];
> var out = [ 0, 0, 0, 0 ];
> var arr = {{alias}}.assign( x, m, out, 2, 0 )
[ 1, 0, 3, 0 ]
> var bool = ( arr === out )
true
See Also
--------