@nfdi4plants/arctrl 3.0.0-beta.5 → 3.0.0-beta.6

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 (306) hide show
  1. package/dist/ts/node_modules/@fable-org/fable-library-js/Array.js +894 -4
  2. package/dist/ts/node_modules/@fable-org/fable-library-js/Async.js +121 -3
  3. package/dist/ts/node_modules/@fable-org/fable-library-js/BigInt.js +279 -1
  4. package/dist/ts/node_modules/@fable-org/fable-library-js/Char.js +101 -2
  5. package/dist/ts/node_modules/@fable-org/fable-library-js/Choice.js +187 -0
  6. package/dist/ts/node_modules/@fable-org/fable-library-js/CollectionUtil.js +156 -2
  7. package/dist/ts/node_modules/@fable-org/fable-library-js/Date.js +183 -7
  8. package/dist/ts/node_modules/@fable-org/fable-library-js/DateOffset.js +217 -5
  9. package/dist/ts/node_modules/@fable-org/fable-library-js/Decimal.js +154 -5
  10. package/dist/ts/node_modules/@fable-org/fable-library-js/Double.js +20 -1
  11. package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Collections.js +30 -0
  12. package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Core.js +68 -1
  13. package/dist/ts/node_modules/@fable-org/fable-library-js/Global.js +6 -1
  14. package/dist/ts/node_modules/@fable-org/fable-library-js/Guid.js +98 -1
  15. package/dist/ts/node_modules/@fable-org/fable-library-js/Int32.js +18 -1
  16. package/dist/ts/node_modules/@fable-org/fable-library-js/List.js +601 -5
  17. package/dist/ts/node_modules/@fable-org/fable-library-js/Long.js +10 -1
  18. package/dist/ts/node_modules/@fable-org/fable-library-js/Map.js +760 -16
  19. package/dist/ts/node_modules/@fable-org/fable-library-js/MapUtil.js +26 -1
  20. package/dist/ts/node_modules/@fable-org/fable-library-js/MutableMap.js +18 -8
  21. package/dist/ts/node_modules/@fable-org/fable-library-js/MutableSet.js +36 -4
  22. package/dist/ts/node_modules/@fable-org/fable-library-js/Option.js +35 -1
  23. package/dist/ts/node_modules/@fable-org/fable-library-js/Range.js +26 -1
  24. package/dist/ts/node_modules/@fable-org/fable-library-js/Reflection.js +355 -1
  25. package/dist/ts/node_modules/@fable-org/fable-library-js/RegExp.js +21 -2
  26. package/dist/ts/node_modules/@fable-org/fable-library-js/Result.js +133 -1
  27. package/dist/ts/node_modules/@fable-org/fable-library-js/Seq.js +543 -8
  28. package/dist/ts/node_modules/@fable-org/fable-library-js/Seq2.js +53 -4
  29. package/dist/ts/node_modules/@fable-org/fable-library-js/Set.js +673 -41
  30. package/dist/ts/node_modules/@fable-org/fable-library-js/String.js +197 -4
  31. package/dist/ts/node_modules/@fable-org/fable-library-js/System.Text.js +128 -3
  32. package/dist/ts/node_modules/@fable-org/fable-library-js/SystemException.js +8 -0
  33. package/dist/ts/node_modules/@fable-org/fable-library-js/TimeSpan.js +180 -0
  34. package/dist/ts/node_modules/@fable-org/fable-library-js/Types.js +20 -2
  35. package/dist/ts/node_modules/@fable-org/fable-library-js/Util.js +406 -2
  36. package/dist/ts/node_modules/@fable-org/fable-library-js/lib/big.js +2 -2
  37. package/dist/ts/ts/ARC.d.ts +12 -5
  38. package/dist/ts/ts/ARC.d.ts.map +1 -1
  39. package/dist/ts/ts/ARC.js +172 -93
  40. package/dist/ts/ts/Contract/ARC.d.ts.map +1 -1
  41. package/dist/ts/ts/Contract/ARC.js +8 -1
  42. package/dist/ts/ts/Contract/ArcAssay.js +14 -5
  43. package/dist/ts/ts/Contract/ArcInvestigation.js +10 -1
  44. package/dist/ts/ts/Contract/ArcRun.js +19 -6
  45. package/dist/ts/ts/Contract/ArcStudy.js +19 -6
  46. package/dist/ts/ts/Contract/ArcWorkflow.js +19 -6
  47. package/dist/ts/ts/Contract/Contract.js +42 -1
  48. package/dist/ts/ts/Contract/Datamap.js +61 -17
  49. package/dist/ts/ts/Contract/Git.d.ts.map +1 -1
  50. package/dist/ts/ts/Contract/Git.js +22 -6
  51. package/dist/ts/ts/Contract/License.d.ts +5 -0
  52. package/dist/ts/ts/Contract/License.d.ts.map +1 -0
  53. package/dist/ts/ts/Contract/License.js +34 -0
  54. package/dist/ts/ts/Contract/ValidationPackagesConfig.js +31 -6
  55. package/dist/ts/ts/ContractIO/ContractIO.js +5 -5
  56. package/dist/ts/ts/ContractIO/FileSystemHelper.js +16 -4
  57. package/dist/ts/ts/Conversion.js +321 -48
  58. package/dist/ts/ts/Core/ArcTypes.js +216 -15
  59. package/dist/ts/ts/Core/Comment.js +11 -1
  60. package/dist/ts/ts/Core/CommentList.js +77 -2
  61. package/dist/ts/ts/Core/Conversion.js +123 -43
  62. package/dist/ts/ts/Core/Data.js +9 -2
  63. package/dist/ts/ts/Core/DataContext.js +19 -4
  64. package/dist/ts/ts/Core/DataFile.js +38 -1
  65. package/dist/ts/ts/Core/DataMap.js +111 -5
  66. package/dist/ts/ts/Core/Helper/Collections.js +106 -5
  67. package/dist/ts/ts/Core/Helper/HashCodes.js +4 -4
  68. package/dist/ts/ts/Core/Helper/Identifier.js +100 -2
  69. package/dist/ts/ts/Core/Helper/Regex.js +134 -2
  70. package/dist/ts/ts/Core/Helper/SemVer.js +23 -2
  71. package/dist/ts/ts/Core/IdentifierSetters.js +27 -3
  72. package/dist/ts/ts/Core/OntologyAnnotation.js +4 -1
  73. package/dist/ts/ts/Core/OntologySourceReference.js +8 -1
  74. package/dist/ts/ts/Core/Person.js +8 -1
  75. package/dist/ts/ts/Core/Process/ColumnIndex.js +121 -4
  76. package/dist/ts/ts/Core/Process/Component.js +37 -4
  77. package/dist/ts/ts/Core/Process/Factor.js +9 -4
  78. package/dist/ts/ts/Core/Process/FactorValue.js +61 -4
  79. package/dist/ts/ts/Core/Process/Material.js +14 -4
  80. package/dist/ts/ts/Core/Process/MaterialAttribute.js +41 -3
  81. package/dist/ts/ts/Core/Process/MaterialAttributeValue.js +67 -4
  82. package/dist/ts/ts/Core/Process/MaterialType.js +15 -1
  83. package/dist/ts/ts/Core/Process/Process.js +150 -7
  84. package/dist/ts/ts/Core/Process/ProcessInput.js +48 -8
  85. package/dist/ts/ts/Core/Process/ProcessOutput.js +44 -7
  86. package/dist/ts/ts/Core/Process/ProcessParameterValue.js +10 -5
  87. package/dist/ts/ts/Core/Process/ProcessSequence.js +127 -6
  88. package/dist/ts/ts/Core/Process/Protocol.js +78 -4
  89. package/dist/ts/ts/Core/Process/ProtocolParameter.js +6 -2
  90. package/dist/ts/ts/Core/Process/Sample.js +21 -3
  91. package/dist/ts/ts/Core/Process/Source.js +13 -3
  92. package/dist/ts/ts/Core/Publication.js +8 -1
  93. package/dist/ts/ts/Core/Table/ArcTable.js +34 -25
  94. package/dist/ts/ts/Core/Table/ArcTableAux.js +150 -23
  95. package/dist/ts/ts/Core/Table/ArcTables.js +24 -15
  96. package/dist/ts/ts/Core/Table/CompositeCell.js +7 -3
  97. package/dist/ts/ts/Core/Table/CompositeColumn.js +8 -4
  98. package/dist/ts/ts/Core/Table/CompositeHeader.js +18 -15
  99. package/dist/ts/ts/Core/Template.js +12 -2
  100. package/dist/ts/ts/Core/Templates.js +8 -4
  101. package/dist/ts/ts/Core/Value.js +7 -3
  102. package/dist/ts/ts/CrossAsync.js +11 -1
  103. package/dist/ts/ts/FileSystem/Commit.js +18 -0
  104. package/dist/ts/ts/FileSystem/FileSystem.js +8 -3
  105. package/dist/ts/ts/FileSystem/FileSystemTree.d.ts +1 -0
  106. package/dist/ts/ts/FileSystem/FileSystemTree.d.ts.map +1 -1
  107. package/dist/ts/ts/FileSystem/FileSystemTree.js +20 -13
  108. package/dist/ts/ts/FileSystem/Path.d.ts +2 -0
  109. package/dist/ts/ts/FileSystem/Path.d.ts.map +1 -1
  110. package/dist/ts/ts/FileSystem/Path.js +17 -3
  111. package/dist/ts/ts/Json/Assay.js +26 -26
  112. package/dist/ts/ts/Json/Comment.js +10 -10
  113. package/dist/ts/ts/Json/Data.js +6 -6
  114. package/dist/ts/ts/Json/DataMap/DataContext.js +4 -4
  115. package/dist/ts/ts/Json/DataMap/DataMap.js +2 -2
  116. package/dist/ts/ts/Json/Decode.js +14 -9
  117. package/dist/ts/ts/Json/Encode.js +43 -11
  118. package/dist/ts/ts/Json/Investigation.js +40 -22
  119. package/dist/ts/ts/Json/OntologyAnnotation.js +5 -5
  120. package/dist/ts/ts/Json/OntologySourceReference.js +2 -2
  121. package/dist/ts/ts/Json/Person.js +26 -26
  122. package/dist/ts/ts/Json/Process/Component.js +9 -6
  123. package/dist/ts/ts/Json/Process/Factor.js +3 -3
  124. package/dist/ts/ts/Json/Process/FactorValue.js +8 -8
  125. package/dist/ts/ts/Json/Process/Material.js +9 -9
  126. package/dist/ts/ts/Json/Process/MaterialAttribute.js +1 -1
  127. package/dist/ts/ts/Json/Process/MaterialAttributeValue.js +8 -8
  128. package/dist/ts/ts/Json/Process/Process.js +12 -12
  129. package/dist/ts/ts/Json/Process/ProcessInput.js +4 -4
  130. package/dist/ts/ts/Json/Process/ProcessOutput.js +3 -3
  131. package/dist/ts/ts/Json/Process/ProcessParameterValue.js +10 -7
  132. package/dist/ts/ts/Json/Process/Protocol.js +12 -12
  133. package/dist/ts/ts/Json/Process/ProtocolParameter.js +3 -3
  134. package/dist/ts/ts/Json/Process/Sample.js +14 -14
  135. package/dist/ts/ts/Json/Process/Source.js +9 -9
  136. package/dist/ts/ts/Json/Process/Value.js +1 -1
  137. package/dist/ts/ts/Json/PropertyValue.js +1 -1
  138. package/dist/ts/ts/Json/Publication.js +6 -6
  139. package/dist/ts/ts/Json/ROCrate/LDContext.js +1 -0
  140. package/dist/ts/ts/Json/ROCrate/LDGraph.js +3 -3
  141. package/dist/ts/ts/Json/ROCrate/LDNode.js +19 -19
  142. package/dist/ts/ts/Json/Run.js +7 -7
  143. package/dist/ts/ts/Json/StringTable.js +1 -1
  144. package/dist/ts/ts/Json/Study.js +32 -32
  145. package/dist/ts/ts/Json/Table/ArcTable.js +29 -29
  146. package/dist/ts/ts/Json/Table/CellTable.js +6 -6
  147. package/dist/ts/ts/Json/Table/CompositeCell.js +4 -4
  148. package/dist/ts/ts/Json/Table/CompositeHeader.js +2 -2
  149. package/dist/ts/ts/Json/Table/IOType.js +1 -1
  150. package/dist/ts/ts/Json/Table/OATable.js +7 -7
  151. package/dist/ts/ts/Json/Table/Templates.js +92 -6
  152. package/dist/ts/ts/Json/Workflow.js +11 -11
  153. package/dist/ts/ts/Json/context/rocrate/isa_assay_context.js +27 -1
  154. package/dist/ts/ts/Json/context/rocrate/isa_comment_context.js +17 -1
  155. package/dist/ts/ts/Json/context/rocrate/isa_data_context.js +19 -1
  156. package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.js +27 -1
  157. package/dist/ts/ts/Json/context/rocrate/isa_material_context.js +20 -1
  158. package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.js +18 -1
  159. package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +20 -1
  160. package/dist/ts/ts/Json/context/rocrate/isa_organization_context.js +16 -1
  161. package/dist/ts/ts/Json/context/rocrate/isa_person_context.js +25 -1
  162. package/dist/ts/ts/Json/context/rocrate/isa_process_context.js +24 -1
  163. package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.js +23 -1
  164. package/dist/ts/ts/Json/context/rocrate/isa_publication_context.js +20 -1
  165. package/dist/ts/ts/Json/context/rocrate/isa_sample_context.js +19 -1
  166. package/dist/ts/ts/Json/context/rocrate/isa_source_context.js +19 -1
  167. package/dist/ts/ts/Json/context/rocrate/isa_study_context.js +35 -1
  168. package/dist/ts/ts/Json/context/rocrate/rocrate_context.js +61 -0
  169. package/dist/ts/ts/Json.d.ts +13 -1
  170. package/dist/ts/ts/Json.d.ts.map +1 -1
  171. package/dist/ts/ts/Json.js +89 -2
  172. package/dist/ts/ts/JsonIO/Assay.js +15 -3
  173. package/dist/ts/ts/JsonIO/Investigation.js +15 -3
  174. package/dist/ts/ts/JsonIO/LDObject.js +17 -3
  175. package/dist/ts/ts/JsonIO/OntologyAnnotation.js +12 -2
  176. package/dist/ts/ts/JsonIO/Person.d.ts +16 -0
  177. package/dist/ts/ts/JsonIO/Person.d.ts.map +1 -0
  178. package/dist/ts/ts/JsonIO/Person.js +67 -0
  179. package/dist/ts/ts/JsonIO/Run.js +9 -3
  180. package/dist/ts/ts/JsonIO/Study.js +15 -3
  181. package/dist/ts/ts/JsonIO/Table/Compression.js +3 -3
  182. package/dist/ts/ts/JsonIO/Table/Templates.js +60 -5
  183. package/dist/ts/ts/JsonIO/Workflow.js +9 -3
  184. package/dist/ts/ts/License.d.ts +39 -0
  185. package/dist/ts/ts/License.d.ts.map +1 -0
  186. package/dist/ts/ts/License.js +123 -0
  187. package/dist/ts/ts/ROCrate/Generic/Comment.js +5 -1
  188. package/dist/ts/ts/ROCrate/Generic/CreativeWork.d.ts +69 -0
  189. package/dist/ts/ts/ROCrate/Generic/CreativeWork.d.ts.map +1 -0
  190. package/dist/ts/ts/ROCrate/Generic/CreativeWork.js +450 -0
  191. package/dist/ts/ts/ROCrate/Generic/Dataset.d.ts +1 -0
  192. package/dist/ts/ts/ROCrate/Generic/Dataset.d.ts.map +1 -1
  193. package/dist/ts/ts/ROCrate/Generic/Dataset.js +27 -1
  194. package/dist/ts/ts/ROCrate/Generic/DefinedTerm.js +5 -1
  195. package/dist/ts/ts/ROCrate/Generic/File.js +5 -1
  196. package/dist/ts/ts/ROCrate/Generic/LabProcess.js +5 -1
  197. package/dist/ts/ts/ROCrate/Generic/LabProtocol.js +5 -1
  198. package/dist/ts/ts/ROCrate/Generic/Organization.js +5 -1
  199. package/dist/ts/ts/ROCrate/Generic/Person.js +7 -2
  200. package/dist/ts/ts/ROCrate/Generic/PostalAddress.js +5 -1
  201. package/dist/ts/ts/ROCrate/Generic/PropertyValue.js +19 -15
  202. package/dist/ts/ts/ROCrate/Generic/Sample.js +5 -1
  203. package/dist/ts/ts/ROCrate/Generic/ScholarlyArticle.js +5 -1
  204. package/dist/ts/ts/ROCrate/LDContext.js +15 -6
  205. package/dist/ts/ts/ROCrate/LDObject.js +53 -17
  206. package/dist/ts/ts/ROCrateIO.d.ts +9 -3
  207. package/dist/ts/ts/ROCrateIO.d.ts.map +1 -1
  208. package/dist/ts/ts/ROCrateIO.js +67 -14
  209. package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.js +18 -15
  210. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.js +5 -4
  211. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +40 -17
  212. package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +4 -4
  213. package/dist/ts/ts/Spreadsheet/ArcAssay.js +30 -15
  214. package/dist/ts/ts/Spreadsheet/ArcInvestigation.js +32 -18
  215. package/dist/ts/ts/Spreadsheet/ArcRun.js +23 -8
  216. package/dist/ts/ts/Spreadsheet/ArcStudy.js +22 -7
  217. package/dist/ts/ts/Spreadsheet/ArcWorkflow.js +23 -8
  218. package/dist/ts/ts/Spreadsheet/CollectionAux.js +75 -5
  219. package/dist/ts/ts/Spreadsheet/DataMap.js +1 -1
  220. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapColumn.js +4 -4
  221. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapHeader.js +8 -8
  222. package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapTable.js +4 -4
  223. package/dist/ts/ts/Spreadsheet/Metadata/Assays.js +6 -6
  224. package/dist/ts/ts/Spreadsheet/Metadata/Comment.js +1 -1
  225. package/dist/ts/ts/Spreadsheet/Metadata/Contacts.js +2 -2
  226. package/dist/ts/ts/Spreadsheet/Metadata/Conversions.js +6 -3
  227. package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.js +9 -3
  228. package/dist/ts/ts/Spreadsheet/Metadata/Factors.js +6 -4
  229. package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.js +7 -5
  230. package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.js +1 -1
  231. package/dist/ts/ts/Spreadsheet/Metadata/Protocols.js +10 -8
  232. package/dist/ts/ts/Spreadsheet/Metadata/Publication.js +5 -5
  233. package/dist/ts/ts/Spreadsheet/Metadata/Run.js +6 -6
  234. package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.js +246 -10
  235. package/dist/ts/ts/Spreadsheet/Metadata/Study.js +19 -13
  236. package/dist/ts/ts/Spreadsheet/Metadata/Workflow.js +5 -5
  237. package/dist/ts/ts/Template.Web.js +5 -1
  238. package/dist/ts/ts/ValidationPackages/ValidationPackage.js +8 -1
  239. package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.js +10 -3
  240. package/dist/ts/ts/WebRequest/WebRequest.Node.js +1 -0
  241. package/dist/ts/ts/Xlsx.js +41 -1
  242. package/dist/ts/ts/Yaml/ValidationPackage.js +18 -2
  243. package/dist/ts/ts/Yaml/ValidationPackagesConfig.js +5 -2
  244. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +27 -4
  245. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +14 -3
  246. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +30 -4
  247. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +5 -1
  248. package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +65 -2
  249. package/dist/ts/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +257 -1
  250. package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +71 -1
  251. package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +11 -1
  252. package/dist/ts/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +188 -11
  253. package/dist/ts/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +80 -2
  254. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Cells/FsCell.fs.js +63 -4
  255. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Cells/FsCellsCollection.fs.js +17 -7
  256. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/CellBuilder.fs.js +198 -0
  257. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/Expression.fs.js +46 -0
  258. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/RowBuilder.fs.js +131 -0
  259. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/Types.fs.js +307 -0
  260. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsAddress.fs.js +38 -2
  261. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsColumn.fs.js +11 -4
  262. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsRow.fs.js +12 -5
  263. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsWorkbook.fs.js +9 -2
  264. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsWorksheet.fs.js +14 -7
  265. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/HashCodes.fs.js +31 -1
  266. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Cell.fs.js +65 -0
  267. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Column.fs.js +38 -0
  268. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Row.fs.js +38 -0
  269. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Table.fs.js +34 -0
  270. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Value.fs.js +49 -3
  271. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Workbook.fs.js +44 -0
  272. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Worksheet.fs.js +129 -0
  273. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRange.fs.js +9 -2
  274. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeAddress.fs.js +82 -3
  275. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeBase.fs.js +12 -3
  276. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeColumn.fs.js +17 -2
  277. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeRow.fs.js +9 -2
  278. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Tables/FsTable.fs.js +12 -5
  279. package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Tables/FsTableField.fs.js +12 -3
  280. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Cell.fs.js +2 -2
  281. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/FsExtensions.fs.js +42 -3
  282. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Json.fs.js +53 -0
  283. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Table.fs.js +9 -9
  284. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Workbook.fs.js +1 -1
  285. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Worksheet.fs.js +2 -2
  286. package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Xlsx.fs.js +5 -1
  287. package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Decode.fs.js +730 -23
  288. package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Encode.fs.js +192 -7
  289. package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Types.fs.js +45 -1
  290. package/dist/ts/ts/fable_modules/Thoth.Json.JavaScript.0.4.1/Decode.fs.js +15 -2
  291. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.js +1383 -15
  292. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.js +45 -4
  293. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +10 -0
  294. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +5 -5
  295. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +16 -6
  296. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +26 -23
  297. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +1 -1
  298. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +8 -8
  299. package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +18 -2
  300. package/package.json +1 -1
  301. package/dist/ts/ts/FileSystem/DefaultGitattributes.d.ts +0 -2
  302. package/dist/ts/ts/FileSystem/DefaultGitattributes.d.ts.map +0 -1
  303. package/dist/ts/ts/FileSystem/DefaultGitattributes.js +0 -3
  304. package/dist/ts/ts/FileSystem/DefaultGitignore.d.ts +0 -2
  305. package/dist/ts/ts/FileSystem/DefaultGitignore.d.ts.map +0 -1
  306. package/dist/ts/ts/FileSystem/DefaultGitignore.js +0 -3
