You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: base/count-same-value/README.md
+6-4
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ limitations under the License.
20
20
21
21
# countSameValue
22
22
23
-
> Count the number of elements that are equal to a given value in an array.
23
+
> Count the number of elements in an array that are equal to a specified value.
24
24
25
25
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
26
26
@@ -42,7 +42,7 @@ var countSameValue = require( '@stdlib/array/base/count-same-value' );
42
42
43
43
#### countSameValue( x, value )
44
44
45
-
Counts the number of elements that are equal to a given value in an array.
45
+
Counts the number of elements in an array that are equal to a specified value.
46
46
47
47
```javascript
48
48
var x = [ 0, 1, 0, 1, 2 ];
@@ -72,10 +72,12 @@ var out = countSameValue( x, 1 );
Copy file name to clipboardexpand all lines: mskreject/README.md
+12
Original file line number
Diff line number
Diff line change
@@ -95,6 +95,12 @@ console.log( y );
95
95
96
96
<sectionclass="related">
97
97
98
+
* * *
99
+
100
+
## See Also
101
+
102
+
- <spanclass="package-name">[`@stdlib/array/mskfilter`][@stdlib/array/mskfilter]</span><spanclass="delimiter">: </span><spanclass="description">apply a mask to a provided input array.</span>
Copy file name to clipboardexpand all lines: safe-casts/README.md
+3
Original file line number
Diff line number
Diff line change
@@ -128,6 +128,7 @@ for ( i = 0; i < DTYPES.length; i++ ) {
128
128
- <spanclass="package-name">[`@stdlib/array/convert`][@stdlib/array/convert]</span><spanclass="delimiter">: </span><spanclass="description">convert an array to an array of a different data type.</span>
129
129
- <spanclass="package-name">[`@stdlib/array/convert-same`][@stdlib/array/convert-same]</span><spanclass="delimiter">: </span><spanclass="description">convert an array to the same data type as a second input array.</span>
130
130
- <spanclass="package-name">[`@stdlib/array/dtypes`][@stdlib/array/dtypes]</span><spanclass="delimiter">: </span><spanclass="description">list of array data types.</span>
131
+
- <spanclass="package-name">[`@stdlib/array/mostly-safe-casts`][@stdlib/array/mostly-safe-casts]</span><spanclass="delimiter">: </span><spanclass="description">return a list of array data types to which a provided array data type can be safely cast and, for floating-point data types, can be downcast.</span>
131
132
- <spanclass="package-name">[`@stdlib/array/same-kind-casts`][@stdlib/array/same-kind-casts]</span><spanclass="delimiter">: </span><spanclass="description">return a list of array data types to which a provided array data type can be safely cast or cast within the same kind.</span>
132
133
- <spanclass="package-name">[`@stdlib/ndarray/safe-casts`][@stdlib/ndarray/safe-casts]</span><spanclass="delimiter">: </span><spanclass="description">return a list of ndarray data types to which a provided ndarray data type can be safely cast.</span>
133
134
@@ -147,6 +148,8 @@ for ( i = 0; i < DTYPES.length; i++ ) {
0 commit comments