Skip to content

Commit 2b7294c

Browse files
committed
docs: remove unsupported options
1 parent a625e10 commit 2b7294c

File tree

15 files changed

+0
-379
lines changed

15 files changed

+0
-379
lines changed

lib/node_modules/@stdlib/random/array/arcsine/docs/repl.txt

-23
Original file line numberDiff line numberDiff line change
@@ -17,29 +17,6 @@
1717
options: Object (optional)
1818
Options.
1919

20-
options.prng: Function (optional)
21-
Pseudorandom number generator (PRNG) for generating uniformly
22-
distributed pseudorandom numbers on the interval `[0,1)`. If provided,
23-
the `state` and `seed` options are ignored. In order to seed the
24-
returned pseudorandom number generator, one must seed the provided
25-
`prng` (assuming the provided `prng` is seedable).
26-
27-
options.seed: integer|ArrayLikeObject<integer> (optional)
28-
Pseudorandom number generator seed. The seed may be either a positive
29-
unsigned 32-bit integer or, for arbitrary length seeds, an array-like
30-
object containing unsigned 32-bit integers.
31-
32-
options.state: Uint32Array (optional)
33-
Pseudorandom number generator state. If provided, the `seed` option is
34-
ignored.
35-
36-
options.copy: boolean (optional)
37-
Boolean indicating whether to copy a provided pseudorandom number
38-
generator state. Setting this option to `false` allows sharing state
39-
between two or more pseudorandom number generators. Setting this option
40-
to `true` ensures that a returned generator has exclusive control over
41-
its internal state. Default: true.
42-
4320
options.dtype: string (optional)
4421
Output array data type. Default: 'float64'.
4522

lib/node_modules/@stdlib/random/array/beta/docs/repl.txt

-23
Original file line numberDiff line numberDiff line change
@@ -17,29 +17,6 @@
1717
options: Object (optional)
1818
Options.
1919

20-
options.prng: Function (optional)
21-
Pseudorandom number generator (PRNG) for generating uniformly
22-
distributed pseudorandom numbers on the interval `[0,1)`. If provided,
23-
the `state` and `seed` options are ignored. In order to seed the
24-
returned pseudorandom number generator, one must seed the provided
25-
`prng` (assuming the provided `prng` is seedable).
26-
27-
options.seed: integer|ArrayLikeObject<integer> (optional)
28-
Pseudorandom number generator seed. The seed may be either a positive
29-
unsigned 32-bit integer or, for arbitrary length seeds, an array-like
30-
object containing unsigned 32-bit integers.
31-
32-
options.state: Uint32Array (optional)
33-
Pseudorandom number generator state. If provided, the `seed` option is
34-
ignored.
35-
36-
options.copy: boolean (optional)
37-
Boolean indicating whether to copy a provided pseudorandom number
38-
generator state. Setting this option to `false` allows sharing state
39-
between two or more pseudorandom number generators. Setting this option
40-
to `true` ensures that a returned generator has exclusive control over
41-
its internal state. Default: true.
42-
4320
options.dtype: string (optional)
4421
Output array data type. Default: 'float64'.
4522

lib/node_modules/@stdlib/random/array/betaprime/docs/repl.txt

-23
Original file line numberDiff line numberDiff line change
@@ -17,29 +17,6 @@
1717
options: Object (optional)
1818
Options.
1919

20-
options.prng: Function (optional)
21-
Pseudorandom number generator (PRNG) for generating uniformly
22-
distributed pseudorandom numbers on the interval `[0,1)`. If provided,
23-
the `state` and `seed` options are ignored. In order to seed the
24-
returned pseudorandom number generator, one must seed the provided
25-
`prng` (assuming the provided `prng` is seedable).
26-
27-
options.seed: integer|ArrayLikeObject<integer> (optional)
28-
Pseudorandom number generator seed. The seed may be either a positive
29-
unsigned 32-bit integer or, for arbitrary length seeds, an array-like
30-
object containing unsigned 32-bit integers.
31-
32-
options.state: Uint32Array (optional)
33-
Pseudorandom number generator state. If provided, the `seed` option is
34-
ignored.
35-
36-
options.copy: boolean (optional)
37-
Boolean indicating whether to copy a provided pseudorandom number
38-
generator state. Setting this option to `false` allows sharing state
39-
between two or more pseudorandom number generators. Setting this option
40-
to `true` ensures that a returned generator has exclusive control over
41-
its internal state. Default: true.
42-
4320
options.dtype: string (optional)
4421
Output array data type. Default: 'float64'.
4522

