Skip to content

Commit 0ed0309

Browse files
committed
Add anchors
1 parent 0450ae6 commit 0ed0309

File tree

8 files changed

+112
-0
lines changed

8 files changed

+112
-0
lines changed

lib/node_modules/@stdlib/array/float64/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@ var arr = new Float64Array( buf, 0, 4 );
105105

106106
### Properties
107107

108+
<a name="static-prop-bytes-per-element"></a>
109+
108110
#### Float64Array.BYTES_PER_ELEMENT
109111

110112
Number of bytes per view element.
@@ -116,6 +118,8 @@ var nbytes = Float64Array.BYTES_PER_ELEMENT;
116118
// returns 8
117119
```
118120

121+
<a name="static-prop-name"></a>
122+
119123
#### Float64Array.name
120124

121125
[Typed array][mdn-typed-array] constructor name.
@@ -127,6 +131,8 @@ var str = Float64Array.name;
127131
// returns 'Float64Array'
128132
```
129133

134+
<a name="prop-buffer"></a>
135+
130136
#### Float64Array.prototype.buffer
131137

132138
**Read-only** property which returns the [`ArrayBuffer`][mdn-arraybuffer] referenced by the [typed array][mdn-typed-array].
@@ -139,6 +145,8 @@ var buf = arr.buffer;
139145
// returns <ArrayBuffer>
140146
```
141147

148+
<a name="prop-byte-length"></a>
149+
142150
#### Float64Array.prototype.byteLength
143151

144152
**Read-only** property which returns the length (in bytes) of the [typed array][mdn-typed-array].
@@ -151,6 +159,8 @@ var byteLength = arr.byteLength;
151159
// returns 40
152160
```
153161

162+
<a name="prop-byte-offset"></a>
163+
154164
#### Float64Array.prototype.byteOffset
155165

156166
**Read-only** property which returns the offset (in bytes) of the [typed array][mdn-typed-array] from the start of its [`ArrayBuffer`][mdn-arraybuffer].
@@ -163,6 +173,8 @@ var byteOffset = arr.byteOffset;
163173
// returns 0
164174
```
165175

176+
<a name="prop-bytes-per-element"></a>
177+
166178
#### Float64Array.prototype.BYTES_PER_ELEMENT
167179

168180
Number of bytes per view element.
@@ -175,6 +187,8 @@ var nbytes = arr.BYTES_PER_ELEMENT;
175187
// returns 8
176188
```
177189

190+
<a name="prop-length"></a>
191+
178192
#### Float64Array.prototype.length
179193

180194
**Read-only** property which returns the number of view elements.

lib/node_modules/@stdlib/array/int16/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@ var arr = new Int16Array( buf, 0, 4 );
105105

106106
### Properties
107107

108+
<a name="static-prop-bytes-per-element"></a>
109+
108110
#### Int16Array.BYTES_PER_ELEMENT
109111

110112
Number of bytes per view element.
@@ -116,6 +118,8 @@ var nbytes = Int16Array.BYTES_PER_ELEMENT;
116118
// returns 2
117119
```
118120

121+
<a name="static-prop-name"></a>
122+
119123
#### Int16Array.name
120124

121125
[Typed array][mdn-typed-array] constructor name.
@@ -127,6 +131,8 @@ var str = Int16Array.name;
127131
// returns 'Int16Array'
128132
```
129133

134+
<a name="prop-buffer"></a>
135+
130136
#### Int16Array.prototype.buffer
131137

132138
**Read-only** property which returns the [`ArrayBuffer`][mdn-arraybuffer] referenced by the [typed array][mdn-typed-array].
@@ -139,6 +145,8 @@ var buf = arr.buffer;
139145
// returns <ArrayBuffer>
140146
```
141147

148+
<a name="prop-byte-length"></a>
149+
142150
#### Int16Array.prototype.byteLength
143151

144152
**Read-only** property which returns the length (in bytes) of the [typed array][mdn-typed-array].
@@ -151,6 +159,8 @@ var byteLength = arr.byteLength;
151159
// returns 10
152160
```
153161

162+
<a name="prop-byte-offset"></a>
163+
154164
#### Int16Array.prototype.byteOffset
155165

156166
**Read-only** property which returns the offset (in bytes) of the [typed array][mdn-typed-array] from the start of its [`ArrayBuffer`][mdn-arraybuffer].
@@ -163,6 +173,8 @@ var byteOffset = arr.byteOffset;
163173
// returns 0
164174
```
165175

176+
<a name="prop-bytes-per-element"></a>
177+
166178
#### Int16Array.prototype.BYTES_PER_ELEMENT
167179

168180
Number of bytes per view element.
@@ -175,6 +187,8 @@ var nbytes = arr.BYTES_PER_ELEMENT;
175187
// returns 2
176188
```
177189

