We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d233d6e commit 62769e0Copy full SHA for 62769e0
1 file changed
lib/node_modules/@stdlib/number/uint64/ctor/docs/types/test.ts
@@ -72,7 +72,7 @@ import Uint64 = require( './index' );
72
new Uint64( 5, 3 ); // $ExpectError
73
}
74
75
-// The `from` method returns an unsigned 64-bit integer...
+// Attached to the constructor is a `from` method which returns an unsigned 64-bit integer...
76
{
77
Uint64.from( [ 0, 1 ] ); // $ExpectType Uint64
78
Uint64.from( new Uint32Array( [ 0, 1 ] ) ); // $ExpectType Uint64
@@ -88,7 +88,7 @@ import Uint64 = require( './index' );
88
Uint64.from( {} ); // $ExpectError
89
90
91
-// The `of` method returns an unsigned 64-bit integer...
+// Attached to the constructor is an `of` method which returns an unsigned 64-bit integer...
92
93
Uint64.of( 0, 1 ); // $ExpectType Uint64
94
0 commit comments