@@ -1,9 +1,10 @@
1
+ import { class_type, record_type, list_type, bool_type, option_type } from './Reflection.js';
1
2
  import { value, some } from './Option.js';
2
- import { isArrayLike, getEnumerator, disposeSafe, equals, toIterator, structuralHash, compare } from './Util.js';
3
- import { FSharpList, fold, singleton, isEmpty, head, tail, ofArrayWithTail, empty as empty$1 } from './List.js';
4
- import { item, setItem } from './Array.js';
3
+ import { isArrayLike, getEnumerator, disposeSafe, equals, toIterator, compare, structuralHash } from './Util.js';
4
+ import { cons, empty as empty$1, fold as fold$1, FSharpList, isEmpty as isEmpty$1, tail, head, ofArrayWithTail, singleton } from './List.js';
5
+ import { setItem, fill, item, map as map$2 } from './Array.js';
5
6
  import { Record } from './Types.js';
6
- import { map, compareWith, iterate } from './Seq.js';
7
+ import { unfold, map as map$1, compareWith, iterate as iterate$1, pick as pick$1, tryPick as tryPick$1 } from './Seq.js';
7
8
  import { join, format } from './String.js';
8
9
 
9
10
  class MapTreeLeaf$2 {
@@ -12,6 +13,9 @@ class MapTreeLeaf$2 {
12
13
  this.v = v;
13
14
  }
14
15
  }