190+
<a name="prop-length"></a>
191+
178192
#### Int16Array.prototype.length
179193

180194
**Read-only** property which returns the number of view elements.

lib/node_modules/@stdlib/array/int32/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@ var arr = new Int32Array( buf, 0, 4 );
105105

106106
### Properties
107107

108+
<a name="static-prop-bytes-per-element"></a>
109+
108110
#### Int32Array.BYTES_PER_ELEMENT
109111

110112
Number of bytes per view element.
@@ -116,6 +118,8 @@ var nbytes = Int32Array.BYTES_PER_ELEMENT;
116118
// returns 4
117119
```
118120

121+
<a name="static-prop-name"></a>
122+
119123
#### Int32Array.name
120124

121125
[Typed array][mdn-typed-array] constructor name.
@@ -127,6 +131,8 @@ var str = Int32Array.name;
127131
// returns 'Int32Array'
128132
```
129133

134+
<a name="prop-buffer"></a>
135+
130136
#### Int32Array.prototype.buffer
131137

132138
**Read-only** property which returns the [`ArrayBuffer`][mdn-arraybuffer] referenced by the [typed array][mdn-typed-array].
@@ -139,6 +145,8 @@ var buf = arr.buffer;
139145
// returns <ArrayBuffer>
140146
```
141147

148+
<a name="prop-byte-length"></a>
149+
142150
#### Int32Array.prototype.byteLength
143151

144152
**Read-only** property which returns the length (in bytes) of the [typed array][mdn-typed-array].
@@ -151,6 +159,8 @@ var byteLength = arr.byteLength;
151159
// returns 20
152160
```
153161

162+
<a name="prop-byte-offset"></a>
163+
154164
#### Int32Array.prototype.byteOffset
155165

156166
**Read-only** property which returns the offset (in bytes) of the [typed array][mdn-typed-array] from the start of its [`ArrayBuffer`][mdn-arraybuffer].
@@ -163,6 +173,8 @@ var byteOffset = arr.byteOffset;
163173
// returns 0
164174
```
165175

176+
<a name="prop-bytes-per-element"></a>
177+
166178
#### Int32Array.prototype.BYTES_PER_ELEMENT
167179

168180
Number of bytes per view element.
@@ -175,6 +187,8 @@ var nbytes = arr.BYTES_PER_ELEMENT;
175187
// returns 4
176188
```
177189

190+
<a name="prop-length"></a>
191+
178192
#### Int32Array.prototype.length
179193

180194
**Read-only** property which returns the number of view elements.

lib/node_modules/@stdlib/array/int8/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@ var arr = new Int8Array( buf, 0, 4 );
105105

106106
### Properties
107107

108+
<a name="static-prop-bytes-per-element"></a>
109+
108110
#### Int8Array.BYTES_PER_ELEMENT
109111

110112
Number of bytes per view element.
@@ -116,6 +118,8 @@ var nbytes = Int8Array.BYTES_PER_ELEMENT;
116118
// returns 1
117119
```
118120

121+
<a name="static-prop-name"></a>
122+
119123
#### Int8Array.name
120124

121125
[Typed array][mdn-typed-array] constructor name.
@@ -127,6 +131,8 @@ var str = Int8Array.name;
127131
// returns 'Int8Array'
128132
```
129133

134+
<a name="prop-buffer"></a>
135+
130136
#### Int8Array.prototype.buffer
131137

132138
**Read-only** property which returns the [`ArrayBuffer`][mdn-arraybuffer] referenced by the [typed array][mdn-typed-array].
@@ -139,6 +145,8 @@ var buf = arr.buffer;
139145
// returns <ArrayBuffer>
140146
```
141147

148+
<a name="prop-byte-length"></a>
149+
142150
#### Int8Array.prototype.byteLength
143151

144152
**Read-only** property which returns the length (in bytes) of the [typed array][mdn-typed-array].
@@ -151,6 +159,8 @@ var byteLength = arr.byteLength;
151159
// returns 5
152160
```
153161

162+
<a name="prop-byte-offset"></a>
163+
154164
#### Int8Array.prototype.byteOffset
155165

156166
**Read-only** property which returns the offset (in bytes) of the [typed array][mdn-typed-array] from the start of its [`ArrayBuffer`][mdn-arraybuffer].
@@ -163,6 +173,8 @@ var byteOffset = arr.byteOffset;
163173
// returns 0
164174
```
165175

176+
<a name="prop-bytes-per-element"></a>
177+
166178
#### Int8Array.prototype.BYTES_PER_ELEMENT
167179

168180
Number of bytes per view element.
@@ -175,6 +187,8 @@ var nbytes = arr.BYTES_PER_ELEMENT;
175187
// returns 1
176188
```
177189

190+
<a name="prop-length"></a>
191+
178192
#### Int8Array.prototype.length
179193

180194
**Read-only** property which returns the number of view elements.

