functionalscript 0.3.14 → 0.3.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "functionalscript",
3
- "version": "0.3.14",
3
+ "version": "0.3.15",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "**/*.f.d.ts",
@@ -1,14 +1,15 @@
1
1
  /**
2
- * @module
3
- * @description
4
- * ```
5
2
  * MSb is most-significant bit first.
3
+ * ```
6
4
  * - byte: 0x53 = 0b0101_0011
7
- * - 0123_4567
5
+ * - 0123_4567
6
+ * ```
8
7
  * LSb is least-significant bit first.
8
+ * ```
9
9
  * - byte: 0x53 = 0b0101_0011
10
- * - 7654_3210
10
+ * - 7654_3210
11
11
  * ```
12
+ * @module
12
13
  */
13
14
  import { log2, mask } from "../bigint/module.f.js";
14
15
  import { flip } from "../function/module.f.js";