lib/node_modules/@stdlib/random/array/cosine/docs/repl.txt

-23
Original file line numberDiff line numberDiff line change
@@ -17,29 +17,6 @@
1717
options: Object (optional)
1818
Options.
1919

20-
options.prng: Function (optional)
21-
Pseudorandom number generator (PRNG) for generating uniformly
22-
distributed pseudorandom numbers on the interval `[0,1)`. If provided,
23-
the `state` and `seed` options are ignored. In order to seed the
24-
returned pseudorandom number generator, one must seed the provided
25-
`prng` (assuming the provided `prng` is seedable).
26-
27-
options.seed: integer|ArrayLikeObject<integer> (optional)
28-
Pseudorandom number generator seed. The seed may be either a positive
29-
unsigned 32-bit integer or, for arbitrary length seeds, an array-like
30-
object containing unsigned 32-bit integers.
31-
32-
options.state: Uint32Array (optional)
33-
Pseudorandom number generator state. If provided, the `seed` option is
34-
ignored.
35-
36-
options.copy: boolean (optional)
37-
Boolean indicating whether to copy a provided pseudorandom number
38-
generator state. Setting this option to `false` allows sharing state
39-
between two or more pseudorandom number generators. Setting this option
40-
to `true` ensures that a returned generator has exclusive control over
41-
its internal state. Default: true.
42-
4320
options.dtype: string (optional)
4421
Output array data type. Default: 'float64'.
4522

lib/node_modules/@stdlib/random/array/discrete-uniform/docs/repl.txt

-23
Original file line numberDiff line numberDiff line change
@@ -17,29 +17,6 @@
1717
options: Object (optional)
1818
Options.
1919

20-
options.prng: Function (optional)
21-
Pseudorandom number generator (PRNG) for generating uniformly
22-
distributed pseudorandom numbers on the interval `[0,1)`. If provided,
23-
the `state` and `seed` options are ignored. In order to seed the
24-
returned pseudorandom number generator, one must seed the provided
25-
`prng` (assuming the provided `prng` is seedable).
26-
27-
options.seed: integer|ArrayLikeObject<integer> (optional)
28-
Pseudorandom number generator seed. The seed may be either a positive
29-
unsigned 32-bit integer or, for arbitrary length seeds, an array-like
30-
object containing unsigned 32-bit integers.
31-
32-
options.state: Uint32Array (optional)
33-
Pseudorandom number generator state. If provided, the `seed` option is
34-
ignored.
35-
36-
options.copy: boolean (optional)
37-
Boolean indicating whether to copy a provided pseudorandom number
38-
generator state. Setting this option to `false` allows sharing state
39-
between two or more pseudorandom number generators. Setting this option
40-
to `true` ensures that a returned generator has exclusive control over
41-
its internal state. Default: true.
42-
4320
options.dtype: string (optional)
4421
Output array data type. Default: 'float64'.
4522

lib/node_modules/@stdlib/random/array/exponential/docs/repl.txt

-23
Original file line numberDiff line numberDiff line change
@@ -14,29 +14,6 @@
1414
options: Object (optional)
1515
Options.
1616

17-
options.prng: Function (optional)
18-
Pseudorandom number generator (PRNG) for generating uniformly
19-
distributed pseudorandom numbers on the interval `[0,1)`. If provided,
20-
the `state` and `seed` options are ignored. In order to seed the
21-
returned pseudorandom number generator, one must seed the provided
22-
`prng` (assuming the provided `prng` is seedable).
23-
24-
options.seed: integer|ArrayLikeObject<integer> (optional)
25-
Pseudorandom number generator seed. The seed may be either a positive
26-
unsigned 32-bit integer or, for arbitrary length seeds, an array-like
27-
object containing unsigned 32-bit integers.
28-
29-
options.state: Uint32Array (optional)
30-
Pseudorandom number generator state. If provided, the `seed` option is
31-
ignored.
32-
33-
options.copy: boolean (optional)
34-
Boolean indicating whether to copy a provided pseudorandom number
35-
generator state. Setting this option to `false` allows sharing state
36-
between two or more pseudorandom number generators. Setting this option
37-
to `true` ensures that a returned generator has exclusive control over
38-
its internal state. Default: true.
39-
4017
options.dtype: string (optional)
4118
Output array data type. Default: 'float64'.
4219