16
+ function MapTreeLeaf$2_$reflection(gen0, gen1) {
17
+ return class_type("Map.MapTreeLeaf`2", [gen0, gen1], MapTreeLeaf$2);
18
+ }
15
19
  function MapTreeLeaf$2_$ctor_5BDDA1(k, v) {
16
20
  return new MapTreeLeaf$2(k, v);
17
21
  }
@@ -29,6 +33,9 @@ class MapTreeNode$2 extends MapTreeLeaf$2 {
29
33
  this.h = (h | 0);
30
34
  }
31
35
  }
36
+ function MapTreeNode$2_$reflection(gen0, gen1) {
37
+ return class_type("Map.MapTreeNode`2", [gen0, gen1], MapTreeNode$2, MapTreeLeaf$2_$reflection(gen0, gen1));
38
+ }
32
39
  function MapTreeNode$2_$ctor_Z39DE9543(k, v, left, right, h) {
33
40
  return new MapTreeNode$2(k, v, left, right, h);
34
41
  }
@@ -62,6 +69,7 @@ function MapTreeModule_sizeAux(acc_mut, m_mut) {
62
69
  else {
63
70
  return acc | 0;
64
71
  }
72
+ break;
65
73
  }
66
74
  }
67
75
  function MapTreeModule_size(x) {
@@ -216,6 +224,7 @@ function MapTreeModule_tryFind(comparer_mut, k_mut, m_mut) {
216
224
  else {
217
225
  return undefined;
218
226
  }
227
+ break;
219
228
  }
220
229
  }
221
230
  function MapTreeModule_find(comparer, k, m) {
@@ -227,6 +236,207 @@ function MapTreeModule_find(comparer, k, m) {
227
236
  return value(matchValue);
228
237
  }
229
238
  }
