time-to-botec/js/node_modules/@stdlib/time/toc/docs/repl.txt
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

27 lines
567 B
Plaintext

{{alias}}( time )
Returns a high-resolution time difference, where `time` is a two-element
array with format `[seconds, nanoseconds]`.
Similar to `time`, the returned array has format `[seconds, nanoseconds]`.
Parameters
----------
time: Array<integer>
High-resolution time.
Returns
-------
out: Array<integer>
High resolution time difference.
Examples
--------
> var start = {{alias:@stdlib/time/tic}}();
> var delta = {{alias}}( start )
[ <number>, <number> ]
See Also
--------