lib/node_modules/@stdlib/random/array/gamma/docs/repl.txt

-23
Original file line numberDiff line numberDiff line change
@@ -17,29 +17,6 @@
1717
options: Object (optional)
1818
Options.
1919

20-
options.prng: Function (optional)
21-
Pseudorandom number generator (PRNG) for generating uniformly
22-
distributed pseudorandom numbers on the interval `[0,1)`. If provided,
23-
the `state` and `seed` options are ignored. In order to seed the
24-
returned pseudorandom number generator, one must seed the provided
25-
`prng` (assuming the provided `prng` is seedable).
26-
27-
options.seed: integer|ArrayLikeObject<integer> (optional)
28-
Pseudorandom number generator seed. The seed may be either a positive
29-
unsigned 32-bit integer or, for arbitrary length seeds, an array-like
30-
object containing unsigned 32-bit integers.
31-
32-
options.state: Uint32Array (optional)
33-
Pseudorandom number generator state. If provided, the `seed` option is
34-
ignored.
35-
36-
options.copy: boolean (optional)
37-
Boolean indicating whether to copy a provided pseudorandom number
38-
generator state. Setting this option to `false` allows sharing state
39-
between two or more pseudorandom number generators. Setting this option
40-
to `true` ensures that a returned generator has exclusive control over
41-
its internal state. Default: true.
42-
4320
options.dtype: string (optional)
4421
Output array data type. Default: 'float64'.
4522

lib/node_modules/@stdlib/random/array/invgamma/docs/repl.txt

-23
Original file line numberDiff line numberDiff line change
@@ -17,29 +17,6 @@
1717
options: Object (optional)
1818
Options.
1919

20-
options.prng: Function (optional)
21-
Pseudorandom number generator (PRNG) for generating uniformly
22-
distributed pseudorandom numbers on the interval `[0,1)`. If provided,
23-
the `state` and `seed` options are ignored. In order to seed the
24-
returned pseudorandom number generator, one must seed the provided
25-
`prng` (assuming the provided `prng` is seedable).
26-
27-
options.seed: integer|ArrayLikeObject<integer> (optional)
28-
Pseudorandom number generator seed. The seed may be either a positive
29-
unsigned 32-bit integer or, for arbitrary length seeds, an array-like
30-
object containing unsigned 32-bit integers.
31-
32-
options.state: Uint32Array (optional)
33-
Pseudorandom number generator state. If provided, the `seed` option is
34-
ignored.
35-
36-
options.copy: boolean (optional)
37-
Boolean indicating whether to copy a provided pseudorandom number
38-
generator state. Setting this option to `false` allows sharing state
39-
between two or more pseudorandom number generators. Setting this option
40-
to `true` ensures that a returned generator has exclusive control over
41-
its internal state. Default: true.
42-
4320
options.dtype: string (optional)
4421
Output array data type. Default: 'float64'.
4522

lib/node_modules/@stdlib/random/array/lognormal/docs/repl.txt

-23
Original file line numberDiff line numberDiff line change
@@ -17,29 +17,6 @@
1717
options: Object (optional)
1818
Options.
1919

20-
options.prng: Function (optional)
21-
Pseudorandom number generator (PRNG) for generating uniformly
22-
distributed pseudorandom numbers on the interval `[0,1)`. If provided,
23-
the `state` and `seed` options are ignored. In order to seed the
24-
returned pseudorandom number generator, one must seed the provided
25-
`prng` (assuming the provided `prng` is seedable).
26-
27-
options.seed: integer|ArrayLikeObject<integer> (optional)
28-
Pseudorandom number generator seed. The seed may be either a positive
29-
unsigned 32-bit integer or, for arbitrary length seeds, an array-like
30-
object containing unsigned 32-bit integers.
31-
32-
options.state: Uint32Array (optional)
33-
Pseudorandom number generator state. If provided, the `seed` option is
34-
ignored.
35-
36-
options.copy: boolean (optional)
37-
Boolean indicating whether to copy a provided pseudorandom number
38-
generator state. Setting this option to `false` allows sharing state
39-
between two or more pseudorandom number generators. Setting this option
40-
to `true` ensures that a returned generator has exclusive control over
41-
its internal state. Default: true.
42-
4320
options.dtype: string (optional)
4421
Output array data type. Default: 'float64'.
4522