239
+ function MapTreeModule_partition1(comparer, f, k, v, acc1, acc2) {
240
+ if (f(k, v)) {
241
+ return [MapTreeModule_add(comparer, k, v, acc1), acc2];
242
+ }
243
+ else {
244
+ return [acc1, MapTreeModule_add(comparer, k, v, acc2)];
245
+ }
246
+ }
247
+ function MapTreeModule_partitionAux(comparer_mut, f_mut, m_mut, acc__mut, acc__1_mut) {
248
+ MapTreeModule_partitionAux: while (true) {
249
+ const comparer = comparer_mut, f = f_mut, m = m_mut, acc_ = acc__mut, acc__1 = acc__1_mut;
250
+ const acc = [acc_, acc__1];
251
+ if (m != null) {
252
+ const m2 = value(m);
253
+ if (m2 instanceof MapTreeNode$2) {
254
+ const mn = m2;
255
+ const acc_1 = MapTreeModule_partitionAux(comparer, f, MapTreeNode$2__get_Right(mn), acc[0], acc[1]);
256
+ const acc_4 = MapTreeModule_partition1(comparer, f, MapTreeLeaf$2__get_Key(mn), MapTreeLeaf$2__get_Value(mn), acc_1[0], acc_1[1]);
257
+ comparer_mut = comparer;
258
+ f_mut = f;
259
+ m_mut = MapTreeNode$2__get_Left(mn);
260
+ acc__mut = acc_4[0];
261
+ acc__1_mut = acc_4[1];
262
+ continue MapTreeModule_partitionAux;
263
+ }
264
+ else {
265
+ return MapTreeModule_partition1(comparer, f, MapTreeLeaf$2__get_Key(m2), MapTreeLeaf$2__get_Value(m2), acc[0], acc[1]);
266
+ }
267
+ }
268
+ else {
269
+ return acc;
270
+ }
271
+ break;
272
+ }
273
+ }
274
+ function MapTreeModule_partition(comparer, f, m) {
275
+ return MapTreeModule_partitionAux(comparer, f, m, MapTreeModule_empty(), MapTreeModule_empty());
276
+ }
277
+ function MapTreeModule_filter1(comparer, f, k, v, acc) {
278
+ if (f(k, v)) {
279
+ return MapTreeModule_add(comparer, k, v, acc);
280
+ }
281
+ else {
282
+ return acc;
283
+ }
284
+ }
285
+ function MapTreeModule_filterAux(comparer_mut, f_mut, m_mut, acc_mut) {
286
+ MapTreeModule_filterAux: while (true) {
287
+ const comparer = comparer_mut, f = f_mut, m = m_mut, acc = acc_mut;
288
+ if (m != null) {
289
+ const m2 = value(m);
290
+ if (m2 instanceof MapTreeNode$2) {
291
+ const mn = m2;
292
+ const acc_1 = MapTreeModule_filterAux(comparer, f, MapTreeNode$2__get_Left(mn), acc);
293
+ const acc_2 = MapTreeModule_filter1(comparer, f, MapTreeLeaf$2__get_Key(mn), MapTreeLeaf$2__get_Value(mn), acc_1);
294
+ comparer_mut = comparer;
295
+ f_mut = f;
296
+ m_mut = MapTreeNode$2__get_Right(mn);
297
+ acc_mut = acc_2;
298
+ continue MapTreeModule_filterAux;
299
+ }
300
+ else {
301
+ return MapTreeModule_filter1(comparer, f, MapTreeLeaf$2__get_Key(m2), MapTreeLeaf$2__get_Value(m2), acc);
302
+ }
303
+ }
304
+ else {
305
+ return acc;
306
+ }
307
+ break;
308
+ }
309
+ }
310
+ function MapTreeModule_filter(comparer, f, m) {
311
+ return MapTreeModule_filterAux(comparer, f, m, MapTreeModule_empty());
312
+ }
313
+ function MapTreeModule_spliceOutSuccessor(m) {
314
+ if (m != null) {
315
+ const m2 = value(m);
316
+ if (m2 instanceof MapTreeNode$2) {
317
+ const mn = m2;
318
+ if (MapTreeNode$2__get_Left(mn) == null) {
319
+ return [MapTreeLeaf$2__get_Key(mn), MapTreeLeaf$2__get_Value(mn), MapTreeNode$2__get_Right(mn)];
320
+ }
321
+ else {
322
+ const patternInput = MapTreeModule_spliceOutSuccessor(MapTreeNode$2__get_Left(mn));
323
+ return [patternInput[0], patternInput[1], MapTreeModule_mk(patternInput[2], MapTreeLeaf$2__get_Key(mn), MapTreeLeaf$2__get_Value(mn), MapTreeNode$2__get_Right(mn))];
324
+ }
325
+ }
326
+ else {
327
+ return [MapTreeLeaf$2__get_Key(m2), MapTreeLeaf$2__get_Value(m2), MapTreeModule_empty()];
328
+ }
329
+ }
330
+ else {
331
+ throw new Error("internal error: Map.spliceOutSuccessor");
332
+ }
333
+ }
334
+ function MapTreeModule_remove(comparer, k, m) {
335
+ if (m != null) {
336
+ const m2 = value(m);
337
+ const c = comparer.Compare(k, MapTreeLeaf$2__get_Key(m2)) | 0;
338
+ if (m2 instanceof MapTreeNode$2) {
339
+ const mn = m2;
340
+ if (c < 0) {
341
+ return MapTreeModule_rebalance(MapTreeModule_remove(comparer, k, MapTreeNode$2__get_Left(mn)), MapTreeLeaf$2__get_Key(mn), MapTreeLeaf$2__get_Value(mn), MapTreeNode$2__get_Right(mn));
342
+ }
343
+ else if (c === 0) {
344
+ if (MapTreeNode$2__get_Left(mn) == null) {
345
+ return MapTreeNode$2__get_Right(mn);
346
+ }
347
+ else if (MapTreeNode$2__get_Right(mn) == null) {
348
+ return MapTreeNode$2__get_Left(mn);
349
+ }
350
+ else {
351
+ const patternInput = MapTreeModule_spliceOutSuccessor(MapTreeNode$2__get_Right(mn));
352
+ return MapTreeModule_mk(MapTreeNode$2__get_Left(mn), patternInput[0], patternInput[1], patternInput[2]);
353
+ }
354
+ }
355
+ else {
356
+ return MapTreeModule_rebalance(MapTreeNode$2__get_Left(mn), MapTreeLeaf$2__get_Key(mn), MapTreeLeaf$2__get_Value(mn), MapTreeModule_remove(comparer, k, MapTreeNode$2__get_Right(mn)));
357
+ }
358
+ }
359
+ else if (c === 0) {
360
+ return MapTreeModule_empty();
361
+ }
362
+ else {
363
+ return m;
364
+ }
365
+ }
366
+ else {
367
+ return MapTreeModule_empty();
368
+ }
369
+ }
370
+ function MapTreeModule_change(comparer, k, u, m) {
371
+ if (m != null) {
372
+ const m2 = value(m);
373
+ if (m2 instanceof MapTreeNode$2) {
374
+ const mn = m2;
375
+ const c = comparer.Compare(k, MapTreeLeaf$2__get_Key(mn)) | 0;
376
+ if (c < 0) {
377
+ return MapTreeModule_rebalance(MapTreeModule_change(comparer, k, u, MapTreeNode$2__get_Left(mn)), MapTreeLeaf$2__get_Key(mn), MapTreeLeaf$2__get_Value(mn), MapTreeNode$2__get_Right(mn));
378
+ }
379
+ else if (c === 0) {
380
+ const matchValue_1 = u(some(MapTreeLeaf$2__get_Value(mn)));
381
+ if (matchValue_1 != null) {
382
+ return MapTreeNode$2_$ctor_Z39DE9543(k, value(matchValue_1), MapTreeNode$2__get_Left(mn), MapTreeNode$2__get_Right(mn), MapTreeNode$2__get_Height(mn));
383
+ }
384
+ else if (MapTreeNode$2__get_Left(mn) == null) {
385
+ return MapTreeNode$2__get_Right(mn);
386
+ }
387
+ else if (MapTreeNode$2__get_Right(mn) == null) {
388
+ return MapTreeNode$2__get_Left(mn);
389
+ }
390
+ else {
391
+ const patternInput = MapTreeModule_spliceOutSuccessor(MapTreeNode$2__get_Right(mn));
392
+ return MapTreeModule_mk(MapTreeNode$2__get_Left(mn), patternInput[0], patternInput[1], patternInput[2]);
393
+ }
394
+ }
395
+ else {
396
+ return MapTreeModule_rebalance(MapTreeNode$2__get_Left(mn), MapTreeLeaf$2__get_Key(mn), MapTreeLeaf$2__get_Value(mn), MapTreeModule_change(comparer, k, u, MapTreeNode$2__get_Right(mn)));
397
+ }
398
+ }
399
+ else {
400
+ const c_1 = comparer.Compare(k, MapTreeLeaf$2__get_Key(m2)) | 0;
401
+ if (c_1 < 0) {
402
+ const matchValue_2 = u(undefined);
403
+ if (matchValue_2 != null) {
404
+ return MapTreeNode$2_$ctor_Z39DE9543(k, value(matchValue_2), MapTreeModule_empty(), m, 2);
405
+ }
406
+ else {
407
+ return m;
408
+ }
409
+ }
410
+ else if (c_1 === 0) {
411
+ const matchValue_3 = u(some(MapTreeLeaf$2__get_Value(m2)));
412
+ if (matchValue_3 != null) {
413
+ return MapTreeLeaf$2_$ctor_5BDDA1(k, value(matchValue_3));
414
+ }
415
+ else {
416
+ return MapTreeModule_empty();
417
+ }
418
+ }
419
+ else {
420
+ const matchValue_4 = u(undefined);
421
+ if (matchValue_4 != null) {
422
+ return MapTreeNode$2_$ctor_Z39DE9543(k, value(matchValue_4), m, MapTreeModule_empty(), 2);
423
+ }
424
+ else {
425
+ return m;
426
+ }
427
+ }
428
+ }
429
+ }
430
+ else {
431
+ const matchValue = u(undefined);
432
+ if (matchValue != null) {
433
+ return MapTreeLeaf$2_$ctor_5BDDA1(k, value(matchValue));
434
+ }
435
+ else {
436
+ return m;
437
+ }
438
+ }
439
+ }
230
440
  function MapTreeModule_mem(comparer_mut, k_mut, m_mut) {
231
441
  MapTreeModule_mem: while (true) {
232
442
  const comparer = comparer_mut, k = k_mut, m = m_mut;
@@ -258,6 +468,7 @@ function MapTreeModule_mem(comparer_mut, k_mut, m_mut) {
258
468
  else {
259
469
  return false;
260
470
  }
471
+ break;
261
472
  }
262
473
  }
263
474
  function MapTreeModule_iterOpt(f_mut, m_mut) {
@@ -283,6 +494,260 @@ function MapTreeModule_iterOpt(f_mut, m_mut) {
283
494
  function MapTreeModule_iter(f, m) {
284
495
  MapTreeModule_iterOpt(f, m);
285
496
  }
497
+ function MapTreeModule_tryPickOpt(f_mut, m_mut) {
498
+ MapTreeModule_tryPickOpt: while (true) {
499
+ const f = f_mut, m = m_mut;
500
+ if (m != null) {
501
+ const m2 = value(m);
502
+ if (m2 instanceof MapTreeNode$2) {
503
+ const mn = m2;
504
+ const matchValue = MapTreeModule_tryPickOpt(f, MapTreeNode$2__get_Left(mn));
505
+ if (matchValue == null) {
506
+ const matchValue_1 = f(MapTreeLeaf$2__get_Key(mn), MapTreeLeaf$2__get_Value(mn));
507
+ if (matchValue_1 == null) {
508
+ f_mut = f;
509
+ m_mut = MapTreeNode$2__get_Right(mn);
510
+ continue MapTreeModule_tryPickOpt;
511
+ }
512
+ else {
513
+ return matchValue_1;
514
+ }
515
+ }
516
+ else {
517
+ return matchValue;
518
+ }
519
+ }
520
+ else {
521
+ return f(MapTreeLeaf$2__get_Key(m2), MapTreeLeaf$2__get_Value(m2));
522
+ }
523
+ }
524
+ else {
525
+ return undefined;
526
+ }
527
+ break;
528
+ }
529
+ }
530
+ function MapTreeModule_tryPick(f, m) {
531
+ return MapTreeModule_tryPickOpt(f, m);
532
+ }
533
+ function MapTreeModule_existsOpt(f_mut, m_mut) {
534
+ MapTreeModule_existsOpt: while (true) {
535
+ const f = f_mut, m = m_mut;
536
+ if (m != null) {
537
+ const m2 = value(m);
538
+ if (m2 instanceof MapTreeNode$2) {
539
+ const mn = m2;
540
+ if (MapTreeModule_existsOpt(f, MapTreeNode$2__get_Left(mn)) ? true : f(MapTreeLeaf$2__get_Key(mn), MapTreeLeaf$2__get_Value(mn))) {
541
+ return true;
542
+ }
543
+ else {
544
+ f_mut = f;
545
+ m_mut = MapTreeNode$2__get_Right(mn);
546
+ continue MapTreeModule_existsOpt;
547
+ }
548
+ }
549
+ else {
550
+ return f(MapTreeLeaf$2__get_Key(m2), MapTreeLeaf$2__get_Value(m2));
551
+ }
552
+ }
553
+ else {
554
+ return false;
555
+ }
556
+ break;
557
+ }
558
+ }
559
+ function MapTreeModule_exists(f, m) {
560
+ return MapTreeModule_existsOpt(f, m);
561
+ }
562
+ function MapTreeModule_forallOpt(f_mut, m_mut) {
563
+ MapTreeModule_forallOpt: while (true) {
564
+ const f = f_mut, m = m_mut;
565
+ if (m != null) {
566
+ const m2 = value(m);
567
+ if (m2 instanceof MapTreeNode$2) {
568
+ const mn = m2;
569
+ if (MapTreeModule_forallOpt(f, MapTreeNode$2__get_Left(mn)) && f(MapTreeLeaf$2__get_Key(mn), MapTreeLeaf$2__get_Value(mn))) {
570
+ f_mut = f;
571
+ m_mut = MapTreeNode$2__get_Right(mn);
572
+ continue MapTreeModule_forallOpt;
573
+ }
574
+ else {
575
+ return false;
576
+ }
577
+ }
578
+ else {
579
+ return f(MapTreeLeaf$2__get_Key(m2), MapTreeLeaf$2__get_Value(m2));
580
+ }
581
+ }
582
+ else {
583
+ return true;
584
+ }
585
+ break;
586
+ }
587
+ }
588
+ function MapTreeModule_forall(f, m) {
589
+ return MapTreeModule_forallOpt(f, m);
590
+ }
591
+ function MapTreeModule_map(f, m) {
592
+ if (m != null) {
593
+ const m2 = value(m);
594
+ if (m2 instanceof MapTreeNode$2) {
595
+ const mn = m2;
596
+ const l2 = MapTreeModule_map(f, MapTreeNode$2__get_Left(mn));
597
+ const v2 = f(MapTreeLeaf$2__get_Value(mn));
598
+ const r2 = MapTreeModule_map(f, MapTreeNode$2__get_Right(mn));
599
+ return MapTreeNode$2_$ctor_Z39DE9543(MapTreeLeaf$2__get_Key(mn), v2, l2, r2, MapTreeNode$2__get_Height(mn));
600
+ }
601
+ else {
602
+ return MapTreeLeaf$2_$ctor_5BDDA1(MapTreeLeaf$2__get_Key(m2), f(MapTreeLeaf$2__get_Value(m2)));
603
+ }
604
+ }
605
+ else {
606
+ return MapTreeModule_empty();
607
+ }
608
+ }
609
+ function MapTreeModule_mapiOpt(f, m) {
610
+ if (m != null) {
611
+ const m2 = value(m);
612
+ if (m2 instanceof MapTreeNode$2) {
613
+ const mn = m2;
614
+ const l2 = MapTreeModule_mapiOpt(f, MapTreeNode$2__get_Left(mn));
615
+ const v2 = f(MapTreeLeaf$2__get_Key(mn), MapTreeLeaf$2__get_Value(mn));
616
+ const r2 = MapTreeModule_mapiOpt(f, MapTreeNode$2__get_Right(mn));
617
+ return MapTreeNode$2_$ctor_Z39DE9543(MapTreeLeaf$2__get_Key(mn), v2, l2, r2, MapTreeNode$2__get_Height(mn));
618
+ }
619
+ else {
620
+ return MapTreeLeaf$2_$ctor_5BDDA1(MapTreeLeaf$2__get_Key(m2), f(MapTreeLeaf$2__get_Key(m2), MapTreeLeaf$2__get_Value(m2)));
621
+ }
622
+ }
623
+ else {
624
+ return MapTreeModule_empty();
625
+ }
626
+ }
627
+ function MapTreeModule_mapi(f, m) {
628
+ return MapTreeModule_mapiOpt(f, m);
629
+ }
630
+ function MapTreeModule_foldBackOpt(f_mut, m_mut, x_mut) {
631
+ MapTreeModule_foldBackOpt: while (true) {
632
+ const f = f_mut, m = m_mut, x = x_mut;
633
+ if (m != null) {
634
+ const m2 = value(m);
635
+ if (m2 instanceof MapTreeNode$2) {
636
+ const mn = m2;
637
+ const x_1 = MapTreeModule_foldBackOpt(f, MapTreeNode$2__get_Right(mn), x);
638
+ const x_2 = f(MapTreeLeaf$2__get_Key(mn), MapTreeLeaf$2__get_Value(mn), x_1);
639
+ f_mut = f;
640
+ m_mut = MapTreeNode$2__get_Left(mn);
641
+ x_mut = x_2;
642
+ continue MapTreeModule_foldBackOpt;
643
+ }
644
+ else {
645
+ return f(MapTreeLeaf$2__get_Key(m2), MapTreeLeaf$2__get_Value(m2), x);
646
+ }
647
+ }
648
+ else {
649
+ return x;
650
+ }
651
+ break;
652
+ }
653
+ }
654
+ function MapTreeModule_foldBack(f, m, x) {
655
+ return MapTreeModule_foldBackOpt(f, m, x);
656
+ }
657
+ function MapTreeModule_foldOpt(f_mut, x_mut, m_mut) {
658
+ MapTreeModule_foldOpt: while (true) {
659
+ const f = f_mut, x = x_mut, m = m_mut;
660
+ if (m != null) {
661
+ const m2 = value(m);
662
+ if (m2 instanceof MapTreeNode$2) {
663
+ const mn = m2;
664
+ f_mut = f;
665
+ x_mut = f(MapTreeModule_foldOpt(f, x, MapTreeNode$2__get_Left(mn)), MapTreeLeaf$2__get_Key(mn), MapTreeLeaf$2__get_Value(mn));
666
+ m_mut = MapTreeNode$2__get_Right(mn);
667
+ continue MapTreeModule_foldOpt;
668
+ }
669
+ else {
670
+ return f(x, MapTreeLeaf$2__get_Key(m2), MapTreeLeaf$2__get_Value(m2));
671
+ }
672
+ }
673
+ else {
674
+ return x;
675
+ }
676
+ break;
677
+ }
678
+ }
679
+ function MapTreeModule_fold(f, x, m) {
680
+ return MapTreeModule_foldOpt(f, x, m);
681
+ }
682
+ function MapTreeModule_foldSectionOpt(comparer, lo, hi, f, m, x) {
683
+ const foldFromTo = (f_1_mut, m_1_mut, x_1_mut) => {
684
+ foldFromTo: while (true) {
685
+ const f_1 = f_1_mut, m_1 = m_1_mut, x_1 = x_1_mut;
686
+ if (m_1 != null) {
687
+ const m2 = value(m_1);
688
+ if (m2 instanceof MapTreeNode$2) {
689
+ const mn = m2;
690
+ const cLoKey = comparer.Compare(lo, MapTreeLeaf$2__get_Key(mn)) | 0;
691
+ const cKeyHi = comparer.Compare(MapTreeLeaf$2__get_Key(mn), hi) | 0;
692
+ const x_2 = (cLoKey < 0) ? foldFromTo(f_1, MapTreeNode$2__get_Left(mn), x_1) : x_1;
693
+ const x_3 = ((cLoKey <= 0) && (cKeyHi <= 0)) ? f_1(MapTreeLeaf$2__get_Key(mn), MapTreeLeaf$2__get_Value(mn), x_2) : x_2;
694
+ if (cKeyHi < 0) {
695
+ f_1_mut = f_1;
696
+ m_1_mut = MapTreeNode$2__get_Right(mn);
697
+ x_1_mut = x_3;
698
+ continue foldFromTo;
699
+ }
700
+ else {
701
+ return x_3;
702
+ }
703
+ }
704
+ else if ((comparer.Compare(lo, MapTreeLeaf$2__get_Key(m2)) <= 0) && (comparer.Compare(MapTreeLeaf$2__get_Key(m2), hi) <= 0)) {
705
+ return f_1(MapTreeLeaf$2__get_Key(m2), MapTreeLeaf$2__get_Value(m2), x_1);
706
+ }
707
+ else {
708
+ return x_1;
709
+ }
710
+ }
711
+ else {
712
+ return x_1;
713
+ }
714
+ break;
715
+ }
716
+ };
717
+ if (comparer.Compare(lo, hi) === 1) {
718
+ return x;
719
+ }
720
+ else {
721
+ return foldFromTo(f, m, x);
722
+ }
723
+ }
724
+ function MapTreeModule_foldSection(comparer, lo, hi, f, m, x) {
725
+ return MapTreeModule_foldSectionOpt(comparer, lo, hi, f, m, x);
726
+ }
727
+ function MapTreeModule_toList(m) {
728
+ const loop = (m_1_mut, acc_mut) => {
729
+ loop: while (true) {
730
+ const m_1 = m_1_mut, acc = acc_mut;
731
+ if (m_1 != null) {
732
+ const m2 = value(m_1);
733
+ if (m2 instanceof MapTreeNode$2) {
734
+ const mn = m2;
735
+ m_1_mut = MapTreeNode$2__get_Left(mn);
736
+ acc_mut = cons([MapTreeLeaf$2__get_Key(mn), MapTreeLeaf$2__get_Value(mn)], loop(MapTreeNode$2__get_Right(mn), acc));
737
+ continue loop;
738
+ }
739
+ else {
740
+ return cons([MapTreeLeaf$2__get_Key(m2), MapTreeLeaf$2__get_Value(m2)], acc);
741
+ }
742
+ }
743
+ else {
744
+ return acc;
745
+ }
746
+ break;
747
+ }
748
+ };
749
+ return loop(m, empty$1());
750
+ }
286
751
  function MapTreeModule_copyToArray(m, arr, i) {
287
752
  let j = i;
288
753
  MapTreeModule_iter((x, y) => {
@@ -290,8 +755,14 @@ function MapTreeModule_copyToArray(m, arr, i) {
290
755
  j = ((j + 1) | 0);
291
756
  }, m);
292
757
  }
758
+ function MapTreeModule_toArray(m) {
759
+ const n = MapTreeModule_size(m) | 0;
760
+ const res = fill(new Array(n), 0, n, [null, null]);
761
+ MapTreeModule_copyToArray(m, res, 0);
762
+ return res;
763
+ }
293
764
  function MapTreeModule_ofList(comparer, l) {
294
- return fold((acc, tupledArg) => MapTreeModule_add(comparer, tupledArg[0], tupledArg[1], acc), MapTreeModule_empty(), l);
765
+ return fold$1((acc, tupledArg) => MapTreeModule_add(comparer, tupledArg[0], tupledArg[1], acc), MapTreeModule_empty(), l);
295
766
  }
296
767
  function MapTreeModule_mkFromEnumerator(comparer_mut, acc_mut, e_mut) {
297
768
  MapTreeModule_mkFromEnumerator: while (true) {
@@ -306,6 +777,7 @@ function MapTreeModule_mkFromEnumerator(comparer_mut, acc_mut, e_mut) {
306
777
  else {
307
778
  return acc;
308
779
  }
780
+ break;
309
781
  }
310
782
  }
311
783
  function MapTreeModule_ofArray(comparer, arr) {
@@ -340,10 +812,13 @@ class MapTreeModule_MapIterator$2 extends Record {
340
812
  this.started = started;
341
813
  }
342
814
  }
815
+ function MapTreeModule_MapIterator$2_$reflection(gen0, gen1) {
816
+ return record_type("Map.MapTreeModule.MapIterator`2", [gen0, gen1], MapTreeModule_MapIterator$2, () => [["stack", list_type(option_type(MapTreeLeaf$2_$reflection(gen0, gen1)))], ["started", bool_type]]);
817
+ }
343
818
  function MapTreeModule_collapseLHS(stack_mut) {
344
819
  MapTreeModule_collapseLHS: while (true) {
345
820
  const stack = stack_mut;
346
- if (!isEmpty(stack)) {
821
+ if (!isEmpty$1(stack)) {
347
822
  const rest = tail(stack);
348
823
  const m = head(stack);
349
824
  if (m != null) {
@@ -365,6 +840,7 @@ function MapTreeModule_collapseLHS(stack_mut) {
365
840
  else {
366
841
  return empty$1();
367
842
  }
843
+ break;
368
844
  }
369
845
  }
370
846
  function MapTreeModule_mkIterator(m) {
@@ -379,7 +855,7 @@ function MapTreeModule_alreadyFinished() {
379
855
  function MapTreeModule_current(i) {
380
856
  if (i.started) {
381
857
  const matchValue = i.stack;
382
- if (!isEmpty(matchValue)) {
858
+ if (!isEmpty$1(matchValue)) {
383
859
  if (head(matchValue) != null) {
384
860
  const m = value(head(matchValue));
385
861
  if (m instanceof MapTreeNode$2) {
@@ -404,7 +880,7 @@ function MapTreeModule_current(i) {
404
880
  function MapTreeModule_moveNext(i) {
405
881
  if (i.started) {
406
882
  const matchValue = i.stack;
407
- if (!isEmpty(matchValue)) {
883
+ if (!isEmpty$1(matchValue)) {
408
884
  if (head(matchValue) != null) {
409
885
  const m = value(head(matchValue));
410
886
  if (m instanceof MapTreeNode$2) {
@@ -412,7 +888,7 @@ function MapTreeModule_moveNext(i) {
412
888
  }
413
889
  else {
414
890
  i.stack = MapTreeModule_collapseLHS(tail(matchValue));
415
- return !isEmpty(i.stack);
891
+ return !isEmpty$1(i.stack);
416
892
  }
417
893
  }
418
894
  else {
@@ -425,7 +901,7 @@ function MapTreeModule_moveNext(i) {
425
901
  }
426
902
  else {
427
903
  i.started = true;
428
- return !isEmpty(i.stack);
904
+ return !isEmpty$1(i.stack);
429
905
  }
430
906
  }
431
907
  function MapTreeModule_mkIEnumerator(m) {
@@ -447,6 +923,90 @@ function MapTreeModule_mkIEnumerator(m) {
447
923
  },
448
924
  };
449
925
  }
926
+ function MapTreeModule_toSeq(s) {
927
+ return unfold((en_1) => {
928
+ if (en_1["System.Collections.IEnumerator.MoveNext"]()) {
929
+ return [en_1["System.Collections.Generic.IEnumerator`1.get_Current"](), en_1];
930
+ }
931
+ else {
932
+ return undefined;
933
+ }
934
+ }, MapTreeModule_mkIEnumerator(s));
935
+ }
936
+ function MapTreeModule_leftmost(m_mut) {
937
+ MapTreeModule_leftmost: while (true) {
938
+ const m = m_mut;
939
+ if (m != null) {
940
+ const m2 = value(m);
941
+ let matchResult, nd_1;
942
+ if (m2 instanceof MapTreeNode$2) {
943
+ if (MapTreeNode$2__get_Height(m2) > 1) {
944
+ matchResult = 0;
945
+ nd_1 = m2;
946
+ }
947
+ else {
948
+ matchResult = 1;
949
+ }
950
+ }
951
+ else {
952
+ matchResult = 1;
953
+ }
954
+ switch (matchResult) {
955
+ case 0:
956
+ if (MapTreeNode$2__get_Left(nd_1) == null) {
957
+ return [MapTreeLeaf$2__get_Key(nd_1), MapTreeLeaf$2__get_Value(nd_1)];
958
+ }
959
+ else {
960
+ m_mut = MapTreeNode$2__get_Left(nd_1);
961
+ continue MapTreeModule_leftmost;
962
+ }
963
+ default:
964
+ return [MapTreeLeaf$2__get_Key(m2), MapTreeLeaf$2__get_Value(m2)];
965
+ }
966
+ }
967
+ else {
968
+ throw new Error();
969
+ }
970
+ break;
971
+ }
972
+ }
973
+ function MapTreeModule_rightmost(m_mut) {
974
+ MapTreeModule_rightmost: while (true) {
975
+ const m = m_mut;
976
+ if (m != null) {
977
+ const m2 = value(m);
978
+ let matchResult, nd_1;
979
+ if (m2 instanceof MapTreeNode$2) {
980
+ if (MapTreeNode$2__get_Height(m2) > 1) {
981
+ matchResult = 0;
982
+ nd_1 = m2;
983
+ }
984
+ else {
985
+ matchResult = 1;
986
+ }
987
+ }
988
+ else {
989
+ matchResult = 1;
990
+ }
991
+ switch (matchResult) {
992
+ case 0:
993
+ if (MapTreeNode$2__get_Right(nd_1) == null) {
994
+ return [MapTreeLeaf$2__get_Key(nd_1), MapTreeLeaf$2__get_Value(nd_1)];
995
+ }
996
+ else {
997
+ m_mut = MapTreeNode$2__get_Right(nd_1);
998
+ continue MapTreeModule_rightmost;
999
+ }
1000
+ default:
1001
+ return [MapTreeLeaf$2__get_Key(m2), MapTreeLeaf$2__get_Value(m2)];
1002
+ }
1003
+ }
1004
+ else {
1005
+ throw new Error();
1006
+ }
1007
+ break;
1008
+ }
1009
+ }
450
1010
  class FSharpMap {
451
1011
  constructor(comparer, tree) {
452
1012
  this.comparer = comparer;
@@ -501,7 +1061,7 @@ class FSharpMap {
501
1061
  }
502
1062
  toString() {
503
1063
  const this$ = this;
504
- return ("map [" + join("; ", map((kv) => format("({0}, {1})", kv[0], kv[1]), this$))) + "]";
1064
+ return ("map [" + join("; ", map$1((kv) => format("({0}, {1})", kv[0], kv[1]), this$))) + "]";
505
1065
  }
506
1066
  get [Symbol.toStringTag]() {
507
1067
  return "FSharpMap";
@@ -571,10 +1131,11 @@ class FSharpMap {
571
1131
  }
572
1132
  delete(_arg) {
573
1133
  throw new Error("Map cannot be mutated");
1134
+ return false;
574
1135
  }
575
1136
  entries() {
576
1137
  const m = this;
577
- return map((p) => [p[0], p[1]], m);
1138
+ return map$1((p) => [p[0], p[1]], m);
578
1139
  }
579
1140
  get(k) {
580
1141
  const m = this;
@@ -586,40 +1147,123 @@ class FSharpMap {
586
1147
  }
587
1148
  keys() {
588
1149
  const m = this;
589
- return map((p) => p[0], m);
1150
+ return map$1((p) => p[0], m);
590
1151
  }
591
1152
  set(k, v) {
1153
+ const m = this;
592
1154
  throw new Error("Map cannot be mutated");
1155
+ return m;
593
1156
  }
594
1157
  values() {
595
1158
  const m = this;
596
- return map((p) => p[1], m);
1159
+ return map$1((p) => p[1], m);
597
1160
  }
598
1161
  forEach(f, thisArg) {
599
1162
  const m = this;
600
- iterate((p) => {
1163
+ iterate$1((p) => {
601
1164
  f(p[1], p[0], m);
602
1165
  }, m);
603
1166
  }
604
1167
  }
1168
+ function FSharpMap_$reflection(gen0, gen1) {
1169
+ return class_type("Map.FSharpMap", [gen0, gen1], FSharpMap);
1170
+ }
605
1171
  function FSharpMap_$ctor(comparer, tree) {
606
1172
  return new FSharpMap(comparer, tree);
607
1173
  }
608
1174
  function FSharpMap_Empty(comparer) {
609
1175
  return FSharpMap_$ctor(comparer, MapTreeModule_empty());
610
1176
  }
1177
+ function FSharpMap__get_Comparer(m) {
1178
+ return m.comparer;
1179
+ }
1180
+ function FSharpMap__get_Tree(m) {
1181
+ return m.tree;
1182
+ }
1183
+ function FSharpMap__Add(m, key, value) {
1184
+ return FSharpMap_$ctor(m.comparer, MapTreeModule_add(m.comparer, key, value, m.tree));
1185
+ }
1186
+ function FSharpMap__Change(m, key, f) {
1187
+ return FSharpMap_$ctor(m.comparer, MapTreeModule_change(m.comparer, key, f, m.tree));
1188
+ }
1189
+ function FSharpMap__get_IsEmpty(m) {
1190
+ return m.tree == null;
1191
+ }
611
1192
  function FSharpMap__get_Item(m, key) {
612
1193
  return MapTreeModule_find(m.comparer, key, m.tree);
613
1194
  }
1195
+ function FSharpMap__TryPick(m, f) {
1196
+ return MapTreeModule_tryPick(f, m.tree);
1197
+ }
1198
+ function FSharpMap__Exists(m, predicate) {
1199
+ return MapTreeModule_exists(predicate, m.tree);
1200
+ }
1201
+ function FSharpMap__Filter(m, predicate) {
1202
+ return FSharpMap_$ctor(m.comparer, MapTreeModule_filter(m.comparer, predicate, m.tree));
1203
+ }
1204
+ function FSharpMap__ForAll(m, predicate) {
1205
+ return MapTreeModule_forall(predicate, m.tree);
1206
+ }
1207
+ function FSharpMap__Fold(m, f, acc) {
1208
+ return MapTreeModule_foldBack(f, m.tree, acc);
1209
+ }
1210
+ function FSharpMap__FoldSection(m, lo, hi, f, acc) {
1211
+ return MapTreeModule_foldSection(m.comparer, lo, hi, f, m.tree, acc);
1212
+ }
1213
+ function FSharpMap__Iterate(m, f) {
1214
+ MapTreeModule_iter(f, m.tree);
1215
+ }
1216
+ function FSharpMap__MapRange(m, f) {
1217
+ return FSharpMap_$ctor(m.comparer, MapTreeModule_map(f, m.tree));
1218
+ }
1219
+ function FSharpMap__Map(m, f) {
1220
+ return FSharpMap_$ctor(m.comparer, MapTreeModule_mapi(f, m.tree));
1221
+ }
1222
+ function FSharpMap__Partition(m, predicate) {
1223
+ const patternInput = MapTreeModule_partition(m.comparer, predicate, m.tree);
1224
+ return [FSharpMap_$ctor(m.comparer, patternInput[0]), FSharpMap_$ctor(m.comparer, patternInput[1])];
1225
+ }
614
1226
  function FSharpMap__get_Count(m) {
615
1227
  return MapTreeModule_size(m.tree);
616
1228
  }
617
1229
  function FSharpMap__ContainsKey(m, key) {
618
1230
  return MapTreeModule_mem(m.comparer, key, m.tree);
619
1231
  }
1232
+ function FSharpMap__Remove(m, key) {
1233
+ return FSharpMap_$ctor(m.comparer, MapTreeModule_remove(m.comparer, key, m.tree));
1234
+ }
1235
+ function FSharpMap__TryGetValue(_, key, value$1) {
1236
+ const matchValue = MapTreeModule_tryFind(_.comparer, key, _.tree);
1237
+ if (matchValue == null) {
1238
+ return false;
1239
+ }
1240
+ else {
1241
+ const v = value(matchValue);
1242
+ value$1.contents = v;
1243
+ return true;
1244
+ }
1245
+ }
1246
+ function FSharpMap__get_Keys(_) {
1247
+ return map$2((kvp) => kvp[0], MapTreeModule_toArray(_.tree));
1248
+ }
1249
+ function FSharpMap__get_Values(_) {
1250
+ return map$2((kvp) => kvp[1], MapTreeModule_toArray(_.tree));
1251
+ }
1252
+ function FSharpMap__get_MinKeyValue(m) {
1253
+ return MapTreeModule_leftmost(m.tree);
1254
+ }
1255
+ function FSharpMap__get_MaxKeyValue(m) {
1256
+ return MapTreeModule_rightmost(m.tree);
1257
+ }
620
1258
  function FSharpMap__TryFind(m, key) {
621
1259
  return MapTreeModule_tryFind(m.comparer, key, m.tree);
622
1260
  }
1261
+ function FSharpMap__ToList(m) {
1262
+ return MapTreeModule_toList(m.tree);
1263
+ }
1264
+ function FSharpMap__ToArray(m) {
1265
+ return MapTreeModule_toArray(m.tree);
1266
+ }
623
1267
  function FSharpMap__ComputeHashCode(this$) {
624
1268
  const combineHash = (x, y) => (((x << 1) + y) + 631);
625
1269
  let res = 0;
@@ -636,9 +1280,88 @@ function FSharpMap__ComputeHashCode(this$) {
636
1280
  }
637
1281
  return res | 0;
638
1282
  }
1283
+ function isEmpty(table) {
1284
+ return FSharpMap__get_IsEmpty(table);
1285
+ }
1286
+ function add(key, value, table) {
1287
+ return FSharpMap__Add(table, key, value);
1288
+ }
1289
+ function change(key, f, table) {
1290
+ return FSharpMap__Change(table, key, f);
1291
+ }
1292
+ function find(key, table) {
1293
+ return FSharpMap__get_Item(table, key);
1294
+ }
639
1295
  function tryFind(key, table) {
640
1296
  return FSharpMap__TryFind(table, key);
641
1297
  }
1298
+ function remove(key, table) {
1299
+ return FSharpMap__Remove(table, key);
1300
+ }
1301
+ function containsKey(key, table) {
1302
+ return FSharpMap__ContainsKey(table, key);
1303
+ }
1304
+ function iterate(action, table) {
1305
+ FSharpMap__Iterate(table, action);
1306
+ }
1307
+ function tryPick(chooser, table) {
1308
+ return FSharpMap__TryPick(table, chooser);
1309
+ }
1310
+ function pick(chooser, table) {
1311
+ const matchValue = tryPick(chooser, table);
1312
+ if (matchValue != null) {
1313
+ return value(matchValue);
1314
+ }
1315
+ else {
1316
+ throw new Error();
1317
+ }
1318
+ }
1319
+ function exists(predicate, table) {
1320
+ return FSharpMap__Exists(table, predicate);
1321
+ }
1322
+ function filter(predicate, table) {
1323
+ return FSharpMap__Filter(table, predicate);
1324
+ }
1325
+ function partition(predicate, table) {
1326
+ return FSharpMap__Partition(table, predicate);
1327
+ }
1328
+ function forAll(predicate, table) {
1329
+ return FSharpMap__ForAll(table, predicate);
1330
+ }
1331
+ function map(mapping, table) {
1332
+ return FSharpMap__Map(table, mapping);
1333
+ }
1334
+ function fold(folder, state, table) {
1335
+ return MapTreeModule_fold(folder, state, FSharpMap__get_Tree(table));
1336
+ }
1337
+ function foldBack(folder, table, state) {
1338
+ return MapTreeModule_foldBack(folder, FSharpMap__get_Tree(table), state);
1339
+ }
1340
+ function toSeq(table) {
1341
+ return map$1((kvp) => [kvp[0], kvp[1]], table);
1342
+ }
1343
+ function findKey(predicate, table) {
1344
+ return pick$1((kvp) => {
1345
+ const k = kvp[0];
1346
+ if (predicate(k, kvp[1])) {
1347
+ return some(k);
1348
+ }
1349
+ else {
1350
+ return undefined;
1351
+ }
1352
+ }, table);
1353
+ }
1354
+ function tryFindKey(predicate, table) {
1355
+ return tryPick$1((kvp) => {
1356
+ const k = kvp[0];
1357
+ if (predicate(k, kvp[1])) {
1358
+ return some(k);
1359
+ }
1360
+ else {
1361
+ return undefined;
1362
+ }
1363
+ }, table);
1364
+ }
642
1365
  function ofList(elements, comparer) {
643
1366
  return FSharpMap_$ctor(comparer, MapTreeModule_ofSeq(comparer, elements));
644
1367
  }
@@ -648,8 +1371,29 @@ function ofSeq(elements, comparer) {
648
1371
  function ofArray(elements, comparer) {
649
1372
  return FSharpMap_$ctor(comparer, MapTreeModule_ofSeq(comparer, elements));
650
1373
  }
1374
+ function toList(table) {
1375
+ return FSharpMap__ToList(table);
1376
+ }
1377
+ function toArray(table) {
1378
+ return FSharpMap__ToArray(table);
1379
+ }
1380
+ function keys(table) {
1381
+ return FSharpMap__get_Keys(table);
1382
+ }
1383
+ function values(table) {
1384
+ return FSharpMap__get_Values(table);
1385
+ }
1386
+ function minKeyValue(table) {
1387
+ return FSharpMap__get_MinKeyValue(table);
1388
+ }
1389
+ function maxKeyValue(table) {
1390
+ return FSharpMap__get_MaxKeyValue(table);
1391
+ }
651
1392
  function empty(comparer) {
652
1393
  return FSharpMap_Empty(comparer);
653
1394
  }
1395
+ function count(table) {
1396
+ return FSharpMap__get_Count(table);
1397
+ }
654
1398
 
655
- export { FSharpMap, FSharpMap_$ctor, FSharpMap_Empty, FSharpMap__ComputeHashCode, FSharpMap__ContainsKey, FSharpMap__TryFind, FSharpMap__get_Count, FSharpMap__get_Item, MapTreeLeaf$2, MapTreeLeaf$2_$ctor_5BDDA1, MapTreeLeaf$2__get_Key, MapTreeLeaf$2__get_Value, MapTreeModule_MapIterator$2, MapTreeModule_add, MapTreeModule_alreadyFinished, MapTreeModule_collapseLHS, MapTreeModule_copyToArray, MapTreeModule_current, MapTreeModule_empty, MapTreeModule_find, MapTreeModule_iter, MapTreeModule_iterOpt, MapTreeModule_mem, MapTreeModule_mk, MapTreeModule_mkFromEnumerator, MapTreeModule_mkIEnumerator, MapTreeModule_mkIterator, MapTreeModule_moveNext, MapTreeModule_notStarted, MapTreeModule_ofArray, MapTreeModule_ofList, MapTreeModule_ofSeq, MapTreeModule_rebalance, MapTreeModule_size, MapTreeModule_sizeAux, MapTreeModule_tryFind, MapTreeNode$2, MapTreeNode$2_$ctor_Z39DE9543, MapTreeNode$2__get_Height, MapTreeNode$2__get_Left, MapTreeNode$2__get_Right, empty, ofArray, ofList, ofSeq, tryFind };
1399
+ export { FSharpMap, FSharpMap_$ctor, FSharpMap_$reflection, FSharpMap_Empty, FSharpMap__Add, FSharpMap__Change, FSharpMap__ComputeHashCode, FSharpMap__ContainsKey, FSharpMap__Exists, FSharpMap__Filter, FSharpMap__Fold, FSharpMap__FoldSection, FSharpMap__ForAll, FSharpMap__Iterate, FSharpMap__Map, FSharpMap__MapRange, FSharpMap__Partition, FSharpMap__Remove, FSharpMap__ToArray, FSharpMap__ToList, FSharpMap__TryFind, FSharpMap__TryGetValue, FSharpMap__TryPick, FSharpMap__get_Comparer, FSharpMap__get_Count, FSharpMap__get_IsEmpty, FSharpMap__get_Item, FSharpMap__get_Keys, FSharpMap__get_MaxKeyValue, FSharpMap__get_MinKeyValue, FSharpMap__get_Tree, FSharpMap__get_Values, MapTreeLeaf$2, MapTreeLeaf$2_$ctor_5BDDA1, MapTreeLeaf$2_$reflection, MapTreeLeaf$2__get_Key, MapTreeLeaf$2__get_Value, MapTreeModule_MapIterator$2, MapTreeModule_MapIterator$2_$reflection, MapTreeModule_add, MapTreeModule_alreadyFinished, MapTreeModule_change, MapTreeModule_collapseLHS, MapTreeModule_copyToArray, MapTreeModule_current, MapTreeModule_empty, MapTreeModule_exists, MapTreeModule_existsOpt, MapTreeModule_filter, MapTreeModule_filter1, MapTreeModule_filterAux, MapTreeModule_find, MapTreeModule_fold, MapTreeModule_foldBack, MapTreeModule_foldBackOpt, MapTreeModule_foldOpt, MapTreeModule_foldSection, MapTreeModule_foldSectionOpt, MapTreeModule_forall, MapTreeModule_forallOpt, MapTreeModule_iter, MapTreeModule_iterOpt, MapTreeModule_leftmost, MapTreeModule_map, MapTreeModule_mapi, MapTreeModule_mapiOpt, MapTreeModule_mem, MapTreeModule_mk, MapTreeModule_mkFromEnumerator, MapTreeModule_mkIEnumerator, MapTreeModule_mkIterator, MapTreeModule_moveNext, MapTreeModule_notStarted, MapTreeModule_ofArray, MapTreeModule_ofList, MapTreeModule_ofSeq, MapTreeModule_partition, MapTreeModule_partition1, MapTreeModule_partitionAux, MapTreeModule_rebalance, MapTreeModule_remove, MapTreeModule_rightmost, MapTreeModule_size, MapTreeModule_sizeAux, MapTreeModule_spliceOutSuccessor, MapTreeModule_toArray, MapTreeModule_toList, MapTreeModule_toSeq, MapTreeModule_tryFind, MapTreeModule_tryPick, MapTreeModule_tryPickOpt, MapTreeNode$2, MapTreeNode$2_$ctor_Z39DE9543, MapTreeNode$2_$reflection, MapTreeNode$2__get_Height, MapTreeNode$2__get_Left, MapTreeNode$2__get_Right, add, change, containsKey, count, empty, exists, filter, find, findKey, fold, foldBack, forAll, isEmpty, iterate, keys, map, maxKeyValue, minKeyValue, ofArray, ofList, ofSeq, partition, pick, remove, toArray, toList, toSeq, tryFind, tryFindKey, tryPick, values };