@joookiwi/type 1.1.0 → 1.2.0

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.
Files changed (73) hide show
  1. package/dist/boolean (false).d.ts +0 -6
  2. package/dist/boolean (false).d.ts.map +1 -1
  3. package/dist/boolean (true).d.ts +0 -6
  4. package/dist/boolean (true).d.ts.map +1 -1
  5. package/dist/boolean.d.ts +0 -6
  6. package/dist/boolean.d.ts.map +1 -1
  7. package/dist/collection (array).d.ts +0 -6
  8. package/dist/collection (array).d.ts.map +1 -1
  9. package/dist/collection (map).d.ts +0 -6
  10. package/dist/collection (map).d.ts.map +1 -1
  11. package/dist/collection (mutable array).d.ts +0 -6
  12. package/dist/collection (mutable array).d.ts.map +1 -1
  13. package/dist/collection (mutable map).d.ts +0 -6
  14. package/dist/collection (mutable map).d.ts.map +1 -1
  15. package/dist/collection (mutable set).d.ts +0 -6
  16. package/dist/collection (mutable set).d.ts.map +1 -1
  17. package/dist/collection (set).d.ts +0 -6
  18. package/dist/collection (set).d.ts.map +1 -1
  19. package/dist/collection.d.ts +209 -6
  20. package/dist/collection.d.ts.map +1 -1
  21. package/dist/empty.d.ts +18 -24
  22. package/dist/empty.d.ts.map +1 -1
  23. package/dist/index.d.ts +0 -6
  24. package/dist/index.d.ts.map +1 -1
  25. package/dist/mixed.d.ts +0 -6
  26. package/dist/mixed.d.ts.map +1 -1
  27. package/dist/nullable.d.ts +0 -6
  28. package/dist/nullable.d.ts.map +1 -1
  29. package/dist/numeric (-1).d.ts +0 -6
  30. package/dist/numeric (-1).d.ts.map +1 -1
  31. package/dist/numeric (0).d.ts +0 -6
  32. package/dist/numeric (0).d.ts.map +1 -1
  33. package/dist/numeric (1).d.ts +0 -6
  34. package/dist/numeric (1).d.ts.map +1 -1
  35. package/dist/numeric (2).d.ts +0 -6
  36. package/dist/numeric (2).d.ts.map +1 -1
  37. package/dist/numeric (bigint).d.ts +0 -6
  38. package/dist/numeric (bigint).d.ts.map +1 -1
  39. package/dist/numeric (number).d.ts +0 -6
  40. package/dist/numeric (number).d.ts.map +1 -1
  41. package/dist/numeric.d.ts +0 -6
  42. package/dist/numeric.d.ts.map +1 -1
  43. package/dist/string (individual).d.ts +0 -6
  44. package/dist/string (individual).d.ts.map +1 -1
  45. package/dist/string.d.ts +0 -6
  46. package/dist/string.d.ts.map +1 -1
  47. package/dist/symbol.d.ts +0 -6
  48. package/dist/symbol.d.ts.map +1 -1
  49. package/package.json +3 -3
  50. package/src/boolean (false).ts +11 -6
  51. package/src/boolean (true).ts +11 -6
  52. package/src/boolean.ts +11 -6
  53. package/src/collection (array).ts +11 -6
  54. package/src/collection (map).ts +11 -6
  55. package/src/collection (mutable array).ts +11 -6
  56. package/src/collection (mutable map).ts +11 -6
  57. package/src/collection (mutable set).ts +11 -6
  58. package/src/collection (set).ts +11 -6
  59. package/src/collection.ts +242 -6
  60. package/src/empty.ts +29 -24
  61. package/src/index.ts +11 -6
  62. package/src/mixed.ts +11 -6
  63. package/src/nullable.ts +11 -6
  64. package/src/numeric (-1).ts +11 -6
  65. package/src/numeric (0).ts +11 -6
  66. package/src/numeric (1).ts +11 -6
  67. package/src/numeric (2).ts +11 -6
  68. package/src/numeric (bigint).ts +11 -6
  69. package/src/numeric (number).ts +11 -6
  70. package/src/numeric.ts +11 -6
  71. package/src/string (individual).ts +11 -6
  72. package/src/string.ts +11 -6
  73. package/src/symbol.ts +11 -6
package/src/symbol.ts CHANGED
@@ -1,9 +1,14 @@
1
- /*******************************************************************************
2
- Copyright (c) 2023-2024. Jonathan Bédard ~ JóôòKiwi
3
-
4
- This project is free to use.
5
- All the right is reserved to the author of this project.
6
- ******************************************************************************/
1
+ //··························································
2
+ // Copyright (c) 2023-2025. Jonathan Bédard ~ JóôòKiwi
3
+ //
4
+ // This project is free to use.
5
+ // All the right is reserved to the author of this project.
6
+ // My projects:
7
+ // - https://github.com/joooKiwi/type
8
+ // - https://github.com/joooKiwi/lazy
9
+ // - https://github.com/joooKiwi/collection
10
+ // - https://github.com/joooKiwi/enumeration
11
+ //··························································
7
12
 
8
13
  import type {PossibleJavascriptSymbolName, PossibleTypescriptSymbolName} from "./string"
9
14