lib/node_modules/@stdlib/random/array/minstd-shuffle/docs/repl.txt

-34
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,6 @@
1111
options: Object (optional)
1212
Options.
1313

14-
options.seed: integer|ArrayLikeObject<integer> (optional)
15-
Pseudorandom number generator seed. The seed may be either a positive
16-
signed 32-bit integer on the interval `[1, 2147483646]` or, for
17-
arbitrary length seeds, an array-like object containing signed 32-bit
18-
integers.
19-
20-
options.state: Int32Array (optional)
21-
Pseudorandom number generator state. If provided, the `seed` option is
22-
ignored.
23-
24-
options.copy: boolean (optional)
25-
Boolean indicating whether to copy a provided pseudorandom number
26-
generator state. Setting this option to `false` allows sharing state
27-
between two or more pseudorandom number generators. Setting this option
28-
to `true` ensures that a returned generator has exclusive control over
29-
its internal state. Default: true.
30-
3114
options.dtype: string (optional)
3215
Output array data type. Default: 'float64'.
3316

@@ -53,23 +36,6 @@
5336
options: Object (optional)
5437
Options.
5538

56-
options.seed: integer|ArrayLikeObject<integer> (optional)
57-
Pseudorandom number generator seed. The seed may be either a positive
58-
signed 32-bit integer on the interval `[1, 2147483646]` or, for
59-
arbitrary length seeds, an array-like object containing signed 32-bit
60-
integers.
61-
62-
options.state: Int32Array (optional)
63-
Pseudorandom number generator state. If provided, the `seed` option is
64-
ignored.
65-
66-
options.copy: boolean (optional)
67-
Boolean indicating whether to copy a provided pseudorandom number
68-
generator state. Setting this option to `false` allows sharing state
69-
between two or more pseudorandom number generators. Setting this option
70-
to `true` ensures that a returned generator has exclusive control over
71-
its internal state. Default: true.
72-
7339
options.dtype: string (optional)
7440
Output array data type. Default: 'float64'.
7541

lib/node_modules/@stdlib/random/array/minstd/docs/repl.txt

-34
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,6 @@
1111
options: Object (optional)
1212
Options.
1313

14-
options.seed: integer|ArrayLikeObject<integer> (optional)
15-
Pseudorandom number generator seed. The seed may be either a positive
16-
signed 32-bit integer on the interval `[1, 2147483646]` or, for
17-
arbitrary length seeds, an array-like object containing signed 32-bit
18-
integers.
19-
20-
options.state: Int32Array (optional)
21-
Pseudorandom number generator state. If provided, the `seed` option is
22-
ignored.
23-
24-
options.copy: boolean (optional)
25-
Boolean indicating whether to copy a provided pseudorandom number
26-
generator state. Setting this option to `false` allows sharing state
27-
between two or more pseudorandom number generators. Setting this option
28-
to `true` ensures that a returned generator has exclusive control over
29-
its internal state. Default: true.
30-
3114
options.dtype: string (optional)
3215
Output array data type. Default: 'float64'.
3316

@@ -53,23 +36,6 @@
5336
options: Object (optional)
5437
Options.
5538

56-
options.seed: integer|ArrayLikeObject<integer> (optional)
57-
Pseudorandom number generator seed. The seed may be either a positive
58-
signed 32-bit integer on the interval `[1, 2147483646]` or, for
59-
arbitrary length seeds, an array-like object containing signed 32-bit
60-
integers.
61-
62-
options.state: Int32Array (optional)
63-
Pseudorandom number generator state. If provided, the `seed` option is
64-
ignored.
65-
66-
options.copy: boolean (optional)
67-
Boolean indicating whether to copy a provided pseudorandom number
68-
generator state. Setting this option to `false` allows sharing state
69-
between two or more pseudorandom number generators. Setting this option
70-
to `true` ensures that a returned generator has exclusive control over
71-
its internal state. Default: true.
72-
7339
options.dtype: string (optional)
7440
Output array data type. Default: 'float64'.
7541

0 commit comments

Comments
 (0)