lib/node_modules/@stdlib/array/uint16/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@ var arr = new Uint16Array( buf, 0, 4 );
105105

106106
### Properties
107107

108+
<a name="static-prop-bytes-per-element"></a>
109+
108110
#### Uint16Array.BYTES_PER_ELEMENT
109111

110112
Number of bytes per view element.
@@ -116,6 +118,8 @@ var nbytes = Uint16Array.BYTES_PER_ELEMENT;
116118
// returns 2
117119
```
118120

121+
<a name="static-prop-name"></a>
122+
119123
#### Uint16Array.name
120124

121125
[Typed array][mdn-typed-array] constructor name.
@@ -127,6 +131,8 @@ var str = Uint16Array.name;
127131
// returns 'Uint16Array'
128132
```
129133

134+
<a name="prop-buffer"></a>
135+
130136
#### Uint16Array.prototype.buffer
131137

132138
**Read-only** property which returns the [`ArrayBuffer`][mdn-arraybuffer] referenced by the [typed array][mdn-typed-array].
@@ -139,6 +145,8 @@ var buf = arr.buffer;
139145
// returns <ArrayBuffer>
140146
```
141147

148+
<a name="prop-byte-length"></a>
149+
142150
#### Uint16Array.prototype.byteLength
143151

144152
**Read-only** property which returns the length (in bytes) of the [typed array][mdn-typed-array].
@@ -151,6 +159,8 @@ var byteLength = arr.byteLength;
151159
// returns 10
152160
```
153161

162+
<a name="prop-byte-offset"></a>
163+
154164
#### Uint16Array.prototype.byteOffset
155165

156166
**Read-only** property which returns the offset (in bytes) of the [typed array][mdn-typed-array] from the start of its [`ArrayBuffer`][mdn-arraybuffer].
@@ -163,6 +173,8 @@ var byteOffset = arr.byteOffset;
163173
// returns 0
164174
```
165175

176+
<a name="prop-bytes-per-element"></a>
177+
166178
#### Uint16Array.prototype.BYTES_PER_ELEMENT
167179

168180
Number of bytes per view element.
@@ -175,6 +187,8 @@ var nbytes = arr.BYTES_PER_ELEMENT;
175187
// returns 2
176188
```
177189

190+
<a name="prop-length"></a>
191+
178192
#### Uint16Array.prototype.length
179193

180194
**Read-only** property which returns the number of view elements.

lib/node_modules/@stdlib/array/uint32/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@ var arr = new Uint32Array( buf, 0, 4 );
105105

106106
### Properties
107107

108+
<a name="static-prop-bytes-per-element"></a>
109+
108110
#### Uint32Array.BYTES_PER_ELEMENT
109111

110112
Number of bytes per view element.
@@ -116,6 +118,8 @@ var nbytes = Uint32Array.BYTES_PER_ELEMENT;
116118
// returns 4
117119
```
118120

121+
<a name="static-prop-name"></a>
122+
119123
#### Uint32Array.name
120124

121125
[Typed array][mdn-typed-array] constructor name.
@@ -127,6 +131,8 @@ var str = Uint32Array.name;
127131
// returns 'Uint32Array'
128132
```
129133

134+
<a name="prop-buffer"></a>
135+
130136
#### Uint32Array.prototype.buffer
131137

132138
**Read-only** property which returns the [`ArrayBuffer`][mdn-arraybuffer] referenced by the [typed array][mdn-typed-array].
@@ -139,6 +145,8 @@ var buf = arr.buffer;
139145
// returns <ArrayBuffer>
140146
```
141147

148+
<a name="prop-byte-length"></a>
149+
142150
#### Uint32Array.prototype.byteLength
143151

144152
**Read-only** property which returns the length (in bytes) of the [typed array][mdn-typed-array].
@@ -151,6 +159,8 @@ var byteLength = arr.byteLength;
151159
// returns 20
152160
```
153161

162+
<a name="prop-byte-offset"></a>
163+
154164
#### Uint32Array.prototype.byteOffset
155165

156166
**Read-only** property which returns the offset (in bytes) of the [typed array][mdn-typed-array] from the start of its [`ArrayBuffer`][mdn-arraybuffer].
@@ -163,6 +173,8 @@ var byteOffset = arr.byteOffset;
163173
// returns 0
164174
```
165175

176+
<a name="prop-bytes-per-element"></a>
177+
166178
#### Uint32Array.prototype.BYTES_PER_ELEMENT
167179

168180
Number of bytes per view element.
@@ -175,6 +187,8 @@ var nbytes = arr.BYTES_PER_ELEMENT;
175187
// returns 4
176188
```
177189

190+
<a name="prop-length"></a>
191+
178192
#### Uint32Array.prototype.length
179193

180194
**Read-only** property which returns the number of view elements.

0 commit comments

Comments
 (0)