Skip to content

Commit 3642086

Browse files
committed
docs: document property
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: na - task: lint_repl_help status: passed - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 5a193fb commit 3642086

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

lib/node_modules/@stdlib/complex/float32/ctor/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,15 @@ var z = new Complex64( 5.0, 3.0 );
5353

5454
## Properties
5555

56+
#### Complex64.name
57+
58+
Static property returning the constructor name.
59+
60+
```javascript
61+
var str = Complex64.name;
62+
// returns 'Complex64'
63+
```
64+
5665
#### Complex64.BYTES_PER_ELEMENT
5766

5867
Size (in bytes) of each component.

lib/node_modules/@stdlib/complex/float32/ctor/docs/repl.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,15 @@
3434
3.0
3535

3636

37+
{{alias}}.name
38+
Constructor name.
39+
40+
Examples
41+
--------
42+
> var str = {{alias}}.name
43+
'Complex64'
44+
45+
3746
{{alias}}.BYTES_PER_ELEMENT
3847
Size (in bytes) of each component.
3948

0 commit comments

Comments
 (0)