@nfdi4plants/arctrl 2.5.1 → 3.0.0-alpha.2
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/LICENSE +21 -0
- package/README.md +1 -1
- package/dist/ts/cjs/index.js +39 -0
- package/dist/ts/cjs/ts/ARC.js +965 -0
- package/dist/ts/cjs/ts/Contract/ARC.js +61 -0
- package/dist/ts/cjs/ts/Contract/ArcAssay.js +103 -0
- package/dist/ts/cjs/ts/Contract/ArcInvestigation.js +77 -0
- package/dist/ts/cjs/ts/Contract/ArcRun.js +103 -0
- package/dist/ts/cjs/ts/Contract/ArcStudy.js +103 -0
- package/dist/ts/cjs/ts/Contract/ArcWorkflow.js +104 -0
- package/dist/ts/cjs/ts/Contract/Contract.js +100 -0
- package/dist/ts/cjs/ts/Contract/Datamap.js +314 -0
- package/dist/ts/cjs/ts/Contract/Git.js +94 -0
- package/dist/ts/cjs/ts/Contract/ValidationPackagesConfig.js +97 -0
- package/dist/ts/cjs/ts/ContractIO/ContractIO.js +217 -0
- package/dist/ts/cjs/ts/ContractIO/FileSystemHelper.js +205 -0
- package/dist/ts/cjs/ts/Conversion.js +1700 -0
- package/dist/ts/cjs/ts/Core/ArcTypes.js +3803 -0
- package/dist/ts/cjs/ts/Core/Comment.js +106 -0
- package/dist/ts/cjs/ts/Core/CommentList.js +134 -0
- package/dist/ts/cjs/ts/Core/Conversion.js +1131 -0
- package/dist/ts/cjs/ts/Core/Data.js +194 -0
- package/dist/ts/cjs/ts/Core/DataContext.js +141 -0
- package/dist/ts/cjs/ts/Core/DataFile.js +98 -0
- package/dist/ts/cjs/ts/Core/DataMap.js +185 -0
- package/dist/ts/cjs/ts/Core/Helper/Collections.js +419 -0
- package/dist/ts/cjs/ts/Core/Helper/HashCodes.js +40 -0
- package/dist/ts/cjs/ts/Core/Helper/Identifier.js +329 -0
- package/dist/ts/cjs/ts/Core/Helper/ORCID.js +40 -0
- package/dist/ts/cjs/ts/Core/Helper/Printer.js +2 -0
- package/dist/ts/cjs/ts/Core/Helper/Regex.js +616 -0
- package/dist/ts/cjs/ts/Core/Helper/SemVer.js +59 -0
- package/dist/ts/cjs/ts/Core/Helper/Url.js +40 -0
- package/dist/ts/cjs/ts/Core/IPropertyValue.js +2 -0
- package/dist/ts/cjs/ts/Core/IdentifierSetters.js +27 -0
- package/dist/ts/cjs/ts/Core/OntologyAnnotation.js +215 -0
- package/dist/ts/cjs/ts/Core/OntologySourceReference.js +94 -0
- package/dist/ts/cjs/ts/Core/Person.js +196 -0
- package/dist/ts/cjs/ts/Core/Process/ColumnIndex.js +258 -0
- package/dist/ts/cjs/ts/Core/Process/Component.js +200 -0
- package/dist/ts/cjs/ts/Core/Process/Factor.js +111 -0
- package/dist/ts/cjs/ts/Core/Process/FactorValue.js +143 -0
- package/dist/ts/cjs/ts/Core/Process/Material.js +68 -0
- package/dist/ts/cjs/ts/Core/Process/MaterialAttribute.js +103 -0
- package/dist/ts/cjs/ts/Core/Process/MaterialAttributeValue.js +160 -0
- package/dist/ts/cjs/ts/Core/Process/MaterialType.js +51 -0
- package/dist/ts/cjs/ts/Core/Process/Process.js +371 -0
- package/dist/ts/cjs/ts/Core/Process/ProcessInput.js +321 -0
- package/dist/ts/cjs/ts/Core/Process/ProcessOutput.js +282 -0
- package/dist/ts/cjs/ts/Core/Process/ProcessParameterValue.js +141 -0
- package/dist/ts/cjs/ts/Core/Process/ProcessSequence.js +250 -0
- package/dist/ts/cjs/ts/Core/Process/Protocol.js +248 -0
- package/dist/ts/cjs/ts/Core/Process/ProtocolParameter.js +75 -0
- package/dist/ts/cjs/ts/Core/Process/Sample.js +73 -0
- package/dist/ts/cjs/ts/Core/Process/Source.js +56 -0
- package/dist/ts/cjs/ts/Core/Publication.js +118 -0
- package/dist/ts/cjs/ts/Core/Table/ArcTable.js +906 -0
- package/dist/ts/cjs/ts/Core/Table/ArcTableAux.js +582 -0
- package/dist/ts/cjs/ts/Core/Table/ArcTables.js +483 -0
- package/dist/ts/cjs/ts/Core/Table/CompositeCell.js +317 -0
- package/dist/ts/cjs/ts/Core/Table/CompositeColumn.js +58 -0
- package/dist/ts/cjs/ts/Core/Table/CompositeHeader.js +718 -0
- package/dist/ts/cjs/ts/Core/Template.js +196 -0
- package/dist/ts/cjs/ts/Core/Templates.js +86 -0
- package/dist/ts/cjs/ts/Core/URI.js +20 -0
- package/dist/ts/cjs/ts/Core/Value.js +191 -0
- package/dist/ts/cjs/ts/CrossAsync.js +35 -0
- package/dist/ts/cjs/ts/FileSystem/Commit.js +20 -0
- package/dist/ts/cjs/ts/FileSystem/DefaultGitattributes.js +4 -0
- package/dist/ts/cjs/ts/FileSystem/DefaultGitignore.js +4 -0
- package/dist/ts/cjs/ts/FileSystem/FileSystem.js +55 -0
- package/dist/ts/cjs/ts/FileSystem/FileSystemTree.js +322 -0
- package/dist/ts/cjs/ts/FileSystem/Path.js +63 -0
- package/dist/ts/cjs/ts/Json/Assay.js +234 -0
- package/dist/ts/cjs/ts/Json/Comment.js +119 -0
- package/dist/ts/cjs/ts/Json/Data.js +147 -0
- package/dist/ts/cjs/ts/Json/DataFile.js +54 -0
- package/dist/ts/cjs/ts/Json/DataMap/DataContext.js +40 -0
- package/dist/ts/cjs/ts/Json/DataMap/DataMap.js +30 -0
- package/dist/ts/cjs/ts/Json/Decode.js +126 -0
- package/dist/ts/cjs/ts/Json/Encode.js +75 -0
- package/dist/ts/cjs/ts/Json/IDTable.js +30 -0
- package/dist/ts/cjs/ts/Json/Investigation.js +254 -0
- package/dist/ts/cjs/ts/Json/OntologyAnnotation.js +207 -0
- package/dist/ts/cjs/ts/Json/OntologySourceReference.js +125 -0
- package/dist/ts/cjs/ts/Json/Person.js +338 -0
- package/dist/ts/cjs/ts/Json/Process/AssayMaterials.js +21 -0
- package/dist/ts/cjs/ts/Json/Process/Component.js +47 -0
- package/dist/ts/cjs/ts/Json/Process/Factor.js +58 -0
- package/dist/ts/cjs/ts/Json/Process/FactorValue.js +47 -0
- package/dist/ts/cjs/ts/Json/Process/Material.js +120 -0
- package/dist/ts/cjs/ts/Json/Process/MaterialAttribute.js +47 -0
- package/dist/ts/cjs/ts/Json/Process/MaterialAttributeValue.js +47 -0
- package/dist/ts/cjs/ts/Json/Process/MaterialType.js +46 -0
- package/dist/ts/cjs/ts/Json/Process/Process.js +109 -0
- package/dist/ts/cjs/ts/Json/Process/ProcessInput.js +38 -0
- package/dist/ts/cjs/ts/Json/Process/ProcessOutput.js +33 -0
- package/dist/ts/cjs/ts/Json/Process/ProcessParameterValue.js +33 -0
- package/dist/ts/cjs/ts/Json/Process/Protocol.js +180 -0
- package/dist/ts/cjs/ts/Json/Process/ProtocolParameter.js +47 -0
- package/dist/ts/cjs/ts/Json/Process/Sample.js +176 -0
- package/dist/ts/cjs/ts/Json/Process/Source.js +145 -0
- package/dist/ts/cjs/ts/Json/Process/StudyMaterials.js +23 -0
- package/dist/ts/cjs/ts/Json/Process/Value.js +39 -0
- package/dist/ts/cjs/ts/Json/PropertyValue.js +300 -0
- package/dist/ts/cjs/ts/Json/Publication.js +130 -0
- package/dist/ts/cjs/ts/Json/ROCrate/LDContext.js +123 -0
- package/dist/ts/cjs/ts/Json/ROCrate/LDGraph.js +88 -0
- package/dist/ts/cjs/ts/Json/ROCrate/LDNode.js +213 -0
- package/dist/ts/cjs/ts/Json/ROCrate/LDRef.js +25 -0
- package/dist/ts/cjs/ts/Json/ROCrate/LDValue.js +70 -0
- package/dist/ts/cjs/ts/Json/StringTable.js +63 -0
- package/dist/ts/cjs/ts/Json/Study.js +347 -0
- package/dist/ts/cjs/ts/Json/Table/ArcTable.js +230 -0
- package/dist/ts/cjs/ts/Json/Table/CellTable.js +58 -0
- package/dist/ts/cjs/ts/Json/Table/CompositeCell.js +103 -0
- package/dist/ts/cjs/ts/Json/Table/CompositeHeader.js +108 -0
- package/dist/ts/cjs/ts/Json/Table/IOType.js +16 -0
- package/dist/ts/cjs/ts/Json/Table/OATable.js +55 -0
- package/dist/ts/cjs/ts/Json/Table/Templates.js +106 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_assay_context.js +89 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_comment_context.js +47 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_data_context.js +61 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_investigation_context.js +97 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_material_context.js +58 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_ontology_annotation_context.js +56 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +62 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_organization_context.js +42 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_person_context.js +112 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_process_context.js +82 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_protocol_context.js +85 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_publication_context.js +66 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_sample_context.js +53 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_source_context.js +53 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_study_context.js +113 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/property_value_context.js +61 -0
- package/dist/ts/cjs/ts/Json/context/rocrate/rocrate_context.js +63 -0
- package/dist/ts/cjs/ts/Json.js +195 -0
- package/dist/ts/cjs/ts/JsonIO/Assay.js +104 -0
- package/dist/ts/cjs/ts/JsonIO/Investigation.js +104 -0
- package/dist/ts/cjs/ts/JsonIO/OntologyAnnotation.js +77 -0
- package/dist/ts/cjs/ts/JsonIO/Study.js +104 -0
- package/dist/ts/cjs/ts/JsonIO/Table/Compression.js +47 -0
- package/dist/ts/cjs/ts/JsonIO/Table/Templates.js +92 -0
- package/dist/ts/cjs/ts/ROCrate/Generic/Comment.js +117 -0
- package/dist/ts/cjs/ts/ROCrate/Generic/Dataset.js +671 -0
- package/dist/ts/cjs/ts/ROCrate/Generic/DefinedTerm.js +117 -0
- package/dist/ts/cjs/ts/ROCrate/Generic/File.js +202 -0
- package/dist/ts/cjs/ts/ROCrate/Generic/LabProcess.js +240 -0
- package/dist/ts/cjs/ts/ROCrate/Generic/LabProtocol.js +277 -0
- package/dist/ts/cjs/ts/ROCrate/Generic/Organization.js +73 -0
- package/dist/ts/cjs/ts/ROCrate/Generic/Person.js +413 -0
- package/dist/ts/cjs/ts/ROCrate/Generic/PostalAddress.js +161 -0
- package/dist/ts/cjs/ts/ROCrate/Generic/PropertyValue.js +550 -0
- package/dist/ts/cjs/ts/ROCrate/Generic/Sample.js +141 -0
- package/dist/ts/cjs/ts/ROCrate/Generic/ScholarlyArticle.js +189 -0
- package/dist/ts/cjs/ts/ROCrate/Helper.js +7 -0
- package/dist/ts/cjs/ts/ROCrate/LDContext.js +284 -0
- package/dist/ts/cjs/ts/ROCrate/LDObject.js +984 -0
- package/dist/ts/cjs/ts/ROCrate/ROCrateContext.js +44 -0
- package/dist/ts/cjs/ts/ROCrateIO.js +64 -0
- package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/ArcTable.js +165 -0
- package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/CompositeCell.js +68 -0
- package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +79 -0
- package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +476 -0
- package/dist/ts/cjs/ts/Spreadsheet/ArcAssay.js +218 -0
- package/dist/ts/cjs/ts/Spreadsheet/ArcInvestigation.js +340 -0
- package/dist/ts/cjs/ts/Spreadsheet/ArcRun.js +177 -0
- package/dist/ts/cjs/ts/Spreadsheet/ArcStudy.js +130 -0
- package/dist/ts/cjs/ts/Spreadsheet/ArcWorkflow.js +166 -0
- package/dist/ts/cjs/ts/Spreadsheet/CollectionAux.js +128 -0
- package/dist/ts/cjs/ts/Spreadsheet/DataMap.js +41 -0
- package/dist/ts/cjs/ts/Spreadsheet/DataMapTable/DataMapColumn.js +43 -0
- package/dist/ts/cjs/ts/Spreadsheet/DataMapTable/DataMapHeader.js +480 -0
- package/dist/ts/cjs/ts/Spreadsheet/DataMapTable/DataMapTable.js +105 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Assays.js +98 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Comment.js +68 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Contacts.js +92 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Conversions.js +187 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/DesignDescriptors.js +25 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Factors.js +83 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/OntologyAnnotation.js +65 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/OntologySourceReference.js +68 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Protocols.js +103 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Publication.js +88 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Run.js +99 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/SparseTable.js +460 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Study.js +259 -0
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Workflow.js +111 -0
- package/dist/ts/cjs/ts/Template.Web.js +29 -0
- package/dist/ts/cjs/ts/ValidationPackages/ValidationPackage.js +63 -0
- package/dist/ts/cjs/ts/ValidationPackages/ValidationPackagesConfig.js +90 -0
- package/dist/ts/cjs/ts/WebRequest/WebRequest.Node.js +17 -0
- package/dist/ts/cjs/ts/WebRequest/WebRequest.js +20 -0
- package/dist/ts/cjs/ts/Xlsx.js +133 -0
- package/dist/ts/cjs/ts/Yaml/Encode.js +9 -0
- package/dist/ts/cjs/ts/Yaml/ValidationPackage.js +49 -0
- package/dist/ts/cjs/ts/Yaml/ValidationPackagesConfig.js +50 -0
- package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +444 -0
- package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +142 -0
- package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +53 -0
- package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +23 -0
- package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +87 -0
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.js +2 -0
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.js +2 -0
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.js +5 -0
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.js +2 -0
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.js +123 -0
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.js +2 -0
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.js +2 -0
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.js +2 -0
- package/dist/ts/cjs/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +360 -0
- package/dist/ts/cjs/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +220 -0
- package/dist/ts/cjs/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +20 -0
- package/dist/ts/cjs/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +431 -0
- package/dist/ts/cjs/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +186 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.js +477 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.js +521 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.js +211 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.js +58 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.js +139 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.js +365 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.js +259 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.js +127 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.js +137 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.js +140 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.js +435 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.js +69 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.js +40 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.js +40 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.js +31 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.js +78 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.js +46 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.js +134 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.js +43 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.js +238 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.js +93 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.js +76 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.js +42 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.js +332 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.js +175 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.js +80 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.js +65 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.js +53 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.js +55 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.js +34 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.js +68 -0
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.js +72 -0
- package/dist/ts/cjs/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.js +1316 -0
- package/dist/ts/cjs/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.js +200 -0
- package/dist/ts/cjs/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.js +103 -0
- package/dist/ts/cjs/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.js +97 -0
- package/dist/ts/cjs/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.js +59 -0
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.js +1723 -0
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.js +75 -0
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +13 -0
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +50 -0
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +104 -0
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +527 -0
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.js +12 -0
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +235 -0
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +166 -0
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +174 -0
- package/dist/ts/esm/index.js +16 -0
- package/dist/ts/esm/ts/ARC.js +948 -0
- package/dist/ts/esm/ts/Contract/ARC.js +58 -0
- package/dist/ts/esm/ts/Contract/ArcAssay.js +93 -0
- package/dist/ts/esm/ts/Contract/ArcInvestigation.js +69 -0
- package/dist/ts/esm/ts/Contract/ArcRun.js +93 -0
- package/dist/ts/esm/ts/Contract/ArcStudy.js +93 -0
- package/dist/ts/esm/ts/Contract/ArcWorkflow.js +94 -0
- package/dist/ts/esm/ts/Contract/Contract.js +87 -0
- package/dist/ts/esm/ts/Contract/Datamap.js +287 -0
- package/dist/ts/esm/ts/Contract/Git.js +72 -0
- package/dist/ts/esm/ts/Contract/ValidationPackagesConfig.js +88 -0
- package/dist/ts/esm/ts/ContractIO/ContractIO.js +207 -0
- package/dist/ts/esm/ts/ContractIO/FileSystemHelper.js +176 -0
- package/dist/ts/esm/ts/Conversion.js +1582 -0
- package/dist/ts/esm/ts/Core/ArcTypes.js +3728 -0
- package/dist/ts/esm/ts/Core/Comment.js +98 -0
- package/dist/ts/esm/ts/Core/CommentList.js +126 -0
- package/dist/ts/esm/ts/Core/Conversion.js +1078 -0
- package/dist/ts/esm/ts/Core/Data.js +186 -0
- package/dist/ts/esm/ts/Core/DataContext.js +119 -0
- package/dist/ts/esm/ts/Core/DataFile.js +82 -0
- package/dist/ts/esm/ts/Core/DataMap.js +156 -0
- package/dist/ts/esm/ts/Core/Helper/Collections.js +390 -0
- package/dist/ts/esm/ts/Core/Helper/HashCodes.js +32 -0
- package/dist/ts/esm/ts/Core/Helper/Identifier.js +298 -0
- package/dist/ts/esm/ts/Core/Helper/ORCID.js +34 -0
- package/dist/ts/esm/ts/Core/Helper/Printer.js +1 -0
- package/dist/ts/esm/ts/Core/Helper/Regex.js +579 -0
- package/dist/ts/esm/ts/Core/Helper/SemVer.js +50 -0
- package/dist/ts/esm/ts/Core/Helper/Url.js +30 -0
- package/dist/ts/esm/ts/Core/IPropertyValue.js +1 -0
- package/dist/ts/esm/ts/Core/IdentifierSetters.js +21 -0
- package/dist/ts/esm/ts/Core/OntologyAnnotation.js +209 -0
- package/dist/ts/esm/ts/Core/OntologySourceReference.js +88 -0
- package/dist/ts/esm/ts/Core/Person.js +190 -0
- package/dist/ts/esm/ts/Core/Process/ColumnIndex.js +204 -0
- package/dist/ts/esm/ts/Core/Process/Component.js +180 -0
- package/dist/ts/esm/ts/Core/Process/Factor.js +106 -0
- package/dist/ts/esm/ts/Core/Process/FactorValue.js +127 -0
- package/dist/ts/esm/ts/Core/Process/Material.js +57 -0
- package/dist/ts/esm/ts/Core/Process/MaterialAttribute.js +86 -0
- package/dist/ts/esm/ts/Core/Process/MaterialAttributeValue.js +142 -0
- package/dist/ts/esm/ts/Core/Process/MaterialType.js +42 -0
- package/dist/ts/esm/ts/Core/Process/Process.js +341 -0
- package/dist/ts/esm/ts/Core/Process/ProcessInput.js +283 -0
- package/dist/ts/esm/ts/Core/Process/ProcessOutput.js +248 -0
- package/dist/ts/esm/ts/Core/Process/ProcessParameterValue.js +136 -0
- package/dist/ts/esm/ts/Core/Process/ProcessSequence.js +227 -0
- package/dist/ts/esm/ts/Core/Process/Protocol.js +210 -0
- package/dist/ts/esm/ts/Core/Process/ProtocolParameter.js +70 -0
- package/dist/ts/esm/ts/Core/Process/Sample.js +59 -0
- package/dist/ts/esm/ts/Core/Process/Source.js +45 -0
- package/dist/ts/esm/ts/Core/Publication.js +112 -0
- package/dist/ts/esm/ts/Core/Table/ArcTable.js +900 -0
- package/dist/ts/esm/ts/Core/Table/ArcTableAux.js +552 -0
- package/dist/ts/esm/ts/Core/Table/ArcTables.js +468 -0
- package/dist/ts/esm/ts/Core/Table/CompositeCell.js +308 -0
- package/dist/ts/esm/ts/Core/Table/CompositeColumn.js +53 -0
- package/dist/ts/esm/ts/Core/Table/CompositeHeader.js +691 -0
- package/dist/ts/esm/ts/Core/Template.js +186 -0
- package/dist/ts/esm/ts/Core/Templates.js +79 -0
- package/dist/ts/esm/ts/Core/URI.js +16 -0
- package/dist/ts/esm/ts/Core/Value.js +182 -0
- package/dist/ts/esm/ts/CrossAsync.js +27 -0
- package/dist/ts/esm/ts/FileSystem/Commit.js +15 -0
- package/dist/ts/esm/ts/FileSystem/DefaultGitattributes.js +1 -0
- package/dist/ts/esm/ts/FileSystem/DefaultGitignore.js +1 -0
- package/dist/ts/esm/ts/FileSystem/FileSystem.js +50 -0
- package/dist/ts/esm/ts/FileSystem/FileSystemTree.js +315 -0
- package/dist/ts/esm/ts/FileSystem/Path.js +51 -0
- package/dist/ts/esm/ts/Json/Assay.js +225 -0
- package/dist/ts/esm/ts/Json/Comment.js +111 -0
- package/dist/ts/esm/ts/Json/Data.js +138 -0
- package/dist/ts/esm/ts/Json/DataFile.js +50 -0
- package/dist/ts/esm/ts/Json/DataMap/DataContext.js +36 -0
- package/dist/ts/esm/ts/Json/DataMap/DataMap.js +24 -0
- package/dist/ts/esm/ts/Json/Decode.js +117 -0
- package/dist/ts/esm/ts/Json/Encode.js +63 -0
- package/dist/ts/esm/ts/Json/IDTable.js +26 -0
- package/dist/ts/esm/ts/Json/Investigation.js +244 -0
- package/dist/ts/esm/ts/Json/OntologyAnnotation.js +197 -0
- package/dist/ts/esm/ts/Json/OntologySourceReference.js +118 -0
- package/dist/ts/esm/ts/Json/Person.js +329 -0
- package/dist/ts/esm/ts/Json/Process/AssayMaterials.js +18 -0
- package/dist/ts/esm/ts/Json/Process/Component.js +42 -0
- package/dist/ts/esm/ts/Json/Process/Factor.js +53 -0
- package/dist/ts/esm/ts/Json/Process/FactorValue.js +42 -0
- package/dist/ts/esm/ts/Json/Process/Material.js +114 -0
- package/dist/ts/esm/ts/Json/Process/MaterialAttribute.js +42 -0
- package/dist/ts/esm/ts/Json/Process/MaterialAttributeValue.js +42 -0
- package/dist/ts/esm/ts/Json/Process/MaterialType.js +42 -0
- package/dist/ts/esm/ts/Json/Process/Process.js +103 -0
- package/dist/ts/esm/ts/Json/Process/ProcessInput.js +33 -0
- package/dist/ts/esm/ts/Json/Process/ProcessOutput.js +28 -0
- package/dist/ts/esm/ts/Json/Process/ProcessParameterValue.js +28 -0
- package/dist/ts/esm/ts/Json/Process/Protocol.js +174 -0
- package/dist/ts/esm/ts/Json/Process/ProtocolParameter.js +42 -0
- package/dist/ts/esm/ts/Json/Process/Sample.js +170 -0
- package/dist/ts/esm/ts/Json/Process/Source.js +139 -0
- package/dist/ts/esm/ts/Json/Process/StudyMaterials.js +20 -0
- package/dist/ts/esm/ts/Json/Process/Value.js +35 -0
- package/dist/ts/esm/ts/Json/PropertyValue.js +295 -0
- package/dist/ts/esm/ts/Json/Publication.js +123 -0
- package/dist/ts/esm/ts/Json/ROCrate/LDContext.js +119 -0
- package/dist/ts/esm/ts/Json/ROCrate/LDGraph.js +84 -0
- package/dist/ts/esm/ts/Json/ROCrate/LDNode.js +207 -0
- package/dist/ts/esm/ts/Json/ROCrate/LDRef.js +21 -0
- package/dist/ts/esm/ts/Json/ROCrate/LDValue.js +65 -0
- package/dist/ts/esm/ts/Json/StringTable.js +56 -0
- package/dist/ts/esm/ts/Json/Study.js +337 -0
- package/dist/ts/esm/ts/Json/Table/ArcTable.js +221 -0
- package/dist/ts/esm/ts/Json/Table/CellTable.js +51 -0
- package/dist/ts/esm/ts/Json/Table/CompositeCell.js +97 -0
- package/dist/ts/esm/ts/Json/Table/CompositeHeader.js +104 -0
- package/dist/ts/esm/ts/Json/Table/IOType.js +12 -0
- package/dist/ts/esm/ts/Json/Table/OATable.js +48 -0
- package/dist/ts/esm/ts/Json/Table/Templates.js +98 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_assay_context.js +84 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_comment_context.js +42 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_data_context.js +56 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_investigation_context.js +92 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_material_context.js +53 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_ontology_annotation_context.js +51 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +57 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_organization_context.js +37 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_person_context.js +107 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_process_context.js +77 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_protocol_context.js +80 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_publication_context.js +61 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_sample_context.js +48 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_source_context.js +48 -0
- package/dist/ts/esm/ts/Json/context/rocrate/isa_study_context.js +108 -0
- package/dist/ts/esm/ts/Json/context/rocrate/property_value_context.js +58 -0
- package/dist/ts/esm/ts/Json/context/rocrate/rocrate_context.js +58 -0
- package/dist/ts/esm/ts/Json.js +175 -0
- package/dist/ts/esm/ts/JsonIO/Assay.js +90 -0
- package/dist/ts/esm/ts/JsonIO/Investigation.js +90 -0
- package/dist/ts/esm/ts/JsonIO/OntologyAnnotation.js +66 -0
- package/dist/ts/esm/ts/JsonIO/Study.js +90 -0
- package/dist/ts/esm/ts/JsonIO/Table/Compression.js +43 -0
- package/dist/ts/esm/ts/JsonIO/Table/Templates.js +80 -0
- package/dist/ts/esm/ts/ROCrate/Generic/Comment.js +112 -0
- package/dist/ts/esm/ts/ROCrate/Generic/Dataset.js +666 -0
- package/dist/ts/esm/ts/ROCrate/Generic/DefinedTerm.js +112 -0
- package/dist/ts/esm/ts/ROCrate/Generic/File.js +197 -0
- package/dist/ts/esm/ts/ROCrate/Generic/LabProcess.js +235 -0
- package/dist/ts/esm/ts/ROCrate/Generic/LabProtocol.js +272 -0
- package/dist/ts/esm/ts/ROCrate/Generic/Organization.js +68 -0
- package/dist/ts/esm/ts/ROCrate/Generic/Person.js +408 -0
- package/dist/ts/esm/ts/ROCrate/Generic/PostalAddress.js +156 -0
- package/dist/ts/esm/ts/ROCrate/Generic/PropertyValue.js +545 -0
- package/dist/ts/esm/ts/ROCrate/Generic/Sample.js +136 -0
- package/dist/ts/esm/ts/ROCrate/Generic/ScholarlyArticle.js +184 -0
- package/dist/ts/esm/ts/ROCrate/Helper.js +4 -0
- package/dist/ts/esm/ts/ROCrate/LDContext.js +273 -0
- package/dist/ts/esm/ts/ROCrate/LDObject.js +967 -0
- package/dist/ts/esm/ts/ROCrate/ROCrateContext.js +38 -0
- package/dist/ts/esm/ts/ROCrateIO.js +54 -0
- package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/ArcTable.js +154 -0
- package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/CompositeCell.js +61 -0
- package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +72 -0
- package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +460 -0
- package/dist/ts/esm/ts/Spreadsheet/ArcAssay.js +204 -0
- package/dist/ts/esm/ts/Spreadsheet/ArcInvestigation.js +318 -0
- package/dist/ts/esm/ts/Spreadsheet/ArcRun.js +163 -0
- package/dist/ts/esm/ts/Spreadsheet/ArcStudy.js +117 -0
- package/dist/ts/esm/ts/Spreadsheet/ArcWorkflow.js +152 -0
- package/dist/ts/esm/ts/Spreadsheet/CollectionAux.js +117 -0
- package/dist/ts/esm/ts/Spreadsheet/DataMap.js +37 -0
- package/dist/ts/esm/ts/Spreadsheet/DataMapTable/DataMapColumn.js +39 -0
- package/dist/ts/esm/ts/Spreadsheet/DataMapTable/DataMapHeader.js +463 -0
- package/dist/ts/esm/ts/Spreadsheet/DataMapTable/DataMapTable.js +97 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Assays.js +90 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Comment.js +59 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Contacts.js +84 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Conversions.js +176 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/DesignDescriptors.js +18 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Factors.js +75 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/OntologyAnnotation.js +59 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/OntologySourceReference.js +60 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Protocols.js +95 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Publication.js +80 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Run.js +91 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/SparseTable.js +437 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Study.js +245 -0
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Workflow.js +103 -0
- package/dist/ts/esm/ts/Template.Web.js +23 -0
- package/dist/ts/esm/ts/ValidationPackages/ValidationPackage.js +57 -0
- package/dist/ts/esm/ts/ValidationPackages/ValidationPackagesConfig.js +84 -0
- package/dist/ts/esm/ts/WebRequest/WebRequest.Node.js +13 -0
- package/dist/ts/esm/ts/WebRequest/WebRequest.js +17 -0
- package/dist/ts/esm/ts/Xlsx.js +116 -0
- package/dist/ts/esm/ts/Yaml/Encode.js +5 -0
- package/dist/ts/esm/ts/Yaml/ValidationPackage.js +41 -0
- package/dist/ts/esm/ts/Yaml/ValidationPackagesConfig.js +42 -0
- package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +432 -0
- package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +118 -0
- package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +43 -0
- package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +18 -0
- package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +79 -0
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.js +1 -0
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.js +1 -0
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.js +2 -0
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.js +1 -0
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.js +102 -0
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.js +1 -0
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.js +1 -0
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.js +1 -0
- package/dist/ts/esm/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +281 -0
- package/dist/ts/esm/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +203 -0
- package/dist/ts/esm/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +16 -0
- package/dist/ts/esm/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +380 -0
- package/dist/ts/esm/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +151 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.js +463 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.js +473 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.js +189 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.js +43 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.js +122 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.js +306 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.js +224 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.js +121 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.js +131 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.js +134 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.js +429 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.js +62 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.js +35 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.js +35 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.js +27 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.js +74 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.js +41 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.js +129 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.js +33 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.js +206 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.js +80 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.js +60 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.js +31 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.js +326 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.js +152 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.js +76 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.js +48 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.js +48 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.js +51 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.js +30 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.js +64 -0
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.js +67 -0
- package/dist/ts/esm/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.js +1269 -0
- package/dist/ts/esm/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.js +178 -0
- package/dist/ts/esm/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.js +79 -0
- package/dist/ts/esm/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.js +91 -0
- package/dist/ts/esm/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.js +55 -0
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.js +1692 -0
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.js +57 -0
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +9 -0
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +43 -0
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +96 -0
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +522 -0
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.js +9 -0
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +221 -0
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +156 -0
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +148 -0
- package/dist/ts/types/index.d.ts +17 -0
- package/dist/ts/types/index.d.ts.map +1 -0
- package/dist/ts/types/ts/ARC.d.ts +80 -0
- package/dist/ts/types/ts/ARC.d.ts.map +1 -0
- package/dist/ts/types/ts/Contract/ARC.d.ts +7 -0
- package/dist/ts/types/ts/Contract/ARC.d.ts.map +1 -0
- package/dist/ts/types/ts/Contract/ArcAssay.d.ts +12 -0
- package/dist/ts/types/ts/Contract/ArcAssay.d.ts.map +1 -0
- package/dist/ts/types/ts/Contract/ArcInvestigation.d.ts +10 -0
- package/dist/ts/types/ts/Contract/ArcInvestigation.d.ts.map +1 -0
- package/dist/ts/types/ts/Contract/ArcRun.d.ts +12 -0
- package/dist/ts/types/ts/Contract/ArcRun.d.ts.map +1 -0
- package/dist/ts/types/ts/Contract/ArcStudy.d.ts +13 -0
- package/dist/ts/types/ts/Contract/ArcStudy.d.ts.map +1 -0
- package/dist/ts/types/ts/Contract/ArcWorkflow.d.ts +12 -0
- package/dist/ts/types/ts/Contract/ArcWorkflow.d.ts.map +1 -0
- package/dist/ts/types/ts/Contract/Contract.d.ts +39 -0
- package/dist/ts/types/ts/Contract/Contract.d.ts.map +1 -0
- package/dist/ts/types/ts/Contract/Datamap.d.ts +29 -0
- package/dist/ts/types/ts/Contract/Datamap.d.ts.map +1 -0
- package/dist/ts/types/ts/Contract/Git.d.ts +28 -0
- package/dist/ts/types/ts/Contract/Git.d.ts.map +1 -0
- package/dist/ts/types/ts/Contract/ValidationPackagesConfig.d.ts +12 -0
- package/dist/ts/types/ts/Contract/ValidationPackagesConfig.d.ts.map +1 -0
- package/dist/ts/types/ts/ContractIO/ContractIO.d.ts +11 -0
- package/dist/ts/types/ts/ContractIO/ContractIO.d.ts.map +1 -0
- package/dist/ts/types/ts/ContractIO/FileSystemHelper.d.ts +33 -0
- package/dist/ts/types/ts/ContractIO/FileSystemHelper.d.ts.map +1 -0
- package/dist/ts/types/ts/Conversion.d.ts +282 -0
- package/dist/ts/types/ts/Conversion.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/ArcTypes.d.ts +618 -0
- package/dist/ts/types/ts/Core/ArcTypes.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Comment.d.ts +35 -0
- package/dist/ts/types/ts/Core/Comment.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/CommentList.d.ts +28 -0
- package/dist/ts/types/ts/Core/CommentList.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Conversion.d.ts +216 -0
- package/dist/ts/types/ts/Core/Conversion.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Data.d.ts +49 -0
- package/dist/ts/types/ts/Core/Data.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/DataContext.d.ts +47 -0
- package/dist/ts/types/ts/Core/DataContext.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/DataFile.d.ts +27 -0
- package/dist/ts/types/ts/Core/DataFile.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/DataMap.d.ts +52 -0
- package/dist/ts/types/ts/Core/DataMap.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Helper/Collections.d.ts +50 -0
- package/dist/ts/types/ts/Core/Helper/Collections.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Helper/HashCodes.d.ts +9 -0
- package/dist/ts/types/ts/Core/Helper/HashCodes.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Helper/Identifier.d.ts +119 -0
- package/dist/ts/types/ts/Core/Helper/Identifier.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Helper/ORCID.d.ts +7 -0
- package/dist/ts/types/ts/Core/Helper/ORCID.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Helper/Printer.d.ts +5 -0
- package/dist/ts/types/ts/Core/Helper/Printer.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Helper/Regex.d.ts +194 -0
- package/dist/ts/types/ts/Core/Helper/Regex.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Helper/SemVer.d.ts +20 -0
- package/dist/ts/types/ts/Core/Helper/SemVer.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Helper/Url.d.ts +10 -0
- package/dist/ts/types/ts/Core/Helper/Url.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/IPropertyValue.d.ts +13 -0
- package/dist/ts/types/ts/Core/IPropertyValue.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/IdentifierSetters.d.ts +7 -0
- package/dist/ts/types/ts/Core/IdentifierSetters.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/OntologyAnnotation.d.ts +48 -0
- package/dist/ts/types/ts/Core/OntologyAnnotation.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/OntologySourceReference.d.ts +31 -0
- package/dist/ts/types/ts/Core/OntologySourceReference.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Person.d.ts +56 -0
- package/dist/ts/types/ts/Core/Person.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/ColumnIndex.d.ts +79 -0
- package/dist/ts/types/ts/Core/Process/ColumnIndex.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/Component.d.ts +65 -0
- package/dist/ts/types/ts/Core/Process/Component.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/Factor.d.ts +44 -0
- package/dist/ts/types/ts/Core/Process/Factor.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/FactorValue.d.ts +44 -0
- package/dist/ts/types/ts/Core/Process/FactorValue.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/Material.d.ts +27 -0
- package/dist/ts/types/ts/Core/Process/Material.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/MaterialAttribute.d.ts +53 -0
- package/dist/ts/types/ts/Core/Process/MaterialAttribute.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/MaterialAttributeValue.d.ts +55 -0
- package/dist/ts/types/ts/Core/Process/MaterialAttributeValue.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/MaterialType.d.ts +22 -0
- package/dist/ts/types/ts/Core/Process/MaterialType.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/Process.d.ts +113 -0
- package/dist/ts/types/ts/Core/Process/Process.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/ProcessInput.d.ts +117 -0
- package/dist/ts/types/ts/Core/Process/ProcessInput.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/ProcessOutput.d.ts +106 -0
- package/dist/ts/types/ts/Core/Process/ProcessOutput.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/ProcessParameterValue.d.ts +40 -0
- package/dist/ts/types/ts/Core/Process/ProcessParameterValue.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/ProcessSequence.d.ts +89 -0
- package/dist/ts/types/ts/Core/Process/ProcessSequence.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/Protocol.d.ts +141 -0
- package/dist/ts/types/ts/Core/Process/Protocol.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/ProtocolParameter.d.ts +32 -0
- package/dist/ts/types/ts/Core/Process/ProtocolParameter.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/Sample.d.ts +31 -0
- package/dist/ts/types/ts/Core/Process/Sample.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Process/Source.d.ts +24 -0
- package/dist/ts/types/ts/Core/Process/Source.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Publication.d.ts +36 -0
- package/dist/ts/types/ts/Core/Publication.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Table/ArcTable.d.ts +130 -0
- package/dist/ts/types/ts/Core/Table/ArcTable.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Table/ArcTableAux.d.ts +103 -0
- package/dist/ts/types/ts/Core/Table/ArcTableAux.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Table/ArcTables.d.ts +91 -0
- package/dist/ts/types/ts/Core/Table/ArcTables.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Table/CompositeCell.d.ts +58 -0
- package/dist/ts/types/ts/Core/Table/CompositeCell.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Table/CompositeColumn.d.ts +19 -0
- package/dist/ts/types/ts/Core/Table/CompositeColumn.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Table/CompositeHeader.d.ts +130 -0
- package/dist/ts/types/ts/Core/Table/CompositeHeader.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Template.d.ts +69 -0
- package/dist/ts/types/ts/Core/Template.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Templates.d.ts +18 -0
- package/dist/ts/types/ts/Core/Templates.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/URI.d.ts +13 -0
- package/dist/ts/types/ts/Core/URI.d.ts.map +1 -0
- package/dist/ts/types/ts/Core/Value.d.ts +41 -0
- package/dist/ts/types/ts/Core/Value.d.ts.map +1 -0
- package/dist/ts/types/ts/CrossAsync.d.ts +9 -0
- package/dist/ts/types/ts/CrossAsync.d.ts.map +1 -0
- package/dist/ts/types/ts/FileSystem/Commit.d.ts +13 -0
- package/dist/ts/types/ts/FileSystem/Commit.d.ts.map +1 -0
- package/dist/ts/types/ts/FileSystem/DefaultGitattributes.d.ts +2 -0
- package/dist/ts/types/ts/FileSystem/DefaultGitattributes.d.ts.map +1 -0
- package/dist/ts/types/ts/FileSystem/DefaultGitignore.d.ts +2 -0
- package/dist/ts/types/ts/FileSystem/DefaultGitignore.d.ts.map +1 -0
- package/dist/ts/types/ts/FileSystem/FileSystem.d.ts +21 -0
- package/dist/ts/types/ts/FileSystem/FileSystem.d.ts.map +1 -0
- package/dist/ts/types/ts/FileSystem/FileSystemTree.d.ts +54 -0
- package/dist/ts/types/ts/FileSystem/FileSystemTree.d.ts.map +1 -0
- package/dist/ts/types/ts/FileSystem/Path.d.ts +14 -0
- package/dist/ts/types/ts/FileSystem/Path.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Assay.d.ts +19 -0
- package/dist/ts/types/ts/Json/Assay.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Comment.d.ts +14 -0
- package/dist/ts/types/ts/Json/Comment.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Data.d.ts +17 -0
- package/dist/ts/types/ts/Json/Data.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/DataFile.d.ts +7 -0
- package/dist/ts/types/ts/Json/DataFile.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/DataMap/DataContext.d.ts +5 -0
- package/dist/ts/types/ts/Json/DataMap/DataContext.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/DataMap/DataMap.d.ts +11 -0
- package/dist/ts/types/ts/Json/DataMap/DataMap.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Decode.d.ts +12 -0
- package/dist/ts/types/ts/Json/Decode.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Encode.d.ts +21 -0
- package/dist/ts/types/ts/Json/Encode.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/IDTable.d.ts +5 -0
- package/dist/ts/types/ts/Json/IDTable.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Investigation.d.ts +20 -0
- package/dist/ts/types/ts/Json/Investigation.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/OntologyAnnotation.d.ts +18 -0
- package/dist/ts/types/ts/Json/OntologyAnnotation.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/OntologySourceReference.d.ts +12 -0
- package/dist/ts/types/ts/Json/OntologySourceReference.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Person.d.ts +22 -0
- package/dist/ts/types/ts/Json/Person.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/AssayMaterials.d.ts +7 -0
- package/dist/ts/types/ts/Json/Process/AssayMaterials.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/Component.d.ts +11 -0
- package/dist/ts/types/ts/Json/Process/Component.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/Factor.d.ts +8 -0
- package/dist/ts/types/ts/Json/Process/Factor.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/FactorValue.d.ts +11 -0
- package/dist/ts/types/ts/Json/Process/FactorValue.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/Material.d.ts +12 -0
- package/dist/ts/types/ts/Json/Process/Material.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/MaterialAttribute.d.ts +8 -0
- package/dist/ts/types/ts/Json/Process/MaterialAttribute.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/MaterialAttributeValue.d.ts +11 -0
- package/dist/ts/types/ts/Json/Process/MaterialAttributeValue.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/MaterialType.d.ts +7 -0
- package/dist/ts/types/ts/Json/Process/MaterialType.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/Process.d.ts +10 -0
- package/dist/ts/types/ts/Json/Process/Process.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/ProcessInput.d.ts +9 -0
- package/dist/ts/types/ts/Json/Process/ProcessInput.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/ProcessOutput.d.ts +9 -0
- package/dist/ts/types/ts/Json/Process/ProcessOutput.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/ProcessParameterValue.d.ts +11 -0
- package/dist/ts/types/ts/Json/Process/ProcessParameterValue.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/Protocol.d.ts +10 -0
- package/dist/ts/types/ts/Json/Process/Protocol.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/ProtocolParameter.d.ts +8 -0
- package/dist/ts/types/ts/Json/Process/ProtocolParameter.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/Sample.d.ts +15 -0
- package/dist/ts/types/ts/Json/Process/Sample.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/Source.d.ts +12 -0
- package/dist/ts/types/ts/Json/Process/Source.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/StudyMaterials.d.ts +7 -0
- package/dist/ts/types/ts/Json/Process/StudyMaterials.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Process/Value.d.ts +7 -0
- package/dist/ts/types/ts/Json/Process/Value.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/PropertyValue.d.ts +9 -0
- package/dist/ts/types/ts/Json/PropertyValue.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Publication.d.ts +14 -0
- package/dist/ts/types/ts/Json/Publication.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/ROCrate/LDContext.d.ts +5 -0
- package/dist/ts/types/ts/Json/ROCrate/LDContext.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/ROCrate/LDGraph.d.ts +5 -0
- package/dist/ts/types/ts/Json/ROCrate/LDGraph.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/ROCrate/LDNode.d.ts +13 -0
- package/dist/ts/types/ts/Json/ROCrate/LDNode.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/ROCrate/LDRef.d.ts +5 -0
- package/dist/ts/types/ts/Json/ROCrate/LDRef.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/ROCrate/LDValue.d.ts +7 -0
- package/dist/ts/types/ts/Json/ROCrate/LDValue.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/StringTable.d.ts +9 -0
- package/dist/ts/types/ts/Json/StringTable.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Study.d.ts +26 -0
- package/dist/ts/types/ts/Json/Study.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Table/ArcTable.d.ts +14 -0
- package/dist/ts/types/ts/Json/Table/ArcTable.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Table/CellTable.d.ts +11 -0
- package/dist/ts/types/ts/Json/Table/CellTable.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Table/CompositeCell.d.ts +10 -0
- package/dist/ts/types/ts/Json/Table/CompositeCell.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Table/CompositeHeader.d.ts +5 -0
- package/dist/ts/types/ts/Json/Table/CompositeHeader.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Table/IOType.d.ts +5 -0
- package/dist/ts/types/ts/Json/Table/IOType.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Table/OATable.d.ts +10 -0
- package/dist/ts/types/ts/Json/Table/OATable.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/Table/Templates.d.ts +15 -0
- package/dist/ts/types/ts/Json/Table/Templates.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_assay_context.d.ts +26 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_assay_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_comment_context.d.ts +16 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_comment_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_data_context.d.ts +18 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_data_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_investigation_context.d.ts +26 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_investigation_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_material_context.d.ts +19 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_material_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts +17 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts +19 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_organization_context.d.ts +15 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_organization_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_person_context.d.ts +25 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_person_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_process_context.d.ts +23 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_process_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_protocol_context.d.ts +22 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_protocol_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_publication_context.d.ts +19 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_publication_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_sample_context.d.ts +18 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_sample_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_source_context.d.ts +18 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_source_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_study_context.d.ts +34 -0
- package/dist/ts/types/ts/Json/context/rocrate/isa_study_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/property_value_context.d.ts +3 -0
- package/dist/ts/types/ts/Json/context/rocrate/property_value_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json/context/rocrate/rocrate_context.d.ts +16 -0
- package/dist/ts/types/ts/Json/context/rocrate/rocrate_context.d.ts.map +1 -0
- package/dist/ts/types/ts/Json.d.ts +73 -0
- package/dist/ts/types/ts/Json.d.ts.map +1 -0
- package/dist/ts/types/ts/JsonIO/Assay.d.ts +19 -0
- package/dist/ts/types/ts/JsonIO/Assay.d.ts.map +1 -0
- package/dist/ts/types/ts/JsonIO/Investigation.d.ts +19 -0
- package/dist/ts/types/ts/JsonIO/Investigation.d.ts.map +1 -0
- package/dist/ts/types/ts/JsonIO/OntologyAnnotation.d.ts +16 -0
- package/dist/ts/types/ts/JsonIO/OntologyAnnotation.d.ts.map +1 -0
- package/dist/ts/types/ts/JsonIO/Study.d.ts +20 -0
- package/dist/ts/types/ts/JsonIO/Study.d.ts.map +1 -0
- package/dist/ts/types/ts/JsonIO/Table/Compression.d.ts +8 -0
- package/dist/ts/types/ts/JsonIO/Table/Compression.d.ts.map +1 -0
- package/dist/ts/types/ts/JsonIO/Table/Templates.d.ts +15 -0
- package/dist/ts/types/ts/JsonIO/Table/Templates.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/Generic/Comment.d.ts +21 -0
- package/dist/ts/types/ts/ROCrate/Generic/Comment.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/Generic/Dataset.d.ts +92 -0
- package/dist/ts/types/ts/ROCrate/Generic/Dataset.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/Generic/DefinedTerm.d.ts +21 -0
- package/dist/ts/types/ts/ROCrate/Generic/DefinedTerm.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/Generic/File.d.ts +35 -0
- package/dist/ts/types/ts/ROCrate/Generic/File.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/Generic/LabProcess.d.ts +43 -0
- package/dist/ts/types/ts/ROCrate/Generic/LabProcess.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/Generic/LabProtocol.d.ts +44 -0
- package/dist/ts/types/ts/ROCrate/Generic/LabProtocol.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/Generic/Organization.d.ts +17 -0
- package/dist/ts/types/ts/ROCrate/Generic/Organization.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/Generic/Person.d.ts +51 -0
- package/dist/ts/types/ts/ROCrate/Generic/Person.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/Generic/PostalAddress.d.ts +25 -0
- package/dist/ts/types/ts/ROCrate/Generic/PostalAddress.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/Generic/PropertyValue.d.ts +73 -0
- package/dist/ts/types/ts/ROCrate/Generic/PropertyValue.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/Generic/Sample.d.ts +30 -0
- package/dist/ts/types/ts/ROCrate/Generic/Sample.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/Generic/ScholarlyArticle.d.ts +34 -0
- package/dist/ts/types/ts/ROCrate/Generic/ScholarlyArticle.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/Helper.d.ts +2 -0
- package/dist/ts/types/ts/ROCrate/Helper.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/LDContext.d.ts +45 -0
- package/dist/ts/types/ts/ROCrate/LDContext.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/LDObject.d.ts +97 -0
- package/dist/ts/types/ts/ROCrate/LDObject.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrate/ROCrateContext.d.ts +7 -0
- package/dist/ts/types/ts/ROCrate/ROCrateContext.d.ts.map +1 -0
- package/dist/ts/types/ts/ROCrateIO.d.ts +15 -0
- package/dist/ts/types/ts/ROCrateIO.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts +35 -0
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts +9 -0
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts +17 -0
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts +22 -0
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/ArcAssay.d.ts +31 -0
- package/dist/ts/types/ts/Spreadsheet/ArcAssay.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/ArcInvestigation.d.ts +42 -0
- package/dist/ts/types/ts/Spreadsheet/ArcInvestigation.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/ArcRun.d.ts +27 -0
- package/dist/ts/types/ts/Spreadsheet/ArcRun.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/ArcStudy.d.ts +26 -0
- package/dist/ts/types/ts/Spreadsheet/ArcStudy.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/ArcWorkflow.d.ts +27 -0
- package/dist/ts/types/ts/Spreadsheet/ArcWorkflow.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/CollectionAux.d.ts +23 -0
- package/dist/ts/types/ts/Spreadsheet/CollectionAux.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/DataMap.d.ts +8 -0
- package/dist/ts/types/ts/Spreadsheet/DataMap.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapColumn.d.ts +7 -0
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapColumn.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapHeader.d.ts +23 -0
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapHeader.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapTable.d.ts +23 -0
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapTable.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Assays.d.ts +14 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Assays.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Comment.d.ts +14 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Comment.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Contacts.d.ts +25 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Contacts.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Conversions.d.ts +60 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Conversions.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts +16 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Factors.d.ts +18 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Factors.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts +12 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts +18 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Protocols.d.ts +28 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Protocols.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Publication.d.ts +21 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Publication.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Run.d.ts +14 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Run.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/SparseTable.d.ts +37 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/SparseTable.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Study.d.ts +38 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Study.d.ts.map +1 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Workflow.d.ts +31 -0
- package/dist/ts/types/ts/Spreadsheet/Metadata/Workflow.d.ts.map +1 -0
- package/dist/ts/types/ts/Template.Web.d.ts +11 -0
- package/dist/ts/types/ts/Template.Web.d.ts.map +1 -0
- package/dist/ts/types/ts/ValidationPackages/ValidationPackage.d.ts +21 -0
- package/dist/ts/types/ts/ValidationPackages/ValidationPackage.d.ts.map +1 -0
- package/dist/ts/types/ts/ValidationPackages/ValidationPackagesConfig.d.ts +23 -0
- package/dist/ts/types/ts/ValidationPackages/ValidationPackagesConfig.d.ts.map +1 -0
- package/dist/ts/types/ts/WebRequest/WebRequest.Node.d.ts +4 -0
- package/dist/ts/types/ts/WebRequest/WebRequest.Node.d.ts.map +1 -0
- package/dist/ts/types/ts/WebRequest/WebRequest.d.ts +4 -0
- package/dist/ts/types/ts/WebRequest/WebRequest.d.ts.map +1 -0
- package/dist/ts/types/ts/Xlsx.d.ts +50 -0
- package/dist/ts/types/ts/Xlsx.d.ts.map +1 -0
- package/dist/ts/types/ts/Yaml/Encode.d.ts +5 -0
- package/dist/ts/types/ts/Yaml/Encode.d.ts.map +1 -0
- package/dist/ts/types/ts/Yaml/ValidationPackage.d.ts +10 -0
- package/dist/ts/types/ts/Yaml/ValidationPackage.d.ts.map +1 -0
- package/dist/ts/types/ts/Yaml/ValidationPackagesConfig.d.ts +10 -0
- package/dist/ts/types/ts/Yaml/ValidationPackagesConfig.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.d.ts +69 -0
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.d.ts +25 -0
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.d.ts +11 -0
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.d.ts +15 -0
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.d.ts +15 -0
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.d.ts +34 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.d.ts +14 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.d.ts +4 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.d.ts +30 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.d.ts +49 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.d.ts +35 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.d.ts +123 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.d.ts +27 -0
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.d.ts +253 -0
- package/dist/ts/types/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.d.ts +112 -0
- package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.d.ts +8 -0
- package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.d.ts +123 -0
- package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.d.ts +113 -0
- package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.d.ts +91 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.d.ts +181 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.d.ts +36 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.d.ts +23 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.d.ts +21 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.d.ts +157 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.d.ts +97 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.d.ts +37 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.d.ts +39 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.d.ts +36 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.d.ts +88 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.d.ts +10 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.d.ts +9 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.d.ts +9 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.d.ts +5 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.d.ts +6 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.d.ts +7 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.d.ts +7 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.d.ts +15 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.d.ts +94 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.d.ts +33 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.d.ts +31 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.d.ts +17 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.d.ts +71 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.d.ts +89 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.d.ts +10 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.d.ts +19 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.d.ts +15 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.d.ts +6 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.d.ts +5 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.d.ts +7 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.d.ts +20 -0
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.d.ts +105 -0
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.d.ts +26 -0
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.d.ts +99 -0
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.d.ts +7 -0
- package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.d.ts +5 -0
- package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.d.ts +64 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.d.ts +24 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.d.ts +3 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.d.ts +12 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.d.ts +10 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.d.ts +6 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.d.ts +10 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.d.ts +46 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.d.ts +12 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.d.ts.map +1 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.d.ts +70 -0
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.d.ts.map +1 -0
- package/package.json +31 -8
- package/ARC.js +0 -795
- package/CWL/CWLTypes.js +0 -135
- package/CWL/Decode.js +0 -585
- package/CWL/Inputs.js +0 -62
- package/CWL/Outputs.js +0 -59
- package/CWL/Requirements.js +0 -72
- package/CWL/ToolDescription.js +0 -81
- package/CWL/WorkflowDescription.js +0 -81
- package/CWL/WorkflowSteps.js +0 -98
- package/ColumnIndex.js +0 -258
- package/Contract/ARC.js +0 -43
- package/Contract/ArcAssay.js +0 -102
- package/Contract/ArcInvestigation.js +0 -75
- package/Contract/ArcStudy.js +0 -102
- package/Contract/Contract.js +0 -98
- package/Contract/Datamap.js +0 -180
- package/Contract/Git.js +0 -94
- package/Contract/ValidationPackagesConfig.js +0 -96
- package/ContractIO/ContractIO.js +0 -204
- package/ContractIO/FileSystemHelper.js +0 -130
- package/Conversion.js +0 -1679
- package/Core/ArcTypes.js +0 -2263
- package/Core/Comment.js +0 -104
- package/Core/CommentList.js +0 -133
- package/Core/Conversion.js +0 -1113
- package/Core/Data.js +0 -193
- package/Core/DataContext.js +0 -139
- package/Core/DataFile.js +0 -84
- package/Core/DataMap.js +0 -191
- package/Core/Helper/Collections.js +0 -421
- package/Core/Helper/DateTime.js +0 -17
- package/Core/Helper/HashCodes.js +0 -39
- package/Core/Helper/Identifier.js +0 -183
- package/Core/Helper/ORCID.js +0 -39
- package/Core/Helper/Regex.js +0 -623
- package/Core/Helper/SemVer.js +0 -58
- package/Core/Helper/Url.js +0 -38
- package/Core/IdentifierSetters.js +0 -26
- package/Core/OntologyAnnotation.js +0 -213
- package/Core/OntologySourceReference.js +0 -92
- package/Core/Person.js +0 -194
- package/Core/Process/ColumnIndex.js +0 -258
- package/Core/Process/Component.js +0 -198
- package/Core/Process/Factor.js +0 -109
- package/Core/Process/FactorValue.js +0 -137
- package/Core/Process/Material.js +0 -66
- package/Core/Process/MaterialAttribute.js +0 -101
- package/Core/Process/MaterialAttributeValue.js +0 -154
- package/Core/Process/MaterialType.js +0 -41
- package/Core/Process/Process.js +0 -369
- package/Core/Process/ProcessInput.js +0 -297
- package/Core/Process/ProcessOutput.js +0 -263
- package/Core/Process/ProcessParameterValue.js +0 -135
- package/Core/Process/ProcessSequence.js +0 -251
- package/Core/Process/Protocol.js +0 -246
- package/Core/Process/ProtocolParameter.js +0 -73
- package/Core/Process/Sample.js +0 -71
- package/Core/Process/Source.js +0 -54
- package/Core/Publication.js +0 -116
- package/Core/Table/ArcTable.js +0 -901
- package/Core/Table/ArcTableAux.js +0 -583
- package/Core/Table/ArcTables.js +0 -481
- package/Core/Table/CompositeCell.js +0 -211
- package/Core/Table/CompositeColumn.js +0 -56
- package/Core/Table/CompositeHeader.js +0 -547
- package/Core/Template.js +0 -186
- package/Core/Templates.js +0 -84
- package/Core/URI.js +0 -19
- package/Core/Value.js +0 -137
- package/CrossAsync.js +0 -34
- package/FileSystem/Commit.js +0 -18
- package/FileSystem/DefaultGitattributes.js +0 -3
- package/FileSystem/DefaultGitignore.js +0 -3
- package/FileSystem/FileSystem.js +0 -53
- package/FileSystem/FileSystemTree.js +0 -275
- package/FileSystem/Path.js +0 -54
- package/FileSystem.js +0 -102
- package/Json/Assay.js +0 -171
- package/Json/Comment.js +0 -121
- package/Json/ConverterOptions.js +0 -18
- package/Json/Data.js +0 -149
- package/Json/DataFile.js +0 -55
- package/Json/DataMap/DataContext.js +0 -39
- package/Json/DataMap/DataMap.js +0 -29
- package/Json/Decode.js +0 -125
- package/Json/Encode.js +0 -74
- package/Json/IDTable.js +0 -30
- package/Json/Investigation.js +0 -256
- package/Json/OntologyAnnotation.js +0 -210
- package/Json/OntologySourceReference.js +0 -126
- package/Json/Person.js +0 -341
- package/Json/Process/AssayMaterials.js +0 -20
- package/Json/Process/Component.js +0 -48
- package/Json/Process/Factor.js +0 -57
- package/Json/Process/FactorValue.js +0 -48
- package/Json/Process/Material.js +0 -121
- package/Json/Process/MaterialAttribute.js +0 -46
- package/Json/Process/MaterialAttributeValue.js +0 -48
- package/Json/Process/MaterialType.js +0 -47
- package/Json/Process/Process.js +0 -109
- package/Json/Process/ProcessInput.js +0 -38
- package/Json/Process/ProcessOutput.js +0 -33
- package/Json/Process/ProcessParameterValue.js +0 -34
- package/Json/Process/Protocol.js +0 -180
- package/Json/Process/ProtocolParameter.js +0 -46
- package/Json/Process/Sample.js +0 -178
- package/Json/Process/Source.js +0 -146
- package/Json/Process/StudyMaterials.js +0 -22
- package/Json/Process/Value.js +0 -32
- package/Json/PropertyValue.js +0 -295
- package/Json/Publication.js +0 -132
- package/Json/ROCrate/LDContext.js +0 -121
- package/Json/ROCrate/LDGraph.js +0 -87
- package/Json/ROCrate/LDNode.js +0 -204
- package/Json/ROCrate/LDRef.js +0 -25
- package/Json/ROCrate/LDValue.js +0 -66
- package/Json/StringTable.js +0 -61
- package/Json/Study.js +0 -349
- package/Json/Table/ArcTable.js +0 -227
- package/Json/Table/CellTable.js +0 -56
- package/Json/Table/CompositeCell.js +0 -65
- package/Json/Table/CompositeHeader.js +0 -46
- package/Json/Table/IOType.js +0 -15
- package/Json/Table/OATable.js +0 -53
- package/Json/Table/Templates.js +0 -107
- package/Json/context/rocrate/isa_assay_context.js +0 -88
- package/Json/context/rocrate/isa_comment_context.js +0 -47
- package/Json/context/rocrate/isa_component_context.js +0 -64
- package/Json/context/rocrate/isa_data_context.js +0 -61
- package/Json/context/rocrate/isa_factor_context.js +0 -61
- package/Json/context/rocrate/isa_factor_value_context.js +0 -71
- package/Json/context/rocrate/isa_investigation_context.js +0 -97
- package/Json/context/rocrate/isa_material_attribute_context.js +0 -51
- package/Json/context/rocrate/isa_material_attribute_value_context.js +0 -67
- package/Json/context/rocrate/isa_material_context.js +0 -58
- package/Json/context/rocrate/isa_ontology_annotation_context.js +0 -55
- package/Json/context/rocrate/isa_ontology_source_reference_context.js +0 -62
- package/Json/context/rocrate/isa_organization_context.js +0 -42
- package/Json/context/rocrate/isa_person_context.js +0 -113
- package/Json/context/rocrate/isa_process_context.js +0 -81
- package/Json/context/rocrate/isa_process_parameter_value_context.js +0 -67
- package/Json/context/rocrate/isa_protocol_context.js +0 -84
- package/Json/context/rocrate/isa_protocol_parameter_context.js +0 -51
- package/Json/context/rocrate/isa_publication_context.js +0 -65
- package/Json/context/rocrate/isa_sample_context.js +0 -52
- package/Json/context/rocrate/isa_source_context.js +0 -53
- package/Json/context/rocrate/isa_study_context.js +0 -112
- package/Json/context/rocrate/property_value_context.js +0 -60
- package/Json/context/rocrate/rocrate_context.js +0 -63
- package/Json.js +0 -193
- package/JsonIO/Assay.js +0 -99
- package/JsonIO/Comment.js +0 -73
- package/JsonIO/Data.js +0 -50
- package/JsonIO/DataFile.js +0 -49
- package/JsonIO/DataMap/DataMap.js +0 -29
- package/JsonIO/Decode.js +0 -4
- package/JsonIO/Investigation.js +0 -99
- package/JsonIO/LDObject.js +0 -56
- package/JsonIO/OntologyAnnotation.js +0 -73
- package/JsonIO/OntologySourceReference.js +0 -73
- package/JsonIO/Person.js +0 -74
- package/JsonIO/Process/Component.js +0 -50
- package/JsonIO/Process/Factor.js +0 -28
- package/JsonIO/Process/FactorValue.js +0 -29
- package/JsonIO/Process/Material.js +0 -50
- package/JsonIO/Process/MaterialAttribute.js +0 -29
- package/JsonIO/Process/MaterialAttributeValue.js +0 -50
- package/JsonIO/Process/MaterialType.js +0 -28
- package/JsonIO/Process/Process.js +0 -50
- package/JsonIO/Process/ProcessInput.js +0 -29
- package/JsonIO/Process/ProcessOutput.js +0 -50
- package/JsonIO/Process/ProcessParameterValue.js +0 -50
- package/JsonIO/Process/ProcessSequence.js +0 -55
- package/JsonIO/Process/Protocol.js +0 -50
- package/JsonIO/Process/ProtocolParameter.js +0 -28
- package/JsonIO/Process/Sample.js +0 -50
- package/JsonIO/Process/Source.js +0 -50
- package/JsonIO/Process/StudyMaterials.js +0 -22
- package/JsonIO/Process/Value.js +0 -23
- package/JsonIO/Publication.js +0 -74
- package/JsonIO/Study.js +0 -99
- package/JsonIO/Table/ArcTable.js +0 -82
- package/JsonIO/Table/CompositeCell.js +0 -28
- package/JsonIO/Table/CompositeHeader.js +0 -28
- package/JsonIO/Table/Compression.js +0 -48
- package/JsonIO/Table/IOType.js +0 -28
- package/JsonIO/Table/Templates.js +0 -88
- package/ROCrate/ArcROCrateMetadata.js +0 -36
- package/ROCrate/Generic/Comment.js +0 -115
- package/ROCrate/Generic/Dataset.js +0 -669
- package/ROCrate/Generic/DefinedTerm.js +0 -115
- package/ROCrate/Generic/File.js +0 -200
- package/ROCrate/Generic/LabProcess.js +0 -238
- package/ROCrate/Generic/LabProtocol.js +0 -275
- package/ROCrate/Generic/Organization.js +0 -71
- package/ROCrate/Generic/Person.js +0 -411
- package/ROCrate/Generic/PostalAddress.js +0 -159
- package/ROCrate/Generic/PropertyValue.js +0 -548
- package/ROCrate/Generic/Sample.js +0 -139
- package/ROCrate/Generic/ScholarlyArticle.js +0 -187
- package/ROCrate/Helper.js +0 -6
- package/ROCrate/ISAProfile/Assay.js +0 -60
- package/ROCrate/ISAProfile/Data.js +0 -55
- package/ROCrate/ISAProfile/Dataset.js +0 -19
- package/ROCrate/ISAProfile/Investigation.js +0 -63
- package/ROCrate/ISAProfile/LabProcess.js +0 -140
- package/ROCrate/ISAProfile/LabProtocol.js +0 -33
- package/ROCrate/ISAProfile/Person.js +0 -62
- package/ROCrate/ISAProfile/PropertyValue.js +0 -84
- package/ROCrate/ISAProfile/Sample.js +0 -54
- package/ROCrate/ISAProfile/ScholarlyArticle.js +0 -84
- package/ROCrate/ISAProfile/Study.js +0 -63
- package/ROCrate/LDContext.js +0 -283
- package/ROCrate/LDObject.js +0 -971
- package/ROCrate/ROCrateContext.js +0 -44
- package/ROCrateIO.js +0 -62
- package/Spreadsheet/AnnotationTable/ArcTable.js +0 -163
- package/Spreadsheet/AnnotationTable/CompositeCell.js +0 -57
- package/Spreadsheet/AnnotationTable/CompositeColumn.js +0 -78
- package/Spreadsheet/AnnotationTable/CompositeHeader.js +0 -475
- package/Spreadsheet/ArcAssay.js +0 -218
- package/Spreadsheet/ArcInvestigation.js +0 -340
- package/Spreadsheet/ArcStudy.js +0 -129
- package/Spreadsheet/CollectionAux.js +0 -128
- package/Spreadsheet/DataMap.js +0 -39
- package/Spreadsheet/DataMapTable/DataMapColumn.js +0 -42
- package/Spreadsheet/DataMapTable/DataMapHeader.js +0 -442
- package/Spreadsheet/DataMapTable/DataMapTable.js +0 -103
- package/Spreadsheet/Metadata/Assays.js +0 -81
- package/Spreadsheet/Metadata/Comment.js +0 -71
- package/Spreadsheet/Metadata/Contacts.js +0 -102
- package/Spreadsheet/Metadata/Conversions.js +0 -186
- package/Spreadsheet/Metadata/DesignDescriptors.js +0 -27
- package/Spreadsheet/Metadata/Factors.js +0 -86
- package/Spreadsheet/Metadata/OntologyAnnotation.js +0 -64
- package/Spreadsheet/Metadata/OntologySourceReference.js +0 -71
- package/Spreadsheet/Metadata/Protocols.js +0 -116
- package/Spreadsheet/Metadata/Publication.js +0 -94
- package/Spreadsheet/Metadata/SparseTable.js +0 -459
- package/Spreadsheet/Metadata/Study.js +0 -258
- package/Spreadsheet/Template.js +0 -361
- package/Template.Web.js +0 -27
- package/ValidationPackages/ValidationPackage.js +0 -61
- package/ValidationPackages/ValidationPackagesConfig.js +0 -88
- package/WebRequest/WebRequest.Node.js +0 -15
- package/WebRequest/WebRequest.js +0 -19
- package/Xlsx.js +0 -131
- package/Yaml/Encode.js +0 -8
- package/Yaml/ValidationPackage.js +0 -47
- package/Yaml/ValidationPackagesConfig.js +0 -48
- package/fable_modules/DynamicObj.7.0.1/DynObj.fs +0 -249
- package/fable_modules/DynamicObj.7.0.1/DynObj.fs.js +0 -194
- package/fable_modules/DynamicObj.7.0.1/DynamicObj.fableproj +0 -47
- package/fable_modules/DynamicObj.7.0.1/DynamicObj.fs +0 -1025
- package/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +0 -433
- package/fable_modules/DynamicObj.7.0.1/FableJS.fs +0 -178
- package/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +0 -141
- package/fable_modules/DynamicObj.7.0.1/FablePy.fs +0 -229
- package/fable_modules/DynamicObj.7.0.1/HashCodes.fs +0 -64
- package/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +0 -52
- package/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs +0 -33
- package/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +0 -21
- package/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs +0 -72
- package/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +0 -86
- package/fable_modules/DynamicObj.7.0.1/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +0 -3
- package/fable_modules/DynamicObj.7.0.1/obj/Debug/netstandard2.0/DynamicObj.AssemblyInfo.fs +0 -19
- package/fable_modules/DynamicObj.7.0.1/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +0 -3
- package/fable_modules/DynamicObj.7.0.1/obj/Release/netstandard2.0/DynamicObj.AssemblyInfo.fs +0 -19
- package/fable_modules/Fable.Exceljs.1.6.0/Cell.fs +0 -32
- package/fable_modules/Fable.Exceljs.1.6.0/Column.fs +0 -24
- package/fable_modules/Fable.Exceljs.1.6.0/Csv.fs +0 -12
- package/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs +0 -61
- package/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.js +0 -4
- package/fable_modules/Fable.Exceljs.1.6.0/Extensions.fs +0 -36
- package/fable_modules/Fable.Exceljs.1.6.0/Extensions.fs.js +0 -20
- package/fable_modules/Fable.Exceljs.1.6.0/Fable.Exceljs.fableproj +0 -53
- package/fable_modules/Fable.Exceljs.1.6.0/Row.fs +0 -34
- package/fable_modules/Fable.Exceljs.1.6.0/Table.fs +0 -85
- package/fable_modules/Fable.Exceljs.1.6.0/Table.fs.js +0 -22
- package/fable_modules/Fable.Exceljs.1.6.0/Unions.fs +0 -87
- package/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.js +0 -73
- package/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs +0 -37
- package/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs +0 -120
- package/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs +0 -18
- package/fable_modules/Fable.Exceljs.1.6.0/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.fs +0 -3
- package/fable_modules/Fable.Exceljs.1.6.0/obj/Debug/net6.0/Fable.Exceljs.AssemblyInfo.fs +0 -19
- package/fable_modules/Fable.Exceljs.1.6.0/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +0 -3
- package/fable_modules/Fable.Exceljs.1.6.0/obj/Debug/netstandard2.0/Fable.Exceljs.AssemblyInfo.fs +0 -19
- package/fable_modules/Fable.Exceljs.1.6.0/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.fs +0 -3
- package/fable_modules/Fable.Exceljs.1.6.0/obj/Release/net6.0/Fable.Exceljs.AssemblyInfo.fs +0 -19
- package/fable_modules/Fable.Exceljs.1.6.0/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +0 -3
- package/fable_modules/Fable.Exceljs.1.6.0/obj/Release/netstandard2.0/Fable.Exceljs.AssemblyInfo.fs +0 -19
- package/fable_modules/Fable.Fetch.2.6.0/Fable.Fetch.fableproj +0 -21
- package/fable_modules/Fable.Fetch.2.6.0/Fetch.fs +0 -469
- package/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +0 -111
- package/fable_modules/Fable.Promise.3.2.0/AsyncIterable.fs +0 -57
- package/fable_modules/Fable.Promise.3.2.0/AsyncIterable.fs.js +0 -104
- package/fable_modules/Fable.Promise.3.2.0/Fable.Promise.fableproj +0 -20
- package/fable_modules/Fable.Promise.3.2.0/Promise.fs +0 -766
- package/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +0 -217
- package/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs +0 -31
- package/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +0 -19
- package/fable_modules/Fable.SimpleHttp.3.5.0/Fable.SimpleHttp.fableproj +0 -23
- package/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs +0 -357
- package/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +0 -429
- package/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs +0 -52
- package/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +0 -112
- package/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs +0 -436
- package/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.js +0 -272
- package/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs +0 -725
- package/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.js +0 -522
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs +0 -196
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.js +0 -208
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/ColumnBuilder.fs +0 -209
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/ColumnBuilder.fs.js +0 -137
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/DSL.fs +0 -61
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/DSL.fs.js +0 -62
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs +0 -24
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.js +0 -56
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/Operators.fs +0 -102
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/Operators.fs.js +0 -6
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs +0 -200
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.js +0 -137
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/SheetBuilder.fs +0 -139
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/SheetBuilder.fs.js +0 -116
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/TableBuilder.fs +0 -120
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/TableBuilder.fs.js +0 -120
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/Transform.fs +0 -229
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/Transform.fs.js +0 -422
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs +0 -151
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.js +0 -277
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/WorkbookBuilder.fs +0 -114
- package/fable_modules/FsSpreadsheet.6.3.1/DSL/WorkbookBuilder.fs.js +0 -104
- package/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs +0 -191
- package/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.js +0 -259
- package/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs +0 -202
- package/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.js +0 -125
- package/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs +0 -204
- package/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.js +0 -135
- package/fable_modules/FsSpreadsheet.6.3.1/FsSpreadsheet.fableproj +0 -65
- package/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs +0 -183
- package/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.js +0 -138
- package/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs +0 -665
- package/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.js +0 -433
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs +0 -45
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.js +0 -64
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs +0 -28
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.js +0 -39
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs +0 -28
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.js +0 -39
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs +0 -24
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.js +0 -30
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs +0 -70
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.js +0 -73
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs +0 -33
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.js +0 -46
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs +0 -148
- package/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.js +0 -134
- package/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs +0 -19
- package/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.js +0 -41
- package/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs +0 -222
- package/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.js +0 -236
- package/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs +0 -93
- package/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.js +0 -91
- package/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs +0 -65
- package/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.js +0 -74
- package/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs +0 -22
- package/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.js +0 -40
- package/fable_modules/FsSpreadsheet.6.3.1/SheetBuilder.fs +0 -249
- package/fable_modules/FsSpreadsheet.6.3.1/SheetBuilder.fs.js +0 -325
- package/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs +0 -471
- package/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.js +0 -330
- package/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs +0 -140
- package/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.js +0 -173
- package/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableRow.fs +0 -6
- package/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableRow.fs.js +0 -17
- package/fable_modules/FsSpreadsheet.6.3.1/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +0 -3
- package/fable_modules/FsSpreadsheet.6.3.1/obj/Debug/netstandard2.0/FsSpreadsheet.AssemblyInfo.fs +0 -19
- package/fable_modules/FsSpreadsheet.6.3.1/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +0 -3
- package/fable_modules/FsSpreadsheet.6.3.1/obj/Release/netstandard2.0/FsSpreadsheet.AssemblyInfo.fs +0 -19
- package/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs +0 -88
- package/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.js +0 -79
- package/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs +0 -69
- package/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.js +0 -64
- package/fable_modules/FsSpreadsheet.Js.6.3.1/FsSpreadsheet.Js.fableproj +0 -57
- package/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs +0 -59
- package/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.js +0 -39
- package/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs +0 -50
- package/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.js +0 -54
- package/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs +0 -27
- package/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.js +0 -34
- package/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs +0 -41
- package/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.js +0 -63
- package/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs +0 -74
- package/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.js +0 -70
- package/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs +0 -1429
- package/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.js +0 -1259
- package/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs +0 -318
- package/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.js +0 -192
- package/fable_modules/Thoth.Json.Core.0.4.0/Thoth.Json.Core.fableproj +0 -33
- package/fable_modules/Thoth.Json.Core.0.4.0/Types.fs +0 -83
- package/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.js +0 -33
- package/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs +0 -88
- package/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.js +0 -99
- package/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs +0 -40
- package/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.js +0 -58
- package/fable_modules/Thoth.Json.JavaScript.0.3.0/Thoth.Json.JavaScript.fableproj +0 -28
- package/fable_modules/YAMLicious.0.0.3/Decode.fs +0 -399
- package/fable_modules/YAMLicious.0.0.3/Decode.fs.js +0 -1717
- package/fable_modules/YAMLicious.0.0.3/Encode.fs +0 -148
- package/fable_modules/YAMLicious.0.0.3/Encode.fs.js +0 -74
- package/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs +0 -14
- package/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +0 -11
- package/fable_modules/YAMLicious.0.0.3/Interop/PyInterop.fs +0 -9
- package/fable_modules/YAMLicious.0.0.3/Library.fs +0 -138
- package/fable_modules/YAMLicious.0.0.3/Library.fs.js +0 -7
- package/fable_modules/YAMLicious.0.0.3/Persil.fs +0 -86
- package/fable_modules/YAMLicious.0.0.3/Persil.fs.js +0 -49
- package/fable_modules/YAMLicious.0.0.3/Preprocessing.fs +0 -59
- package/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +0 -102
- package/fable_modules/YAMLicious.0.0.3/Reader.fs +0 -295
- package/fable_modules/YAMLicious.0.0.3/Reader.fs.js +0 -530
- package/fable_modules/YAMLicious.0.0.3/Regex.fs +0 -108
- package/fable_modules/YAMLicious.0.0.3/Regex.fs.js +0 -19
- package/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs +0 -166
- package/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +0 -225
- package/fable_modules/YAMLicious.0.0.3/Writer.fs +0 -84
- package/fable_modules/YAMLicious.0.0.3/Writer.fs.js +0 -161
- package/fable_modules/YAMLicious.0.0.3/YAMLicious.fableproj +0 -39
- package/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs +0 -82
- package/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +0 -130
- package/fable_modules/YAMLicious.0.0.3/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +0 -3
- package/fable_modules/YAMLicious.0.0.3/obj/Debug/netstandard2.0/YAMLicious.AssemblyInfo.fs +0 -19
- package/fable_modules/YAMLicious.0.0.3/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +0 -3
- package/fable_modules/YAMLicious.0.0.3/obj/Release/netstandard2.0/YAMLicious.AssemblyInfo.fs +0 -19
- package/fable_modules/fable-library-js.4.24.0/Array.d.ts +0 -123
- package/fable_modules/fable-library-js.4.24.0/Array.js +0 -1242
- package/fable_modules/fable-library-js.4.24.0/Async.d.ts +0 -27
- package/fable_modules/fable-library-js.4.24.0/Async.js +0 -152
- package/fable_modules/fable-library-js.4.24.0/AsyncBuilder.d.ts +0 -59
- package/fable_modules/fable-library-js.4.24.0/AsyncBuilder.js +0 -183
- package/fable_modules/fable-library-js.4.24.0/BigInt.d.ts +0 -115
- package/fable_modules/fable-library-js.4.24.0/BigInt.js +0 -283
- package/fable_modules/fable-library-js.4.24.0/BitConverter.d.ts +0 -27
- package/fable_modules/fable-library-js.4.24.0/BitConverter.js +0 -138
- package/fable_modules/fable-library-js.4.24.0/Boolean.d.ts +0 -3
- package/fable_modules/fable-library-js.4.24.0/Boolean.js +0 -21
- package/fable_modules/fable-library-js.4.24.0/CHANGELOG.md +0 -92
- package/fable_modules/fable-library-js.4.24.0/Char.d.ts +0 -65
- package/fable_modules/fable-library-js.4.24.0/Char.js +0 -169
- package/fable_modules/fable-library-js.4.24.0/Choice.d.ts +0 -121
- package/fable_modules/fable-library-js.4.24.0/Choice.js +0 -184
- package/fable_modules/fable-library-js.4.24.0/CollectionUtil.d.ts +0 -7
- package/fable_modules/fable-library-js.4.24.0/CollectionUtil.js +0 -182
- package/fable_modules/fable-library-js.4.24.0/ConditionalWeakTable.d.ts +0 -9
- package/fable_modules/fable-library-js.4.24.0/ConditionalWeakTable.js +0 -21
- package/fable_modules/fable-library-js.4.24.0/Date.d.ts +0 -70
- package/fable_modules/fable-library-js.4.24.0/Date.js +0 -748
- package/fable_modules/fable-library-js.4.24.0/DateOffset.d.ts +0 -63
- package/fable_modules/fable-library-js.4.24.0/DateOffset.js +0 -268
- package/fable_modules/fable-library-js.4.24.0/DateOnly.d.ts +0 -18
- package/fable_modules/fable-library-js.4.24.0/DateOnly.js +0 -124
- package/fable_modules/fable-library-js.4.24.0/Decimal.d.ts +0 -45
- package/fable_modules/fable-library-js.4.24.0/Decimal.js +0 -212
- package/fable_modules/fable-library-js.4.24.0/Double.d.ts +0 -11
- package/fable_modules/fable-library-js.4.24.0/Double.js +0 -46
- package/fable_modules/fable-library-js.4.24.0/Encoding.d.ts +0 -12
- package/fable_modules/fable-library-js.4.24.0/Encoding.js +0 -173
- package/fable_modules/fable-library-js.4.24.0/Event.d.ts +0 -31
- package/fable_modules/fable-library-js.4.24.0/Event.js +0 -93
- package/fable_modules/fable-library-js.4.24.0/FSharp.Collections.d.ts +0 -7
- package/fable_modules/fable-library-js.4.24.0/FSharp.Collections.js +0 -27
- package/fable_modules/fable-library-js.4.24.0/FSharp.Core.CompilerServices.d.ts +0 -12
- package/fable_modules/fable-library-js.4.24.0/FSharp.Core.CompilerServices.js +0 -27
- package/fable_modules/fable-library-js.4.24.0/FSharp.Core.d.ts +0 -17
- package/fable_modules/fable-library-js.4.24.0/FSharp.Core.js +0 -69
- package/fable_modules/fable-library-js.4.24.0/Global.d.ts +0 -24
- package/fable_modules/fable-library-js.4.24.0/Global.js +0 -8
- package/fable_modules/fable-library-js.4.24.0/Guid.d.ts +0 -10
- package/fable_modules/fable-library-js.4.24.0/Guid.js +0 -142
- package/fable_modules/fable-library-js.4.24.0/Int32.d.ts +0 -28
- package/fable_modules/fable-library-js.4.24.0/Int32.js +0 -135
- package/fable_modules/fable-library-js.4.24.0/List.d.ts +0 -143
- package/fable_modules/fable-library-js.4.24.0/List.js +0 -1273
- package/fable_modules/fable-library-js.4.24.0/Long.d.ts +0 -3
- package/fable_modules/fable-library-js.4.24.0/Long.js +0 -46
- package/fable_modules/fable-library-js.4.24.0/MailboxProcessor.d.ts +0 -25
- package/fable_modules/fable-library-js.4.24.0/MailboxProcessor.js +0 -93
- package/fable_modules/fable-library-js.4.24.0/Map.d.ts +0 -178
- package/fable_modules/fable-library-js.4.24.0/Map.js +0 -1396
- package/fable_modules/fable-library-js.4.24.0/MapUtil.d.ts +0 -12
- package/fable_modules/fable-library-js.4.24.0/MapUtil.js +0 -127
- package/fable_modules/fable-library-js.4.24.0/MutableMap.d.ts +0 -52
- package/fable_modules/fable-library-js.4.24.0/MutableMap.js +0 -327
- package/fable_modules/fable-library-js.4.24.0/MutableSet.d.ts +0 -39
- package/fable_modules/fable-library-js.4.24.0/MutableSet.js +0 -233
- package/fable_modules/fable-library-js.4.24.0/Native.d.ts +0 -2
- package/fable_modules/fable-library-js.4.24.0/Native.js +0 -8
- package/fable_modules/fable-library-js.4.24.0/Numeric.d.ts +0 -19
- package/fable_modules/fable-library-js.4.24.0/Numeric.js +0 -71
- package/fable_modules/fable-library-js.4.24.0/Observable.d.ts +0 -32
- package/fable_modules/fable-library-js.4.24.0/Observable.js +0 -113
- package/fable_modules/fable-library-js.4.24.0/Option.d.ts +0 -28
- package/fable_modules/fable-library-js.4.24.0/Option.js +0 -96
- package/fable_modules/fable-library-js.4.24.0/README.md +0 -3
- package/fable_modules/fable-library-js.4.24.0/Random.d.ts +0 -37
- package/fable_modules/fable-library-js.4.24.0/Random.js +0 -170
- package/fable_modules/fable-library-js.4.24.0/Range.d.ts +0 -12
- package/fable_modules/fable-library-js.4.24.0/Range.js +0 -45
- package/fable_modules/fable-library-js.4.24.0/Reflection.d.ts +0 -119
- package/fable_modules/fable-library-js.4.24.0/Reflection.js +0 -461
- package/fable_modules/fable-library-js.4.24.0/RegExp.d.ts +0 -10
- package/fable_modules/fable-library-js.4.24.0/RegExp.js +0 -131
- package/fable_modules/fable-library-js.4.24.0/Result.d.ts +0 -37
- package/fable_modules/fable-library-js.4.24.0/Result.js +0 -165
- package/fable_modules/fable-library-js.4.24.0/Seq.d.ts +0 -165
- package/fable_modules/fable-library-js.4.24.0/Seq.js +0 -1378
- package/fable_modules/fable-library-js.4.24.0/Seq2.d.ts +0 -18
- package/fable_modules/fable-library-js.4.24.0/Seq2.js +0 -111
- package/fable_modules/fable-library-js.4.24.0/Set.d.ts +0 -190
- package/fable_modules/fable-library-js.4.24.0/Set.js +0 -1789
- package/fable_modules/fable-library-js.4.24.0/String.d.ts +0 -58
- package/fable_modules/fable-library-js.4.24.0/String.js +0 -554
- package/fable_modules/fable-library-js.4.24.0/System.Collections.Generic.d.ts +0 -79
- package/fable_modules/fable-library-js.4.24.0/System.Collections.Generic.js +0 -317
- package/fable_modules/fable-library-js.4.24.0/System.Text.d.ts +0 -38
- package/fable_modules/fable-library-js.4.24.0/System.Text.js +0 -162
- package/fable_modules/fable-library-js.4.24.0/SystemException.d.ts +0 -5
- package/fable_modules/fable-library-js.4.24.0/SystemException.js +0 -5
- package/fable_modules/fable-library-js.4.24.0/TimeOnly.d.ts +0 -15
- package/fable_modules/fable-library-js.4.24.0/TimeOnly.js +0 -122
- package/fable_modules/fable-library-js.4.24.0/TimeSpan.d.ts +0 -34
- package/fable_modules/fable-library-js.4.24.0/TimeSpan.js +0 -177
- package/fable_modules/fable-library-js.4.24.0/Timer.d.ts +0 -19
- package/fable_modules/fable-library-js.4.24.0/Timer.js +0 -67
- package/fable_modules/fable-library-js.4.24.0/Types.d.ts +0 -58
- package/fable_modules/fable-library-js.4.24.0/Types.js +0 -208
- package/fable_modules/fable-library-js.4.24.0/Unicode.13.0.0.d.ts +0 -2
- package/fable_modules/fable-library-js.4.24.0/Unicode.13.0.0.js +0 -4
- package/fable_modules/fable-library-js.4.24.0/Uri.d.ts +0 -31
- package/fable_modules/fable-library-js.4.24.0/Uri.js +0 -159
- package/fable_modules/fable-library-js.4.24.0/Util.d.ts +0 -210
- package/fable_modules/fable-library-js.4.24.0/Util.js +0 -769
- package/fable_modules/fable-library-js.4.24.0/big.d.ts +0 -338
- package/fable_modules/fable-library-js.4.24.0/lib/big.d.ts +0 -5
- package/fable_modules/fable-library-js.4.24.0/lib/big.js +0 -825
- package/fable_modules/fable-library-js.4.24.0/package.json +0 -24
- package/fable_modules/project_cracked.json +0 -1
- package/index.js +0 -16
|
@@ -1,1789 +0,0 @@
|
|
|
1
|
-
import { record_type, bool_type, list_type, option_type, class_type } from "./Reflection.js";
|
|
2
|
-
import { some, value as value_3 } from "./Option.js";
|
|
3
|
-
import { structuralHash, toIterator, disposeSafe, getEnumerator, isArrayLike } from "./Util.js";
|
|
4
|
-
import { toString, Record } from "./Types.js";
|
|
5
|
-
import { fold as fold_2, cons, singleton as singleton_1, empty as empty_1, ofArrayWithTail, tail, head, isEmpty as isEmpty_1, FSharpList } from "./List.js";
|
|
6
|
-
import { fold as fold_1, fill, setItem } from "./Array.js";
|
|
7
|
-
import { join } from "./String.js";
|
|
8
|
-
import { exists as exists_1, cache, forAll as forAll_1, fold as fold_3, reduce, iterate as iterate_1, map as map_1 } from "./Seq.js";
|
|
9
|
-
import { HashSet__get_Comparer, HashSet_$ctor_Z6150332D, HashSet } from "./MutableSet.js";
|
|
10
|
-
export class SetTreeLeaf$1 {
|
|
11
|
-
constructor(k) {
|
|
12
|
-
this.k = k;
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
export function SetTreeLeaf$1_$reflection(gen0) {
|
|
16
|
-
return class_type("Set.SetTreeLeaf`1", [gen0], SetTreeLeaf$1);
|
|
17
|
-
}
|
|
18
|
-
export function SetTreeLeaf$1_$ctor_2B595(k) {
|
|
19
|
-
return new SetTreeLeaf$1(k);
|
|
20
|
-
}
|
|
21
|
-
export function SetTreeLeaf$1__get_Key(_) {
|
|
22
|
-
return _.k;
|
|
23
|
-
}
|
|
24
|
-
export class SetTreeNode$1 extends SetTreeLeaf$1 {
|
|
25
|
-
constructor(v, left, right, h) {
|
|
26
|
-
super(v);
|
|
27
|
-
this.left = left;
|
|
28
|
-
this.right = right;
|
|
29
|
-
this.h = (h | 0);
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
export function SetTreeNode$1_$reflection(gen0) {
|
|
33
|
-
return class_type("Set.SetTreeNode`1", [gen0], SetTreeNode$1, SetTreeLeaf$1_$reflection(gen0));
|
|
34
|
-
}
|
|
35
|
-
export function SetTreeNode$1_$ctor_5F465FC9(v, left, right, h) {
|
|
36
|
-
return new SetTreeNode$1(v, left, right, h);
|
|
37
|
-
}
|
|
38
|
-
export function SetTreeNode$1__get_Left(_) {
|
|
39
|
-
return _.left;
|
|
40
|
-
}
|
|
41
|
-
export function SetTreeNode$1__get_Right(_) {
|
|
42
|
-
return _.right;
|
|
43
|
-
}
|
|
44
|
-
export function SetTreeNode$1__get_Height(_) {
|
|
45
|
-
return _.h;
|
|
46
|
-
}
|
|
47
|
-
export function SetTreeModule_empty() {
|
|
48
|
-
return undefined;
|
|
49
|
-
}
|
|
50
|
-
export function SetTreeModule_countAux(t_mut, acc_mut) {
|
|
51
|
-
SetTreeModule_countAux: while (true) {
|
|
52
|
-
const t = t_mut, acc = acc_mut;
|
|
53
|
-
if (t != null) {
|
|
54
|
-
const t2 = value_3(t);
|
|
55
|
-
if (t2 instanceof SetTreeNode$1) {
|
|
56
|
-
const tn = t2;
|
|
57
|
-
t_mut = SetTreeNode$1__get_Left(tn);
|
|
58
|
-
acc_mut = SetTreeModule_countAux(SetTreeNode$1__get_Right(tn), acc + 1);
|
|
59
|
-
continue SetTreeModule_countAux;
|
|
60
|
-
}
|
|
61
|
-
else {
|
|
62
|
-
return (acc + 1) | 0;
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
else {
|
|
66
|
-
return acc | 0;
|
|
67
|
-
}
|
|
68
|
-
break;
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
export function SetTreeModule_count(s) {
|
|
72
|
-
return SetTreeModule_countAux(s, 0);
|
|
73
|
-
}
|
|
74
|
-
export function SetTreeModule_mk(l, k, r) {
|
|
75
|
-
let tn, tn_1;
|
|
76
|
-
let hl;
|
|
77
|
-
const t = l;
|
|
78
|
-
if (t != null) {
|
|
79
|
-
const t2 = value_3(t);
|
|
80
|
-
hl = ((t2 instanceof SetTreeNode$1) ? ((tn = t2, SetTreeNode$1__get_Height(tn))) : 1);
|
|
81
|
-
}
|
|
82
|
-
else {
|
|
83
|
-
hl = 0;
|
|
84
|
-
}
|
|
85
|
-
let hr;
|
|
86
|
-
const t_1 = r;
|
|
87
|
-
if (t_1 != null) {
|
|
88
|
-
const t2_1 = value_3(t_1);
|
|
89
|
-
hr = ((t2_1 instanceof SetTreeNode$1) ? ((tn_1 = t2_1, SetTreeNode$1__get_Height(tn_1))) : 1);
|
|
90
|
-
}
|
|
91
|
-
else {
|
|
92
|
-
hr = 0;
|
|
93
|
-
}
|
|
94
|
-
const m = ((hl < hr) ? hr : hl) | 0;
|
|
95
|
-
if (m === 0) {
|
|
96
|
-
return SetTreeLeaf$1_$ctor_2B595(k);
|
|
97
|
-
}
|
|
98
|
-
else {
|
|
99
|
-
return SetTreeNode$1_$ctor_5F465FC9(k, l, r, m + 1);
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
export function SetTreeModule_rebalance(t1, v, t2) {
|
|
103
|
-
let tn, tn_1, t_2, t2_3, tn_2, t_3, t2_4, tn_3;
|
|
104
|
-
let t1h;
|
|
105
|
-
const t = t1;
|
|
106
|
-
if (t != null) {
|
|
107
|
-
const t2_1 = value_3(t);
|
|
108
|
-
t1h = ((t2_1 instanceof SetTreeNode$1) ? ((tn = t2_1, SetTreeNode$1__get_Height(tn))) : 1);
|
|
109
|
-
}
|
|
110
|
-
else {
|
|
111
|
-
t1h = 0;
|
|
112
|
-
}
|
|
113
|
-
let t2h;
|
|
114
|
-
const t_1 = t2;
|
|
115
|
-
if (t_1 != null) {
|
|
116
|
-
const t2_2 = value_3(t_1);
|
|
117
|
-
t2h = ((t2_2 instanceof SetTreeNode$1) ? ((tn_1 = t2_2, SetTreeNode$1__get_Height(tn_1))) : 1);
|
|
118
|
-
}
|
|
119
|
-
else {
|
|
120
|
-
t2h = 0;
|
|
121
|
-
}
|
|
122
|
-
if (t2h > (t1h + 2)) {
|
|
123
|
-
const matchValue = value_3(t2);
|
|
124
|
-
if (matchValue instanceof SetTreeNode$1) {
|
|
125
|
-
const t2$0027 = matchValue;
|
|
126
|
-
if (((t_2 = SetTreeNode$1__get_Left(t2$0027), (t_2 != null) ? ((t2_3 = value_3(t_2), (t2_3 instanceof SetTreeNode$1) ? ((tn_2 = t2_3, SetTreeNode$1__get_Height(tn_2))) : 1)) : 0)) > (t1h + 1)) {
|
|
127
|
-
const matchValue_1 = value_3(SetTreeNode$1__get_Left(t2$0027));
|
|
128
|
-
if (matchValue_1 instanceof SetTreeNode$1) {
|
|
129
|
-
const t2l = matchValue_1;
|
|
130
|
-
return SetTreeModule_mk(SetTreeModule_mk(t1, v, SetTreeNode$1__get_Left(t2l)), SetTreeLeaf$1__get_Key(t2l), SetTreeModule_mk(SetTreeNode$1__get_Right(t2l), SetTreeLeaf$1__get_Key(t2$0027), SetTreeNode$1__get_Right(t2$0027)));
|
|
131
|
-
}
|
|
132
|
-
else {
|
|
133
|
-
throw new Error("internal error: Set.rebalance");
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
else {
|
|
137
|
-
return SetTreeModule_mk(SetTreeModule_mk(t1, v, SetTreeNode$1__get_Left(t2$0027)), SetTreeLeaf$1__get_Key(t2$0027), SetTreeNode$1__get_Right(t2$0027));
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
else {
|
|
141
|
-
throw new Error("internal error: Set.rebalance");
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
else if (t1h > (t2h + 2)) {
|
|
145
|
-
const matchValue_2 = value_3(t1);
|
|
146
|
-
if (matchValue_2 instanceof SetTreeNode$1) {
|
|
147
|
-
const t1$0027 = matchValue_2;
|
|
148
|
-
if (((t_3 = SetTreeNode$1__get_Right(t1$0027), (t_3 != null) ? ((t2_4 = value_3(t_3), (t2_4 instanceof SetTreeNode$1) ? ((tn_3 = t2_4, SetTreeNode$1__get_Height(tn_3))) : 1)) : 0)) > (t2h + 1)) {
|
|
149
|
-
const matchValue_3 = value_3(SetTreeNode$1__get_Right(t1$0027));
|
|
150
|
-
if (matchValue_3 instanceof SetTreeNode$1) {
|
|
151
|
-
const t1r = matchValue_3;
|
|
152
|
-
return SetTreeModule_mk(SetTreeModule_mk(SetTreeNode$1__get_Left(t1$0027), SetTreeLeaf$1__get_Key(t1$0027), SetTreeNode$1__get_Left(t1r)), SetTreeLeaf$1__get_Key(t1r), SetTreeModule_mk(SetTreeNode$1__get_Right(t1r), v, t2));
|
|
153
|
-
}
|
|
154
|
-
else {
|
|
155
|
-
throw new Error("internal error: Set.rebalance");
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
else {
|
|
159
|
-
return SetTreeModule_mk(SetTreeNode$1__get_Left(t1$0027), SetTreeLeaf$1__get_Key(t1$0027), SetTreeModule_mk(SetTreeNode$1__get_Right(t1$0027), v, t2));
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
else {
|
|
163
|
-
throw new Error("internal error: Set.rebalance");
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
else {
|
|
167
|
-
return SetTreeModule_mk(t1, v, t2);
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
export function SetTreeModule_add(comparer, k, t) {
|
|
171
|
-
if (t != null) {
|
|
172
|
-
const t2 = value_3(t);
|
|
173
|
-
const c = comparer.Compare(k, SetTreeLeaf$1__get_Key(t2)) | 0;
|
|
174
|
-
if (t2 instanceof SetTreeNode$1) {
|
|
175
|
-
const tn = t2;
|
|
176
|
-
if (c < 0) {
|
|
177
|
-
return SetTreeModule_rebalance(SetTreeModule_add(comparer, k, SetTreeNode$1__get_Left(tn)), SetTreeLeaf$1__get_Key(tn), SetTreeNode$1__get_Right(tn));
|
|
178
|
-
}
|
|
179
|
-
else if (c === 0) {
|
|
180
|
-
return t;
|
|
181
|
-
}
|
|
182
|
-
else {
|
|
183
|
-
return SetTreeModule_rebalance(SetTreeNode$1__get_Left(tn), SetTreeLeaf$1__get_Key(tn), SetTreeModule_add(comparer, k, SetTreeNode$1__get_Right(tn)));
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
else {
|
|
187
|
-
const c_1 = comparer.Compare(k, SetTreeLeaf$1__get_Key(t2)) | 0;
|
|
188
|
-
if (c_1 < 0) {
|
|
189
|
-
return SetTreeNode$1_$ctor_5F465FC9(k, SetTreeModule_empty(), t, 2);
|
|
190
|
-
}
|
|
191
|
-
else if (c_1 === 0) {
|
|
192
|
-
return t;
|
|
193
|
-
}
|
|
194
|
-
else {
|
|
195
|
-
return SetTreeNode$1_$ctor_5F465FC9(k, t, SetTreeModule_empty(), 2);
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
}
|
|
199
|
-
else {
|
|
200
|
-
return SetTreeLeaf$1_$ctor_2B595(k);
|
|
201
|
-
}
|
|
202
|
-
}
|
|
203
|
-
export function SetTreeModule_balance(comparer, t1, k, t2) {
|
|
204
|
-
if (t1 != null) {
|
|
205
|
-
const t1$0027 = value_3(t1);
|
|
206
|
-
if (t2 != null) {
|
|
207
|
-
const t2$0027 = value_3(t2);
|
|
208
|
-
if (t1$0027 instanceof SetTreeNode$1) {
|
|
209
|
-
const t1n = t1$0027;
|
|
210
|
-
if (t2$0027 instanceof SetTreeNode$1) {
|
|
211
|
-
const t2n = t2$0027;
|
|
212
|
-
if ((SetTreeNode$1__get_Height(t1n) + 2) < SetTreeNode$1__get_Height(t2n)) {
|
|
213
|
-
return SetTreeModule_rebalance(SetTreeModule_balance(comparer, t1, k, SetTreeNode$1__get_Left(t2n)), SetTreeLeaf$1__get_Key(t2n), SetTreeNode$1__get_Right(t2n));
|
|
214
|
-
}
|
|
215
|
-
else if ((SetTreeNode$1__get_Height(t2n) + 2) < SetTreeNode$1__get_Height(t1n)) {
|
|
216
|
-
return SetTreeModule_rebalance(SetTreeNode$1__get_Left(t1n), SetTreeLeaf$1__get_Key(t1n), SetTreeModule_balance(comparer, SetTreeNode$1__get_Right(t1n), k, t2));
|
|
217
|
-
}
|
|
218
|
-
else {
|
|
219
|
-
return SetTreeModule_mk(t1, k, t2);
|
|
220
|
-
}
|
|
221
|
-
}
|
|
222
|
-
else {
|
|
223
|
-
return SetTreeModule_add(comparer, k, SetTreeModule_add(comparer, SetTreeLeaf$1__get_Key(t2$0027), t1));
|
|
224
|
-
}
|
|
225
|
-
}
|
|
226
|
-
else {
|
|
227
|
-
return SetTreeModule_add(comparer, k, SetTreeModule_add(comparer, SetTreeLeaf$1__get_Key(t1$0027), t2));
|
|
228
|
-
}
|
|
229
|
-
}
|
|
230
|
-
else {
|
|
231
|
-
return SetTreeModule_add(comparer, k, t1);
|
|
232
|
-
}
|
|
233
|
-
}
|
|
234
|
-
else {
|
|
235
|
-
return SetTreeModule_add(comparer, k, t2);
|
|
236
|
-
}
|
|
237
|
-
}
|
|
238
|
-
export function SetTreeModule_split(comparer, pivot, t) {
|
|
239
|
-
if (t != null) {
|
|
240
|
-
const t2 = value_3(t);
|
|
241
|
-
if (t2 instanceof SetTreeNode$1) {
|
|
242
|
-
const tn = t2;
|
|
243
|
-
const c = comparer.Compare(pivot, SetTreeLeaf$1__get_Key(tn)) | 0;
|
|
244
|
-
if (c < 0) {
|
|
245
|
-
const patternInput = SetTreeModule_split(comparer, pivot, SetTreeNode$1__get_Left(tn));
|
|
246
|
-
return [patternInput[0], patternInput[1], SetTreeModule_balance(comparer, patternInput[2], SetTreeLeaf$1__get_Key(tn), SetTreeNode$1__get_Right(tn))];
|
|
247
|
-
}
|
|
248
|
-
else if (c === 0) {
|
|
249
|
-
return [SetTreeNode$1__get_Left(tn), true, SetTreeNode$1__get_Right(tn)];
|
|
250
|
-
}
|
|
251
|
-
else {
|
|
252
|
-
const patternInput_1 = SetTreeModule_split(comparer, pivot, SetTreeNode$1__get_Right(tn));
|
|
253
|
-
return [SetTreeModule_balance(comparer, SetTreeNode$1__get_Left(tn), SetTreeLeaf$1__get_Key(tn), patternInput_1[0]), patternInput_1[1], patternInput_1[2]];
|
|
254
|
-
}
|
|
255
|
-
}
|
|
256
|
-
else {
|
|
257
|
-
const c_1 = comparer.Compare(SetTreeLeaf$1__get_Key(t2), pivot) | 0;
|
|
258
|
-
if (c_1 < 0) {
|
|
259
|
-
return [t, false, SetTreeModule_empty()];
|
|
260
|
-
}
|
|
261
|
-
else if (c_1 === 0) {
|
|
262
|
-
return [SetTreeModule_empty(), true, SetTreeModule_empty()];
|
|
263
|
-
}
|
|
264
|
-
else {
|
|
265
|
-
return [SetTreeModule_empty(), false, t];
|
|
266
|
-
}
|
|
267
|
-
}
|
|
268
|
-
}
|
|
269
|
-
else {
|
|
270
|
-
return [SetTreeModule_empty(), false, SetTreeModule_empty()];
|
|
271
|
-
}
|
|
272
|
-
}
|
|
273
|
-
export function SetTreeModule_spliceOutSuccessor(t) {
|
|
274
|
-
if (t != null) {
|
|
275
|
-
const t2 = value_3(t);
|
|
276
|
-
if (t2 instanceof SetTreeNode$1) {
|
|
277
|
-
const tn = t2;
|
|
278
|
-
if (SetTreeNode$1__get_Left(tn) == null) {
|
|
279
|
-
return [SetTreeLeaf$1__get_Key(tn), SetTreeNode$1__get_Right(tn)];
|
|
280
|
-
}
|
|
281
|
-
else {
|
|
282
|
-
const patternInput = SetTreeModule_spliceOutSuccessor(SetTreeNode$1__get_Left(tn));
|
|
283
|
-
return [patternInput[0], SetTreeModule_mk(patternInput[1], SetTreeLeaf$1__get_Key(tn), SetTreeNode$1__get_Right(tn))];
|
|
284
|
-
}
|
|
285
|
-
}
|
|
286
|
-
else {
|
|
287
|
-
return [SetTreeLeaf$1__get_Key(t2), SetTreeModule_empty()];
|
|
288
|
-
}
|
|
289
|
-
}
|
|
290
|
-
else {
|
|
291
|
-
throw new Error("internal error: Set.spliceOutSuccessor");
|
|
292
|
-
}
|
|
293
|
-
}
|
|
294
|
-
export function SetTreeModule_remove(comparer, k, t) {
|
|
295
|
-
if (t != null) {
|
|
296
|
-
const t2 = value_3(t);
|
|
297
|
-
const c = comparer.Compare(k, SetTreeLeaf$1__get_Key(t2)) | 0;
|
|
298
|
-
if (t2 instanceof SetTreeNode$1) {
|
|
299
|
-
const tn = t2;
|
|
300
|
-
if (c < 0) {
|
|
301
|
-
return SetTreeModule_rebalance(SetTreeModule_remove(comparer, k, SetTreeNode$1__get_Left(tn)), SetTreeLeaf$1__get_Key(tn), SetTreeNode$1__get_Right(tn));
|
|
302
|
-
}
|
|
303
|
-
else if (c === 0) {
|
|
304
|
-
if (SetTreeNode$1__get_Left(tn) == null) {
|
|
305
|
-
return SetTreeNode$1__get_Right(tn);
|
|
306
|
-
}
|
|
307
|
-
else if (SetTreeNode$1__get_Right(tn) == null) {
|
|
308
|
-
return SetTreeNode$1__get_Left(tn);
|
|
309
|
-
}
|
|
310
|
-
else {
|
|
311
|
-
const patternInput = SetTreeModule_spliceOutSuccessor(SetTreeNode$1__get_Right(tn));
|
|
312
|
-
return SetTreeModule_mk(SetTreeNode$1__get_Left(tn), patternInput[0], patternInput[1]);
|
|
313
|
-
}
|
|
314
|
-
}
|
|
315
|
-
else {
|
|
316
|
-
return SetTreeModule_rebalance(SetTreeNode$1__get_Left(tn), SetTreeLeaf$1__get_Key(tn), SetTreeModule_remove(comparer, k, SetTreeNode$1__get_Right(tn)));
|
|
317
|
-
}
|
|
318
|
-
}
|
|
319
|
-
else if (c === 0) {
|
|
320
|
-
return SetTreeModule_empty();
|
|
321
|
-
}
|
|
322
|
-
else {
|
|
323
|
-
return t;
|
|
324
|
-
}
|
|
325
|
-
}
|
|
326
|
-
else {
|
|
327
|
-
return t;
|
|
328
|
-
}
|
|
329
|
-
}
|
|
330
|
-
export function SetTreeModule_mem(comparer_mut, k_mut, t_mut) {
|
|
331
|
-
SetTreeModule_mem: while (true) {
|
|
332
|
-
const comparer = comparer_mut, k = k_mut, t = t_mut;
|
|
333
|
-
if (t != null) {
|
|
334
|
-
const t2 = value_3(t);
|
|
335
|
-
const c = comparer.Compare(k, SetTreeLeaf$1__get_Key(t2)) | 0;
|
|
336
|
-
if (t2 instanceof SetTreeNode$1) {
|
|
337
|
-
const tn = t2;
|
|
338
|
-
if (c < 0) {
|
|
339
|
-
comparer_mut = comparer;
|
|
340
|
-
k_mut = k;
|
|
341
|
-
t_mut = SetTreeNode$1__get_Left(tn);
|
|
342
|
-
continue SetTreeModule_mem;
|
|
343
|
-
}
|
|
344
|
-
else if (c === 0) {
|
|
345
|
-
return true;
|
|
346
|
-
}
|
|
347
|
-
else {
|
|
348
|
-
comparer_mut = comparer;
|
|
349
|
-
k_mut = k;
|
|
350
|
-
t_mut = SetTreeNode$1__get_Right(tn);
|
|
351
|
-
continue SetTreeModule_mem;
|
|
352
|
-
}
|
|
353
|
-
}
|
|
354
|
-
else {
|
|
355
|
-
return c === 0;
|
|
356
|
-
}
|
|
357
|
-
}
|
|
358
|
-
else {
|
|
359
|
-
return false;
|
|
360
|
-
}
|
|
361
|
-
break;
|
|
362
|
-
}
|
|
363
|
-
}
|
|
364
|
-
export function SetTreeModule_iter(f_mut, t_mut) {
|
|
365
|
-
SetTreeModule_iter: while (true) {
|
|
366
|
-
const f = f_mut, t = t_mut;
|
|
367
|
-
if (t != null) {
|
|
368
|
-
const t2 = value_3(t);
|
|
369
|
-
if (t2 instanceof SetTreeNode$1) {
|
|
370
|
-
const tn = t2;
|
|
371
|
-
SetTreeModule_iter(f, SetTreeNode$1__get_Left(tn));
|
|
372
|
-
f(SetTreeLeaf$1__get_Key(tn));
|
|
373
|
-
f_mut = f;
|
|
374
|
-
t_mut = SetTreeNode$1__get_Right(tn);
|
|
375
|
-
continue SetTreeModule_iter;
|
|
376
|
-
}
|
|
377
|
-
else {
|
|
378
|
-
f(SetTreeLeaf$1__get_Key(t2));
|
|
379
|
-
}
|
|
380
|
-
}
|
|
381
|
-
break;
|
|
382
|
-
}
|
|
383
|
-
}
|
|
384
|
-
export function SetTreeModule_foldBackOpt(f_mut, t_mut, x_mut) {
|
|
385
|
-
SetTreeModule_foldBackOpt: while (true) {
|
|
386
|
-
const f = f_mut, t = t_mut, x = x_mut;
|
|
387
|
-
if (t != null) {
|
|
388
|
-
const t2 = value_3(t);
|
|
389
|
-
if (t2 instanceof SetTreeNode$1) {
|
|
390
|
-
const tn = t2;
|
|
391
|
-
f_mut = f;
|
|
392
|
-
t_mut = SetTreeNode$1__get_Left(tn);
|
|
393
|
-
x_mut = f(SetTreeLeaf$1__get_Key(tn), SetTreeModule_foldBackOpt(f, SetTreeNode$1__get_Right(tn), x));
|
|
394
|
-
continue SetTreeModule_foldBackOpt;
|
|
395
|
-
}
|
|
396
|
-
else {
|
|
397
|
-
return f(SetTreeLeaf$1__get_Key(t2), x);
|
|
398
|
-
}
|
|
399
|
-
}
|
|
400
|
-
else {
|
|
401
|
-
return x;
|
|
402
|
-
}
|
|
403
|
-
break;
|
|
404
|
-
}
|
|
405
|
-
}
|
|
406
|
-
export function SetTreeModule_foldBack(f, m, x) {
|
|
407
|
-
return SetTreeModule_foldBackOpt(f, m, x);
|
|
408
|
-
}
|
|
409
|
-
export function SetTreeModule_foldOpt(f_mut, x_mut, t_mut) {
|
|
410
|
-
SetTreeModule_foldOpt: while (true) {
|
|
411
|
-
const f = f_mut, x = x_mut, t = t_mut;
|
|
412
|
-
if (t != null) {
|
|
413
|
-
const t2 = value_3(t);
|
|
414
|
-
if (t2 instanceof SetTreeNode$1) {
|
|
415
|
-
const tn = t2;
|
|
416
|
-
f_mut = f;
|
|
417
|
-
x_mut = f(SetTreeModule_foldOpt(f, x, SetTreeNode$1__get_Left(tn)), SetTreeLeaf$1__get_Key(tn));
|
|
418
|
-
t_mut = SetTreeNode$1__get_Right(tn);
|
|
419
|
-
continue SetTreeModule_foldOpt;
|
|
420
|
-
}
|
|
421
|
-
else {
|
|
422
|
-
return f(x, SetTreeLeaf$1__get_Key(t2));
|
|
423
|
-
}
|
|
424
|
-
}
|
|
425
|
-
else {
|
|
426
|
-
return x;
|
|
427
|
-
}
|
|
428
|
-
break;
|
|
429
|
-
}
|
|
430
|
-
}
|
|
431
|
-
export function SetTreeModule_fold(f, x, m) {
|
|
432
|
-
return SetTreeModule_foldOpt(f, x, m);
|
|
433
|
-
}
|
|
434
|
-
export function SetTreeModule_forall(f_mut, t_mut) {
|
|
435
|
-
SetTreeModule_forall: while (true) {
|
|
436
|
-
const f = f_mut, t = t_mut;
|
|
437
|
-
if (t != null) {
|
|
438
|
-
const t2 = value_3(t);
|
|
439
|
-
if (t2 instanceof SetTreeNode$1) {
|
|
440
|
-
const tn = t2;
|
|
441
|
-
if (f(SetTreeLeaf$1__get_Key(tn)) && SetTreeModule_forall(f, SetTreeNode$1__get_Left(tn))) {
|
|
442
|
-
f_mut = f;
|
|
443
|
-
t_mut = SetTreeNode$1__get_Right(tn);
|
|
444
|
-
continue SetTreeModule_forall;
|
|
445
|
-
}
|
|
446
|
-
else {
|
|
447
|
-
return false;
|
|
448
|
-
}
|
|
449
|
-
}
|
|
450
|
-
else {
|
|
451
|
-
return f(SetTreeLeaf$1__get_Key(t2));
|
|
452
|
-
}
|
|
453
|
-
}
|
|
454
|
-
else {
|
|
455
|
-
return true;
|
|
456
|
-
}
|
|
457
|
-
break;
|
|
458
|
-
}
|
|
459
|
-
}
|
|
460
|
-
export function SetTreeModule_exists(f_mut, t_mut) {
|
|
461
|
-
SetTreeModule_exists: while (true) {
|
|
462
|
-
const f = f_mut, t = t_mut;
|
|
463
|
-
if (t != null) {
|
|
464
|
-
const t2 = value_3(t);
|
|
465
|
-
if (t2 instanceof SetTreeNode$1) {
|
|
466
|
-
const tn = t2;
|
|
467
|
-
if (f(SetTreeLeaf$1__get_Key(tn)) ? true : SetTreeModule_exists(f, SetTreeNode$1__get_Left(tn))) {
|
|
468
|
-
return true;
|
|
469
|
-
}
|
|
470
|
-
else {
|
|
471
|
-
f_mut = f;
|
|
472
|
-
t_mut = SetTreeNode$1__get_Right(tn);
|
|
473
|
-
continue SetTreeModule_exists;
|
|
474
|
-
}
|
|
475
|
-
}
|
|
476
|
-
else {
|
|
477
|
-
return f(SetTreeLeaf$1__get_Key(t2));
|
|
478
|
-
}
|
|
479
|
-
}
|
|
480
|
-
else {
|
|
481
|
-
return false;
|
|
482
|
-
}
|
|
483
|
-
break;
|
|
484
|
-
}
|
|
485
|
-
}
|
|
486
|
-
export function SetTreeModule_subset(comparer, a, b) {
|
|
487
|
-
return SetTreeModule_forall((x) => SetTreeModule_mem(comparer, x, b), a);
|
|
488
|
-
}
|
|
489
|
-
export function SetTreeModule_properSubset(comparer, a, b) {
|
|
490
|
-
if (SetTreeModule_forall((x) => SetTreeModule_mem(comparer, x, b), a)) {
|
|
491
|
-
return SetTreeModule_exists((x_1) => !SetTreeModule_mem(comparer, x_1, a), b);
|
|
492
|
-
}
|
|
493
|
-
else {
|
|
494
|
-
return false;
|
|
495
|
-
}
|
|
496
|
-
}
|
|
497
|
-
export function SetTreeModule_filterAux(comparer_mut, f_mut, t_mut, acc_mut) {
|
|
498
|
-
SetTreeModule_filterAux: while (true) {
|
|
499
|
-
const comparer = comparer_mut, f = f_mut, t = t_mut, acc = acc_mut;
|
|
500
|
-
if (t != null) {
|
|
501
|
-
const t2 = value_3(t);
|
|
502
|
-
if (t2 instanceof SetTreeNode$1) {
|
|
503
|
-
const tn = t2;
|
|
504
|
-
const acc_1 = f(SetTreeLeaf$1__get_Key(tn)) ? SetTreeModule_add(comparer, SetTreeLeaf$1__get_Key(tn), acc) : acc;
|
|
505
|
-
comparer_mut = comparer;
|
|
506
|
-
f_mut = f;
|
|
507
|
-
t_mut = SetTreeNode$1__get_Left(tn);
|
|
508
|
-
acc_mut = SetTreeModule_filterAux(comparer, f, SetTreeNode$1__get_Right(tn), acc_1);
|
|
509
|
-
continue SetTreeModule_filterAux;
|
|
510
|
-
}
|
|
511
|
-
else if (f(SetTreeLeaf$1__get_Key(t2))) {
|
|
512
|
-
return SetTreeModule_add(comparer, SetTreeLeaf$1__get_Key(t2), acc);
|
|
513
|
-
}
|
|
514
|
-
else {
|
|
515
|
-
return acc;
|
|
516
|
-
}
|
|
517
|
-
}
|
|
518
|
-
else {
|
|
519
|
-
return acc;
|
|
520
|
-
}
|
|
521
|
-
break;
|
|
522
|
-
}
|
|
523
|
-
}
|
|
524
|
-
export function SetTreeModule_filter(comparer, f, s) {
|
|
525
|
-
return SetTreeModule_filterAux(comparer, f, s, SetTreeModule_empty());
|
|
526
|
-
}
|
|
527
|
-
export function SetTreeModule_diffAux(comparer_mut, t_mut, acc_mut) {
|
|
528
|
-
SetTreeModule_diffAux: while (true) {
|
|
529
|
-
const comparer = comparer_mut, t = t_mut, acc = acc_mut;
|
|
530
|
-
if (acc == null) {
|
|
531
|
-
return acc;
|
|
532
|
-
}
|
|
533
|
-
else if (t != null) {
|
|
534
|
-
const t2 = value_3(t);
|
|
535
|
-
if (t2 instanceof SetTreeNode$1) {
|
|
536
|
-
const tn = t2;
|
|
537
|
-
comparer_mut = comparer;
|
|
538
|
-
t_mut = SetTreeNode$1__get_Left(tn);
|
|
539
|
-
acc_mut = SetTreeModule_diffAux(comparer, SetTreeNode$1__get_Right(tn), SetTreeModule_remove(comparer, SetTreeLeaf$1__get_Key(tn), acc));
|
|
540
|
-
continue SetTreeModule_diffAux;
|
|
541
|
-
}
|
|
542
|
-
else {
|
|
543
|
-
return SetTreeModule_remove(comparer, SetTreeLeaf$1__get_Key(t2), acc);
|
|
544
|
-
}
|
|
545
|
-
}
|
|
546
|
-
else {
|
|
547
|
-
return acc;
|
|
548
|
-
}
|
|
549
|
-
break;
|
|
550
|
-
}
|
|
551
|
-
}
|
|
552
|
-
export function SetTreeModule_diff(comparer, a, b) {
|
|
553
|
-
return SetTreeModule_diffAux(comparer, b, a);
|
|
554
|
-
}
|
|
555
|
-
export function SetTreeModule_union(comparer, t1, t2) {
|
|
556
|
-
if (t1 != null) {
|
|
557
|
-
const t1$0027 = value_3(t1);
|
|
558
|
-
if (t2 != null) {
|
|
559
|
-
const t2$0027 = value_3(t2);
|
|
560
|
-
if (t1$0027 instanceof SetTreeNode$1) {
|
|
561
|
-
const t1n = t1$0027;
|
|
562
|
-
if (t2$0027 instanceof SetTreeNode$1) {
|
|
563
|
-
const t2n = t2$0027;
|
|
564
|
-
if (SetTreeNode$1__get_Height(t1n) > SetTreeNode$1__get_Height(t2n)) {
|
|
565
|
-
const patternInput = SetTreeModule_split(comparer, SetTreeLeaf$1__get_Key(t1n), t2);
|
|
566
|
-
return SetTreeModule_balance(comparer, SetTreeModule_union(comparer, SetTreeNode$1__get_Left(t1n), patternInput[0]), SetTreeLeaf$1__get_Key(t1n), SetTreeModule_union(comparer, SetTreeNode$1__get_Right(t1n), patternInput[2]));
|
|
567
|
-
}
|
|
568
|
-
else {
|
|
569
|
-
const patternInput_1 = SetTreeModule_split(comparer, SetTreeLeaf$1__get_Key(t2n), t1);
|
|
570
|
-
return SetTreeModule_balance(comparer, SetTreeModule_union(comparer, SetTreeNode$1__get_Left(t2n), patternInput_1[0]), SetTreeLeaf$1__get_Key(t2n), SetTreeModule_union(comparer, SetTreeNode$1__get_Right(t2n), patternInput_1[2]));
|
|
571
|
-
}
|
|
572
|
-
}
|
|
573
|
-
else {
|
|
574
|
-
return SetTreeModule_add(comparer, SetTreeLeaf$1__get_Key(t2$0027), t1);
|
|
575
|
-
}
|
|
576
|
-
}
|
|
577
|
-
else {
|
|
578
|
-
return SetTreeModule_add(comparer, SetTreeLeaf$1__get_Key(t1$0027), t2);
|
|
579
|
-
}
|
|
580
|
-
}
|
|
581
|
-
else {
|
|
582
|
-
return t1;
|
|
583
|
-
}
|
|
584
|
-
}
|
|
585
|
-
else {
|
|
586
|
-
return t2;
|
|
587
|
-
}
|
|
588
|
-
}
|
|
589
|
-
export function SetTreeModule_intersectionAux(comparer_mut, b_mut, t_mut, acc_mut) {
|
|
590
|
-
SetTreeModule_intersectionAux: while (true) {
|
|
591
|
-
const comparer = comparer_mut, b = b_mut, t = t_mut, acc = acc_mut;
|
|
592
|
-
if (t != null) {
|
|
593
|
-
const t2 = value_3(t);
|
|
594
|
-
if (t2 instanceof SetTreeNode$1) {
|
|
595
|
-
const tn = t2;
|
|
596
|
-
const acc_1 = SetTreeModule_intersectionAux(comparer, b, SetTreeNode$1__get_Right(tn), acc);
|
|
597
|
-
const acc_2 = SetTreeModule_mem(comparer, SetTreeLeaf$1__get_Key(tn), b) ? SetTreeModule_add(comparer, SetTreeLeaf$1__get_Key(tn), acc_1) : acc_1;
|
|
598
|
-
comparer_mut = comparer;
|
|
599
|
-
b_mut = b;
|
|
600
|
-
t_mut = SetTreeNode$1__get_Left(tn);
|
|
601
|
-
acc_mut = acc_2;
|
|
602
|
-
continue SetTreeModule_intersectionAux;
|
|
603
|
-
}
|
|
604
|
-
else if (SetTreeModule_mem(comparer, SetTreeLeaf$1__get_Key(t2), b)) {
|
|
605
|
-
return SetTreeModule_add(comparer, SetTreeLeaf$1__get_Key(t2), acc);
|
|
606
|
-
}
|
|
607
|
-
else {
|
|
608
|
-
return acc;
|
|
609
|
-
}
|
|
610
|
-
}
|
|
611
|
-
else {
|
|
612
|
-
return acc;
|
|
613
|
-
}
|
|
614
|
-
break;
|
|
615
|
-
}
|
|
616
|
-
}
|
|
617
|
-
export function SetTreeModule_intersection(comparer, a, b) {
|
|
618
|
-
return SetTreeModule_intersectionAux(comparer, b, a, SetTreeModule_empty());
|
|
619
|
-
}
|
|
620
|
-
export function SetTreeModule_partition1(comparer, f, k, acc1, acc2) {
|
|
621
|
-
if (f(k)) {
|
|
622
|
-
return [SetTreeModule_add(comparer, k, acc1), acc2];
|
|
623
|
-
}
|
|
624
|
-
else {
|
|
625
|
-
return [acc1, SetTreeModule_add(comparer, k, acc2)];
|
|
626
|
-
}
|
|
627
|
-
}
|
|
628
|
-
export function SetTreeModule_partitionAux(comparer_mut, f_mut, t_mut, acc__mut, acc__1_mut) {
|
|
629
|
-
SetTreeModule_partitionAux: while (true) {
|
|
630
|
-
const comparer = comparer_mut, f = f_mut, t = t_mut, acc_ = acc__mut, acc__1 = acc__1_mut;
|
|
631
|
-
const acc = [acc_, acc__1];
|
|
632
|
-
if (t != null) {
|
|
633
|
-
const t2 = value_3(t);
|
|
634
|
-
if (t2 instanceof SetTreeNode$1) {
|
|
635
|
-
const tn = t2;
|
|
636
|
-
const acc_1 = SetTreeModule_partitionAux(comparer, f, SetTreeNode$1__get_Right(tn), acc[0], acc[1]);
|
|
637
|
-
const acc_4 = SetTreeModule_partition1(comparer, f, SetTreeLeaf$1__get_Key(tn), acc_1[0], acc_1[1]);
|
|
638
|
-
comparer_mut = comparer;
|
|
639
|
-
f_mut = f;
|
|
640
|
-
t_mut = SetTreeNode$1__get_Left(tn);
|
|
641
|
-
acc__mut = acc_4[0];
|
|
642
|
-
acc__1_mut = acc_4[1];
|
|
643
|
-
continue SetTreeModule_partitionAux;
|
|
644
|
-
}
|
|
645
|
-
else {
|
|
646
|
-
return SetTreeModule_partition1(comparer, f, SetTreeLeaf$1__get_Key(t2), acc[0], acc[1]);
|
|
647
|
-
}
|
|
648
|
-
}
|
|
649
|
-
else {
|
|
650
|
-
return acc;
|
|
651
|
-
}
|
|
652
|
-
break;
|
|
653
|
-
}
|
|
654
|
-
}
|
|
655
|
-
export function SetTreeModule_partition(comparer, f, s) {
|
|
656
|
-
return SetTreeModule_partitionAux(comparer, f, s, SetTreeModule_empty(), SetTreeModule_empty());
|
|
657
|
-
}
|
|
658
|
-
export function SetTreeModule_minimumElementAux(t_mut, n_mut) {
|
|
659
|
-
SetTreeModule_minimumElementAux: while (true) {
|
|
660
|
-
const t = t_mut, n = n_mut;
|
|
661
|
-
if (t != null) {
|
|
662
|
-
const t2 = value_3(t);
|
|
663
|
-
if (t2 instanceof SetTreeNode$1) {
|
|
664
|
-
const tn = t2;
|
|
665
|
-
t_mut = SetTreeNode$1__get_Left(tn);
|
|
666
|
-
n_mut = SetTreeLeaf$1__get_Key(tn);
|
|
667
|
-
continue SetTreeModule_minimumElementAux;
|
|
668
|
-
}
|
|
669
|
-
else {
|
|
670
|
-
return SetTreeLeaf$1__get_Key(t2);
|
|
671
|
-
}
|
|
672
|
-
}
|
|
673
|
-
else {
|
|
674
|
-
return n;
|
|
675
|
-
}
|
|
676
|
-
break;
|
|
677
|
-
}
|
|
678
|
-
}
|
|
679
|
-
export function SetTreeModule_minimumElementOpt(t) {
|
|
680
|
-
if (t != null) {
|
|
681
|
-
const t2 = value_3(t);
|
|
682
|
-
if (t2 instanceof SetTreeNode$1) {
|
|
683
|
-
const tn = t2;
|
|
684
|
-
return some(SetTreeModule_minimumElementAux(SetTreeNode$1__get_Left(tn), SetTreeLeaf$1__get_Key(tn)));
|
|
685
|
-
}
|
|
686
|
-
else {
|
|
687
|
-
return some(SetTreeLeaf$1__get_Key(t2));
|
|
688
|
-
}
|
|
689
|
-
}
|
|
690
|
-
else {
|
|
691
|
-
return undefined;
|
|
692
|
-
}
|
|
693
|
-
}
|
|
694
|
-
export function SetTreeModule_maximumElementAux(t_mut, n_mut) {
|
|
695
|
-
SetTreeModule_maximumElementAux: while (true) {
|
|
696
|
-
const t = t_mut, n = n_mut;
|
|
697
|
-
if (t != null) {
|
|
698
|
-
const t2 = value_3(t);
|
|
699
|
-
if (t2 instanceof SetTreeNode$1) {
|
|
700
|
-
const tn = t2;
|
|
701
|
-
t_mut = SetTreeNode$1__get_Right(tn);
|
|
702
|
-
n_mut = SetTreeLeaf$1__get_Key(tn);
|
|
703
|
-
continue SetTreeModule_maximumElementAux;
|
|
704
|
-
}
|
|
705
|
-
else {
|
|
706
|
-
return SetTreeLeaf$1__get_Key(t2);
|
|
707
|
-
}
|
|
708
|
-
}
|
|
709
|
-
else {
|
|
710
|
-
return n;
|
|
711
|
-
}
|
|
712
|
-
break;
|
|
713
|
-
}
|
|
714
|
-
}
|
|
715
|
-
export function SetTreeModule_maximumElementOpt(t) {
|
|
716
|
-
if (t != null) {
|
|
717
|
-
const t2 = value_3(t);
|
|
718
|
-
if (t2 instanceof SetTreeNode$1) {
|
|
719
|
-
const tn = t2;
|
|
720
|
-
return some(SetTreeModule_maximumElementAux(SetTreeNode$1__get_Right(tn), SetTreeLeaf$1__get_Key(tn)));
|
|
721
|
-
}
|
|
722
|
-
else {
|
|
723
|
-
return some(SetTreeLeaf$1__get_Key(t2));
|
|
724
|
-
}
|
|
725
|
-
}
|
|
726
|
-
else {
|
|
727
|
-
return undefined;
|
|
728
|
-
}
|
|
729
|
-
}
|
|
730
|
-
export function SetTreeModule_minimumElement(s) {
|
|
731
|
-
const matchValue = SetTreeModule_minimumElementOpt(s);
|
|
732
|
-
if (matchValue == null) {
|
|
733
|
-
throw new Error("Set contains no elements");
|
|
734
|
-
}
|
|
735
|
-
else {
|
|
736
|
-
return value_3(matchValue);
|
|
737
|
-
}
|
|
738
|
-
}
|
|
739
|
-
export function SetTreeModule_maximumElement(s) {
|
|
740
|
-
const matchValue = SetTreeModule_maximumElementOpt(s);
|
|
741
|
-
if (matchValue == null) {
|
|
742
|
-
throw new Error("Set contains no elements");
|
|
743
|
-
}
|
|
744
|
-
else {
|
|
745
|
-
return value_3(matchValue);
|
|
746
|
-
}
|
|
747
|
-
}
|
|
748
|
-
export class SetTreeModule_SetIterator$1 extends Record {
|
|
749
|
-
constructor(stack, started) {
|
|
750
|
-
super();
|
|
751
|
-
this.stack = stack;
|
|
752
|
-
this.started = started;
|
|
753
|
-
}
|
|
754
|
-
}
|
|
755
|
-
export function SetTreeModule_SetIterator$1_$reflection(gen0) {
|
|
756
|
-
return record_type("Set.SetTreeModule.SetIterator`1", [gen0], SetTreeModule_SetIterator$1, () => [["stack", list_type(option_type(SetTreeLeaf$1_$reflection(gen0)))], ["started", bool_type]]);
|
|
757
|
-
}
|
|
758
|
-
export function SetTreeModule_collapseLHS(stack_mut) {
|
|
759
|
-
SetTreeModule_collapseLHS: while (true) {
|
|
760
|
-
const stack = stack_mut;
|
|
761
|
-
if (!isEmpty_1(stack)) {
|
|
762
|
-
const x = head(stack);
|
|
763
|
-
const rest = tail(stack);
|
|
764
|
-
if (x != null) {
|
|
765
|
-
const x2 = value_3(x);
|
|
766
|
-
if (x2 instanceof SetTreeNode$1) {
|
|
767
|
-
const xn = x2;
|
|
768
|
-
stack_mut = ofArrayWithTail([SetTreeNode$1__get_Left(xn), SetTreeLeaf$1_$ctor_2B595(SetTreeLeaf$1__get_Key(xn)), SetTreeNode$1__get_Right(xn)], rest);
|
|
769
|
-
continue SetTreeModule_collapseLHS;
|
|
770
|
-
}
|
|
771
|
-
else {
|
|
772
|
-
return stack;
|
|
773
|
-
}
|
|
774
|
-
}
|
|
775
|
-
else {
|
|
776
|
-
stack_mut = rest;
|
|
777
|
-
continue SetTreeModule_collapseLHS;
|
|
778
|
-
}
|
|
779
|
-
}
|
|
780
|
-
else {
|
|
781
|
-
return empty_1();
|
|
782
|
-
}
|
|
783
|
-
break;
|
|
784
|
-
}
|
|
785
|
-
}
|
|
786
|
-
export function SetTreeModule_mkIterator(s) {
|
|
787
|
-
return new SetTreeModule_SetIterator$1(SetTreeModule_collapseLHS(singleton_1(s)), false);
|
|
788
|
-
}
|
|
789
|
-
export function SetTreeModule_notStarted() {
|
|
790
|
-
throw new Error("Enumeration not started");
|
|
791
|
-
}
|
|
792
|
-
export function SetTreeModule_alreadyFinished() {
|
|
793
|
-
throw new Error("Enumeration already started");
|
|
794
|
-
}
|
|
795
|
-
export function SetTreeModule_current(i) {
|
|
796
|
-
if (i.started) {
|
|
797
|
-
const matchValue = i.stack;
|
|
798
|
-
if (isEmpty_1(matchValue)) {
|
|
799
|
-
return SetTreeModule_alreadyFinished();
|
|
800
|
-
}
|
|
801
|
-
else if (head(matchValue) != null) {
|
|
802
|
-
const t = value_3(head(matchValue));
|
|
803
|
-
return SetTreeLeaf$1__get_Key(t);
|
|
804
|
-
}
|
|
805
|
-
else {
|
|
806
|
-
throw new Error("Please report error: Set iterator, unexpected stack for current");
|
|
807
|
-
}
|
|
808
|
-
}
|
|
809
|
-
else {
|
|
810
|
-
return SetTreeModule_notStarted();
|
|
811
|
-
}
|
|
812
|
-
}
|
|
813
|
-
export function SetTreeModule_moveNext(i) {
|
|
814
|
-
if (i.started) {
|
|
815
|
-
const matchValue = i.stack;
|
|
816
|
-
if (!isEmpty_1(matchValue)) {
|
|
817
|
-
if (head(matchValue) != null) {
|
|
818
|
-
const t = value_3(head(matchValue));
|
|
819
|
-
if (t instanceof SetTreeNode$1) {
|
|
820
|
-
throw new Error("Please report error: Set iterator, unexpected stack for moveNext");
|
|
821
|
-
}
|
|
822
|
-
else {
|
|
823
|
-
i.stack = SetTreeModule_collapseLHS(tail(matchValue));
|
|
824
|
-
return !isEmpty_1(i.stack);
|
|
825
|
-
}
|
|
826
|
-
}
|
|
827
|
-
else {
|
|
828
|
-
throw new Error("Please report error: Set iterator, unexpected stack for moveNext");
|
|
829
|
-
}
|
|
830
|
-
}
|
|
831
|
-
else {
|
|
832
|
-
return false;
|
|
833
|
-
}
|
|
834
|
-
}
|
|
835
|
-
else {
|
|
836
|
-
i.started = true;
|
|
837
|
-
return !isEmpty_1(i.stack);
|
|
838
|
-
}
|
|
839
|
-
}
|
|
840
|
-
export function SetTreeModule_mkIEnumerator(s) {
|
|
841
|
-
let i = SetTreeModule_mkIterator(s);
|
|
842
|
-
return {
|
|
843
|
-
"System.Collections.Generic.IEnumerator`1.get_Current"() {
|
|
844
|
-
return SetTreeModule_current(i);
|
|
845
|
-
},
|
|
846
|
-
"System.Collections.IEnumerator.get_Current"() {
|
|
847
|
-
return SetTreeModule_current(i);
|
|
848
|
-
},
|
|
849
|
-
"System.Collections.IEnumerator.MoveNext"() {
|
|
850
|
-
return SetTreeModule_moveNext(i);
|
|
851
|
-
},
|
|
852
|
-
"System.Collections.IEnumerator.Reset"() {
|
|
853
|
-
i = SetTreeModule_mkIterator(s);
|
|
854
|
-
},
|
|
855
|
-
Dispose() {
|
|
856
|
-
},
|
|
857
|
-
};
|
|
858
|
-
}
|
|
859
|
-
/**
|
|
860
|
-
* Set comparison. Note this can be expensive.
|
|
861
|
-
*/
|
|
862
|
-
export function SetTreeModule_compareStacks(comparer_mut, l1_mut, l2_mut) {
|
|
863
|
-
SetTreeModule_compareStacks: while (true) {
|
|
864
|
-
const comparer = comparer_mut, l1 = l1_mut, l2 = l2_mut;
|
|
865
|
-
if (!isEmpty_1(l1)) {
|
|
866
|
-
if (!isEmpty_1(l2)) {
|
|
867
|
-
if (head(l2) != null) {
|
|
868
|
-
if (head(l1) != null) {
|
|
869
|
-
const x1_3 = value_3(head(l1));
|
|
870
|
-
const x2_3 = value_3(head(l2));
|
|
871
|
-
if (x1_3 instanceof SetTreeNode$1) {
|
|
872
|
-
const x1n_2 = x1_3;
|
|
873
|
-
if (SetTreeNode$1__get_Left(x1n_2) == null) {
|
|
874
|
-
if (x2_3 instanceof SetTreeNode$1) {
|
|
875
|
-
const x2n_2 = x2_3;
|
|
876
|
-
if (SetTreeNode$1__get_Left(x2n_2) == null) {
|
|
877
|
-
const c = comparer.Compare(SetTreeLeaf$1__get_Key(x1n_2), SetTreeLeaf$1__get_Key(x2n_2)) | 0;
|
|
878
|
-
if (c !== 0) {
|
|
879
|
-
return c | 0;
|
|
880
|
-
}
|
|
881
|
-
else {
|
|
882
|
-
comparer_mut = comparer;
|
|
883
|
-
l1_mut = cons(SetTreeNode$1__get_Right(x1n_2), tail(l1));
|
|
884
|
-
l2_mut = cons(SetTreeNode$1__get_Right(x2n_2), tail(l2));
|
|
885
|
-
continue SetTreeModule_compareStacks;
|
|
886
|
-
}
|
|
887
|
-
}
|
|
888
|
-
else {
|
|
889
|
-
let matchResult, t1_6, x1_4, t2_6, x2_4;
|
|
890
|
-
if (!isEmpty_1(l1)) {
|
|
891
|
-
if (head(l1) != null) {
|
|
892
|
-
matchResult = 0;
|
|
893
|
-
t1_6 = tail(l1);
|
|
894
|
-
x1_4 = value_3(head(l1));
|
|
895
|
-
}
|
|
896
|
-
else if (!isEmpty_1(l2)) {
|
|
897
|
-
if (head(l2) != null) {
|
|
898
|
-
matchResult = 1;
|
|
899
|
-
t2_6 = tail(l2);
|
|
900
|
-
x2_4 = value_3(head(l2));
|
|
901
|
-
}
|
|
902
|
-
else {
|
|
903
|
-
matchResult = 2;
|
|
904
|
-
}
|
|
905
|
-
}
|
|
906
|
-
else {
|
|
907
|
-
matchResult = 2;
|
|
908
|
-
}
|
|
909
|
-
}
|
|
910
|
-
else if (!isEmpty_1(l2)) {
|
|
911
|
-
if (head(l2) != null) {
|
|
912
|
-
matchResult = 1;
|
|
913
|
-
t2_6 = tail(l2);
|
|
914
|
-
x2_4 = value_3(head(l2));
|
|
915
|
-
}
|
|
916
|
-
else {
|
|
917
|
-
matchResult = 2;
|
|
918
|
-
}
|
|
919
|
-
}
|
|
920
|
-
else {
|
|
921
|
-
matchResult = 2;
|
|
922
|
-
}
|
|
923
|
-
switch (matchResult) {
|
|
924
|
-
case 0:
|
|
925
|
-
if (x1_4 instanceof SetTreeNode$1) {
|
|
926
|
-
const x1n_3 = x1_4;
|
|
927
|
-
comparer_mut = comparer;
|
|
928
|
-
l1_mut = ofArrayWithTail([SetTreeNode$1__get_Left(x1n_3), SetTreeNode$1_$ctor_5F465FC9(SetTreeLeaf$1__get_Key(x1n_3), SetTreeModule_empty(), SetTreeNode$1__get_Right(x1n_3), 0)], t1_6);
|
|
929
|
-
l2_mut = l2;
|
|
930
|
-
continue SetTreeModule_compareStacks;
|
|
931
|
-
}
|
|
932
|
-
else {
|
|
933
|
-
comparer_mut = comparer;
|
|
934
|
-
l1_mut = ofArrayWithTail([SetTreeModule_empty(), SetTreeLeaf$1_$ctor_2B595(SetTreeLeaf$1__get_Key(x1_4))], t1_6);
|
|
935
|
-
l2_mut = l2;
|
|
936
|
-
continue SetTreeModule_compareStacks;
|
|
937
|
-
}
|
|
938
|
-
case 1:
|
|
939
|
-
if (x2_4 instanceof SetTreeNode$1) {
|
|
940
|
-
const x2n_3 = x2_4;
|
|
941
|
-
comparer_mut = comparer;
|
|
942
|
-
l1_mut = l1;
|
|
943
|
-
l2_mut = ofArrayWithTail([SetTreeNode$1__get_Left(x2n_3), SetTreeNode$1_$ctor_5F465FC9(SetTreeLeaf$1__get_Key(x2n_3), SetTreeModule_empty(), SetTreeNode$1__get_Right(x2n_3), 0)], t2_6);
|
|
944
|
-
continue SetTreeModule_compareStacks;
|
|
945
|
-
}
|
|
946
|
-
else {
|
|
947
|
-
comparer_mut = comparer;
|
|
948
|
-
l1_mut = l1;
|
|
949
|
-
l2_mut = ofArrayWithTail([SetTreeModule_empty(), SetTreeLeaf$1_$ctor_2B595(SetTreeLeaf$1__get_Key(x2_4))], t2_6);
|
|
950
|
-
continue SetTreeModule_compareStacks;
|
|
951
|
-
}
|
|
952
|
-
default:
|
|
953
|
-
throw new Error("unexpected state in SetTree.compareStacks");
|
|
954
|
-
}
|
|
955
|
-
}
|
|
956
|
-
}
|
|
957
|
-
else {
|
|
958
|
-
const c_1 = comparer.Compare(SetTreeLeaf$1__get_Key(x1n_2), SetTreeLeaf$1__get_Key(x2_3)) | 0;
|
|
959
|
-
if (c_1 !== 0) {
|
|
960
|
-
return c_1 | 0;
|
|
961
|
-
}
|
|
962
|
-
else {
|
|
963
|
-
comparer_mut = comparer;
|
|
964
|
-
l1_mut = cons(SetTreeNode$1__get_Right(x1n_2), tail(l1));
|
|
965
|
-
l2_mut = cons(SetTreeModule_empty(), tail(l2));
|
|
966
|
-
continue SetTreeModule_compareStacks;
|
|
967
|
-
}
|
|
968
|
-
}
|
|
969
|
-
}
|
|
970
|
-
else {
|
|
971
|
-
let matchResult_1, t1_7, x1_5, t2_7, x2_5;
|
|
972
|
-
if (!isEmpty_1(l1)) {
|
|
973
|
-
if (head(l1) != null) {
|
|
974
|
-
matchResult_1 = 0;
|
|
975
|
-
t1_7 = tail(l1);
|
|
976
|
-
x1_5 = value_3(head(l1));
|
|
977
|
-
}
|
|
978
|
-
else if (!isEmpty_1(l2)) {
|
|
979
|
-
if (head(l2) != null) {
|
|
980
|
-
matchResult_1 = 1;
|
|
981
|
-
t2_7 = tail(l2);
|
|
982
|
-
x2_5 = value_3(head(l2));
|
|
983
|
-
}
|
|
984
|
-
else {
|
|
985
|
-
matchResult_1 = 2;
|
|
986
|
-
}
|
|
987
|
-
}
|
|
988
|
-
else {
|
|
989
|
-
matchResult_1 = 2;
|
|
990
|
-
}
|
|
991
|
-
}
|
|
992
|
-
else if (!isEmpty_1(l2)) {
|
|
993
|
-
if (head(l2) != null) {
|
|
994
|
-
matchResult_1 = 1;
|
|
995
|
-
t2_7 = tail(l2);
|
|
996
|
-
x2_5 = value_3(head(l2));
|
|
997
|
-
}
|
|
998
|
-
else {
|
|
999
|
-
matchResult_1 = 2;
|
|
1000
|
-
}
|
|
1001
|
-
}
|
|
1002
|
-
else {
|
|
1003
|
-
matchResult_1 = 2;
|
|
1004
|
-
}
|
|
1005
|
-
switch (matchResult_1) {
|
|
1006
|
-
case 0:
|
|
1007
|
-
if (x1_5 instanceof SetTreeNode$1) {
|
|
1008
|
-
const x1n_4 = x1_5;
|
|
1009
|
-
comparer_mut = comparer;
|
|
1010
|
-
l1_mut = ofArrayWithTail([SetTreeNode$1__get_Left(x1n_4), SetTreeNode$1_$ctor_5F465FC9(SetTreeLeaf$1__get_Key(x1n_4), SetTreeModule_empty(), SetTreeNode$1__get_Right(x1n_4), 0)], t1_7);
|
|
1011
|
-
l2_mut = l2;
|
|
1012
|
-
continue SetTreeModule_compareStacks;
|
|
1013
|
-
}
|
|
1014
|
-
else {
|
|
1015
|
-
comparer_mut = comparer;
|
|
1016
|
-
l1_mut = ofArrayWithTail([SetTreeModule_empty(), SetTreeLeaf$1_$ctor_2B595(SetTreeLeaf$1__get_Key(x1_5))], t1_7);
|
|
1017
|
-
l2_mut = l2;
|
|
1018
|
-
continue SetTreeModule_compareStacks;
|
|
1019
|
-
}
|
|
1020
|
-
case 1:
|
|
1021
|
-
if (x2_5 instanceof SetTreeNode$1) {
|
|
1022
|
-
const x2n_4 = x2_5;
|
|
1023
|
-
comparer_mut = comparer;
|
|
1024
|
-
l1_mut = l1;
|
|
1025
|
-
l2_mut = ofArrayWithTail([SetTreeNode$1__get_Left(x2n_4), SetTreeNode$1_$ctor_5F465FC9(SetTreeLeaf$1__get_Key(x2n_4), SetTreeModule_empty(), SetTreeNode$1__get_Right(x2n_4), 0)], t2_7);
|
|
1026
|
-
continue SetTreeModule_compareStacks;
|
|
1027
|
-
}
|
|
1028
|
-
else {
|
|
1029
|
-
comparer_mut = comparer;
|
|
1030
|
-
l1_mut = l1;
|
|
1031
|
-
l2_mut = ofArrayWithTail([SetTreeModule_empty(), SetTreeLeaf$1_$ctor_2B595(SetTreeLeaf$1__get_Key(x2_5))], t2_7);
|
|
1032
|
-
continue SetTreeModule_compareStacks;
|
|
1033
|
-
}
|
|
1034
|
-
default:
|
|
1035
|
-
throw new Error("unexpected state in SetTree.compareStacks");
|
|
1036
|
-
}
|
|
1037
|
-
}
|
|
1038
|
-
}
|
|
1039
|
-
else if (x2_3 instanceof SetTreeNode$1) {
|
|
1040
|
-
const x2n_5 = x2_3;
|
|
1041
|
-
if (SetTreeNode$1__get_Left(x2n_5) == null) {
|
|
1042
|
-
const c_2 = comparer.Compare(SetTreeLeaf$1__get_Key(x1_3), SetTreeLeaf$1__get_Key(x2n_5)) | 0;
|
|
1043
|
-
if (c_2 !== 0) {
|
|
1044
|
-
return c_2 | 0;
|
|
1045
|
-
}
|
|
1046
|
-
else {
|
|
1047
|
-
comparer_mut = comparer;
|
|
1048
|
-
l1_mut = cons(SetTreeModule_empty(), tail(l1));
|
|
1049
|
-
l2_mut = cons(SetTreeNode$1__get_Right(x2n_5), tail(l2));
|
|
1050
|
-
continue SetTreeModule_compareStacks;
|
|
1051
|
-
}
|
|
1052
|
-
}
|
|
1053
|
-
else {
|
|
1054
|
-
let matchResult_2, t1_8, x1_6, t2_8, x2_6;
|
|
1055
|
-
if (!isEmpty_1(l1)) {
|
|
1056
|
-
if (head(l1) != null) {
|
|
1057
|
-
matchResult_2 = 0;
|
|
1058
|
-
t1_8 = tail(l1);
|
|
1059
|
-
x1_6 = value_3(head(l1));
|
|
1060
|
-
}
|
|
1061
|
-
else if (!isEmpty_1(l2)) {
|
|
1062
|
-
if (head(l2) != null) {
|
|
1063
|
-
matchResult_2 = 1;
|
|
1064
|
-
t2_8 = tail(l2);
|
|
1065
|
-
x2_6 = value_3(head(l2));
|
|
1066
|
-
}
|
|
1067
|
-
else {
|
|
1068
|
-
matchResult_2 = 2;
|
|
1069
|
-
}
|
|
1070
|
-
}
|
|
1071
|
-
else {
|
|
1072
|
-
matchResult_2 = 2;
|
|
1073
|
-
}
|
|
1074
|
-
}
|
|
1075
|
-
else if (!isEmpty_1(l2)) {
|
|
1076
|
-
if (head(l2) != null) {
|
|
1077
|
-
matchResult_2 = 1;
|
|
1078
|
-
t2_8 = tail(l2);
|
|
1079
|
-
x2_6 = value_3(head(l2));
|
|
1080
|
-
}
|
|
1081
|
-
else {
|
|
1082
|
-
matchResult_2 = 2;
|
|
1083
|
-
}
|
|
1084
|
-
}
|
|
1085
|
-
else {
|
|
1086
|
-
matchResult_2 = 2;
|
|
1087
|
-
}
|
|
1088
|
-
switch (matchResult_2) {
|
|
1089
|
-
case 0:
|
|
1090
|
-
if (x1_6 instanceof SetTreeNode$1) {
|
|
1091
|
-
const x1n_5 = x1_6;
|
|
1092
|
-
comparer_mut = comparer;
|
|
1093
|
-
l1_mut = ofArrayWithTail([SetTreeNode$1__get_Left(x1n_5), SetTreeNode$1_$ctor_5F465FC9(SetTreeLeaf$1__get_Key(x1n_5), SetTreeModule_empty(), SetTreeNode$1__get_Right(x1n_5), 0)], t1_8);
|
|
1094
|
-
l2_mut = l2;
|
|
1095
|
-
continue SetTreeModule_compareStacks;
|
|
1096
|
-
}
|
|
1097
|
-
else {
|
|
1098
|
-
comparer_mut = comparer;
|
|
1099
|
-
l1_mut = ofArrayWithTail([SetTreeModule_empty(), SetTreeLeaf$1_$ctor_2B595(SetTreeLeaf$1__get_Key(x1_6))], t1_8);
|
|
1100
|
-
l2_mut = l2;
|
|
1101
|
-
continue SetTreeModule_compareStacks;
|
|
1102
|
-
}
|
|
1103
|
-
case 1:
|
|
1104
|
-
if (x2_6 instanceof SetTreeNode$1) {
|
|
1105
|
-
const x2n_6 = x2_6;
|
|
1106
|
-
comparer_mut = comparer;
|
|
1107
|
-
l1_mut = l1;
|
|
1108
|
-
l2_mut = ofArrayWithTail([SetTreeNode$1__get_Left(x2n_6), SetTreeNode$1_$ctor_5F465FC9(SetTreeLeaf$1__get_Key(x2n_6), SetTreeModule_empty(), SetTreeNode$1__get_Right(x2n_6), 0)], t2_8);
|
|
1109
|
-
continue SetTreeModule_compareStacks;
|
|
1110
|
-
}
|
|
1111
|
-
else {
|
|
1112
|
-
comparer_mut = comparer;
|
|
1113
|
-
l1_mut = l1;
|
|
1114
|
-
l2_mut = ofArrayWithTail([SetTreeModule_empty(), SetTreeLeaf$1_$ctor_2B595(SetTreeLeaf$1__get_Key(x2_6))], t2_8);
|
|
1115
|
-
continue SetTreeModule_compareStacks;
|
|
1116
|
-
}
|
|
1117
|
-
default:
|
|
1118
|
-
throw new Error("unexpected state in SetTree.compareStacks");
|
|
1119
|
-
}
|
|
1120
|
-
}
|
|
1121
|
-
}
|
|
1122
|
-
else {
|
|
1123
|
-
const c_3 = comparer.Compare(SetTreeLeaf$1__get_Key(x1_3), SetTreeLeaf$1__get_Key(x2_3)) | 0;
|
|
1124
|
-
if (c_3 !== 0) {
|
|
1125
|
-
return c_3 | 0;
|
|
1126
|
-
}
|
|
1127
|
-
else {
|
|
1128
|
-
comparer_mut = comparer;
|
|
1129
|
-
l1_mut = tail(l1);
|
|
1130
|
-
l2_mut = tail(l2);
|
|
1131
|
-
continue SetTreeModule_compareStacks;
|
|
1132
|
-
}
|
|
1133
|
-
}
|
|
1134
|
-
}
|
|
1135
|
-
else {
|
|
1136
|
-
const x2 = value_3(head(l2));
|
|
1137
|
-
let matchResult_3, t1_2, x1, t2_2, x2_1;
|
|
1138
|
-
if (!isEmpty_1(l1)) {
|
|
1139
|
-
if (head(l1) != null) {
|
|
1140
|
-
matchResult_3 = 0;
|
|
1141
|
-
t1_2 = tail(l1);
|
|
1142
|
-
x1 = value_3(head(l1));
|
|
1143
|
-
}
|
|
1144
|
-
else if (!isEmpty_1(l2)) {
|
|
1145
|
-
if (head(l2) != null) {
|
|
1146
|
-
matchResult_3 = 1;
|
|
1147
|
-
t2_2 = tail(l2);
|
|
1148
|
-
x2_1 = value_3(head(l2));
|
|
1149
|
-
}
|
|
1150
|
-
else {
|
|
1151
|
-
matchResult_3 = 2;
|
|
1152
|
-
}
|
|
1153
|
-
}
|
|
1154
|
-
else {
|
|
1155
|
-
matchResult_3 = 2;
|
|
1156
|
-
}
|
|
1157
|
-
}
|
|
1158
|
-
else if (!isEmpty_1(l2)) {
|
|
1159
|
-
if (head(l2) != null) {
|
|
1160
|
-
matchResult_3 = 1;
|
|
1161
|
-
t2_2 = tail(l2);
|
|
1162
|
-
x2_1 = value_3(head(l2));
|
|
1163
|
-
}
|
|
1164
|
-
else {
|
|
1165
|
-
matchResult_3 = 2;
|
|
1166
|
-
}
|
|
1167
|
-
}
|
|
1168
|
-
else {
|
|
1169
|
-
matchResult_3 = 2;
|
|
1170
|
-
}
|
|
1171
|
-
switch (matchResult_3) {
|
|
1172
|
-
case 0:
|
|
1173
|
-
if (x1 instanceof SetTreeNode$1) {
|
|
1174
|
-
const x1n = x1;
|
|
1175
|
-
comparer_mut = comparer;
|
|
1176
|
-
l1_mut = ofArrayWithTail([SetTreeNode$1__get_Left(x1n), SetTreeNode$1_$ctor_5F465FC9(SetTreeLeaf$1__get_Key(x1n), SetTreeModule_empty(), SetTreeNode$1__get_Right(x1n), 0)], t1_2);
|
|
1177
|
-
l2_mut = l2;
|
|
1178
|
-
continue SetTreeModule_compareStacks;
|
|
1179
|
-
}
|
|
1180
|
-
else {
|
|
1181
|
-
comparer_mut = comparer;
|
|
1182
|
-
l1_mut = ofArrayWithTail([SetTreeModule_empty(), SetTreeLeaf$1_$ctor_2B595(SetTreeLeaf$1__get_Key(x1))], t1_2);
|
|
1183
|
-
l2_mut = l2;
|
|
1184
|
-
continue SetTreeModule_compareStacks;
|
|
1185
|
-
}
|
|
1186
|
-
case 1:
|
|
1187
|
-
if (x2_1 instanceof SetTreeNode$1) {
|
|
1188
|
-
const x2n = x2_1;
|
|
1189
|
-
comparer_mut = comparer;
|
|
1190
|
-
l1_mut = l1;
|
|
1191
|
-
l2_mut = ofArrayWithTail([SetTreeNode$1__get_Left(x2n), SetTreeNode$1_$ctor_5F465FC9(SetTreeLeaf$1__get_Key(x2n), SetTreeModule_empty(), SetTreeNode$1__get_Right(x2n), 0)], t2_2);
|
|
1192
|
-
continue SetTreeModule_compareStacks;
|
|
1193
|
-
}
|
|
1194
|
-
else {
|
|
1195
|
-
comparer_mut = comparer;
|
|
1196
|
-
l1_mut = l1;
|
|
1197
|
-
l2_mut = ofArrayWithTail([SetTreeModule_empty(), SetTreeLeaf$1_$ctor_2B595(SetTreeLeaf$1__get_Key(x2_1))], t2_2);
|
|
1198
|
-
continue SetTreeModule_compareStacks;
|
|
1199
|
-
}
|
|
1200
|
-
default:
|
|
1201
|
-
throw new Error("unexpected state in SetTree.compareStacks");
|
|
1202
|
-
}
|
|
1203
|
-
}
|
|
1204
|
-
}
|
|
1205
|
-
else if (head(l1) != null) {
|
|
1206
|
-
const x1_1 = value_3(head(l1));
|
|
1207
|
-
let matchResult_4, t1_4, x1_2, t2_4, x2_2;
|
|
1208
|
-
if (!isEmpty_1(l1)) {
|
|
1209
|
-
if (head(l1) != null) {
|
|
1210
|
-
matchResult_4 = 0;
|
|
1211
|
-
t1_4 = tail(l1);
|
|
1212
|
-
x1_2 = value_3(head(l1));
|
|
1213
|
-
}
|
|
1214
|
-
else if (!isEmpty_1(l2)) {
|
|
1215
|
-
if (head(l2) != null) {
|
|
1216
|
-
matchResult_4 = 1;
|
|
1217
|
-
t2_4 = tail(l2);
|
|
1218
|
-
x2_2 = value_3(head(l2));
|
|
1219
|
-
}
|
|
1220
|
-
else {
|
|
1221
|
-
matchResult_4 = 2;
|
|
1222
|
-
}
|
|
1223
|
-
}
|
|
1224
|
-
else {
|
|
1225
|
-
matchResult_4 = 2;
|
|
1226
|
-
}
|
|
1227
|
-
}
|
|
1228
|
-
else if (!isEmpty_1(l2)) {
|
|
1229
|
-
if (head(l2) != null) {
|
|
1230
|
-
matchResult_4 = 1;
|
|
1231
|
-
t2_4 = tail(l2);
|
|
1232
|
-
x2_2 = value_3(head(l2));
|
|
1233
|
-
}
|
|
1234
|
-
else {
|
|
1235
|
-
matchResult_4 = 2;
|
|
1236
|
-
}
|
|
1237
|
-
}
|
|
1238
|
-
else {
|
|
1239
|
-
matchResult_4 = 2;
|
|
1240
|
-
}
|
|
1241
|
-
switch (matchResult_4) {
|
|
1242
|
-
case 0:
|
|
1243
|
-
if (x1_2 instanceof SetTreeNode$1) {
|
|
1244
|
-
const x1n_1 = x1_2;
|
|
1245
|
-
comparer_mut = comparer;
|
|
1246
|
-
l1_mut = ofArrayWithTail([SetTreeNode$1__get_Left(x1n_1), SetTreeNode$1_$ctor_5F465FC9(SetTreeLeaf$1__get_Key(x1n_1), SetTreeModule_empty(), SetTreeNode$1__get_Right(x1n_1), 0)], t1_4);
|
|
1247
|
-
l2_mut = l2;
|
|
1248
|
-
continue SetTreeModule_compareStacks;
|
|
1249
|
-
}
|
|
1250
|
-
else {
|
|
1251
|
-
comparer_mut = comparer;
|
|
1252
|
-
l1_mut = ofArrayWithTail([SetTreeModule_empty(), SetTreeLeaf$1_$ctor_2B595(SetTreeLeaf$1__get_Key(x1_2))], t1_4);
|
|
1253
|
-
l2_mut = l2;
|
|
1254
|
-
continue SetTreeModule_compareStacks;
|
|
1255
|
-
}
|
|
1256
|
-
case 1:
|
|
1257
|
-
if (x2_2 instanceof SetTreeNode$1) {
|
|
1258
|
-
const x2n_1 = x2_2;
|
|
1259
|
-
comparer_mut = comparer;
|
|
1260
|
-
l1_mut = l1;
|
|
1261
|
-
l2_mut = ofArrayWithTail([SetTreeNode$1__get_Left(x2n_1), SetTreeNode$1_$ctor_5F465FC9(SetTreeLeaf$1__get_Key(x2n_1), SetTreeModule_empty(), SetTreeNode$1__get_Right(x2n_1), 0)], t2_4);
|
|
1262
|
-
continue SetTreeModule_compareStacks;
|
|
1263
|
-
}
|
|
1264
|
-
else {
|
|
1265
|
-
comparer_mut = comparer;
|
|
1266
|
-
l1_mut = l1;
|
|
1267
|
-
l2_mut = ofArrayWithTail([SetTreeModule_empty(), SetTreeLeaf$1_$ctor_2B595(SetTreeLeaf$1__get_Key(x2_2))], t2_4);
|
|
1268
|
-
continue SetTreeModule_compareStacks;
|
|
1269
|
-
}
|
|
1270
|
-
default:
|
|
1271
|
-
throw new Error("unexpected state in SetTree.compareStacks");
|
|
1272
|
-
}
|
|
1273
|
-
}
|
|
1274
|
-
else {
|
|
1275
|
-
comparer_mut = comparer;
|
|
1276
|
-
l1_mut = tail(l1);
|
|
1277
|
-
l2_mut = tail(l2);
|
|
1278
|
-
continue SetTreeModule_compareStacks;
|
|
1279
|
-
}
|
|
1280
|
-
}
|
|
1281
|
-
else {
|
|
1282
|
-
return 1;
|
|
1283
|
-
}
|
|
1284
|
-
}
|
|
1285
|
-
else if (isEmpty_1(l2)) {
|
|
1286
|
-
return 0;
|
|
1287
|
-
}
|
|
1288
|
-
else {
|
|
1289
|
-
return -1;
|
|
1290
|
-
}
|
|
1291
|
-
break;
|
|
1292
|
-
}
|
|
1293
|
-
}
|
|
1294
|
-
export function SetTreeModule_compare(comparer, t1, t2) {
|
|
1295
|
-
if (t1 == null) {
|
|
1296
|
-
if (t2 == null) {
|
|
1297
|
-
return 0;
|
|
1298
|
-
}
|
|
1299
|
-
else {
|
|
1300
|
-
return -1;
|
|
1301
|
-
}
|
|
1302
|
-
}
|
|
1303
|
-
else if (t2 == null) {
|
|
1304
|
-
return 1;
|
|
1305
|
-
}
|
|
1306
|
-
else {
|
|
1307
|
-
return SetTreeModule_compareStacks(comparer, singleton_1(t1), singleton_1(t2)) | 0;
|
|
1308
|
-
}
|
|
1309
|
-
}
|
|
1310
|
-
export function SetTreeModule_choose(s) {
|
|
1311
|
-
return SetTreeModule_minimumElement(s);
|
|
1312
|
-
}
|
|
1313
|
-
export function SetTreeModule_toList(t) {
|
|
1314
|
-
const loop = (t$0027_mut, acc_mut) => {
|
|
1315
|
-
loop: while (true) {
|
|
1316
|
-
const t$0027 = t$0027_mut, acc = acc_mut;
|
|
1317
|
-
if (t$0027 != null) {
|
|
1318
|
-
const t2 = value_3(t$0027);
|
|
1319
|
-
if (t2 instanceof SetTreeNode$1) {
|
|
1320
|
-
const tn = t2;
|
|
1321
|
-
t$0027_mut = SetTreeNode$1__get_Left(tn);
|
|
1322
|
-
acc_mut = cons(SetTreeLeaf$1__get_Key(tn), loop(SetTreeNode$1__get_Right(tn), acc));
|
|
1323
|
-
continue loop;
|
|
1324
|
-
}
|
|
1325
|
-
else {
|
|
1326
|
-
return cons(SetTreeLeaf$1__get_Key(t2), acc);
|
|
1327
|
-
}
|
|
1328
|
-
}
|
|
1329
|
-
else {
|
|
1330
|
-
return acc;
|
|
1331
|
-
}
|
|
1332
|
-
break;
|
|
1333
|
-
}
|
|
1334
|
-
};
|
|
1335
|
-
return loop(t, empty_1());
|
|
1336
|
-
}
|
|
1337
|
-
export function SetTreeModule_copyToArray(s, arr, i) {
|
|
1338
|
-
let j = i;
|
|
1339
|
-
SetTreeModule_iter((x) => {
|
|
1340
|
-
setItem(arr, j, x);
|
|
1341
|
-
j = ((j + 1) | 0);
|
|
1342
|
-
}, s);
|
|
1343
|
-
}
|
|
1344
|
-
export function SetTreeModule_toArray(s) {
|
|
1345
|
-
const n = SetTreeModule_count(s) | 0;
|
|
1346
|
-
const res = fill(new Array(n), 0, n, null);
|
|
1347
|
-
SetTreeModule_copyToArray(s, res, 0);
|
|
1348
|
-
return res;
|
|
1349
|
-
}
|
|
1350
|
-
export function SetTreeModule_mkFromEnumerator(comparer_mut, acc_mut, e_mut) {
|
|
1351
|
-
SetTreeModule_mkFromEnumerator: while (true) {
|
|
1352
|
-
const comparer = comparer_mut, acc = acc_mut, e = e_mut;
|
|
1353
|
-
if (e["System.Collections.IEnumerator.MoveNext"]()) {
|
|
1354
|
-
comparer_mut = comparer;
|
|
1355
|
-
acc_mut = SetTreeModule_add(comparer, e["System.Collections.Generic.IEnumerator`1.get_Current"](), acc);
|
|
1356
|
-
e_mut = e;
|
|
1357
|
-
continue SetTreeModule_mkFromEnumerator;
|
|
1358
|
-
}
|
|
1359
|
-
else {
|
|
1360
|
-
return acc;
|
|
1361
|
-
}
|
|
1362
|
-
break;
|
|
1363
|
-
}
|
|
1364
|
-
}
|
|
1365
|
-
export function SetTreeModule_ofArray(comparer, l) {
|
|
1366
|
-
return fold_1((acc, k) => SetTreeModule_add(comparer, k, acc), SetTreeModule_empty(), l);
|
|
1367
|
-
}
|
|
1368
|
-
export function SetTreeModule_ofList(comparer, l) {
|
|
1369
|
-
return fold_2((acc, k) => SetTreeModule_add(comparer, k, acc), SetTreeModule_empty(), l);
|
|
1370
|
-
}
|
|
1371
|
-
export function SetTreeModule_ofSeq(comparer, c) {
|
|
1372
|
-
if (isArrayLike(c)) {
|
|
1373
|
-
return SetTreeModule_ofArray(comparer, c);
|
|
1374
|
-
}
|
|
1375
|
-
else if (c instanceof FSharpList) {
|
|
1376
|
-
return SetTreeModule_ofList(comparer, c);
|
|
1377
|
-
}
|
|
1378
|
-
else {
|
|
1379
|
-
const ie = getEnumerator(c);
|
|
1380
|
-
try {
|
|
1381
|
-
return SetTreeModule_mkFromEnumerator(comparer, SetTreeModule_empty(), ie);
|
|
1382
|
-
}
|
|
1383
|
-
finally {
|
|
1384
|
-
disposeSafe(ie);
|
|
1385
|
-
}
|
|
1386
|
-
}
|
|
1387
|
-
}
|
|
1388
|
-
export class FSharpSet {
|
|
1389
|
-
constructor(comparer, tree) {
|
|
1390
|
-
this.comparer = comparer;
|
|
1391
|
-
this.tree = tree;
|
|
1392
|
-
}
|
|
1393
|
-
GetHashCode() {
|
|
1394
|
-
const this$ = this;
|
|
1395
|
-
return FSharpSet__ComputeHashCode(this$) | 0;
|
|
1396
|
-
}
|
|
1397
|
-
Equals(that) {
|
|
1398
|
-
let that_1;
|
|
1399
|
-
const this$ = this;
|
|
1400
|
-
return (that instanceof FSharpSet) && ((that_1 = that, SetTreeModule_compare(FSharpSet__get_Comparer(this$), FSharpSet__get_Tree(this$), FSharpSet__get_Tree(that_1)) === 0));
|
|
1401
|
-
}
|
|
1402
|
-
toString() {
|
|
1403
|
-
const this$ = this;
|
|
1404
|
-
return ("set [" + join("; ", map_1((x) => {
|
|
1405
|
-
let copyOfStruct = x;
|
|
1406
|
-
return toString(copyOfStruct);
|
|
1407
|
-
}, this$))) + "]";
|
|
1408
|
-
}
|
|
1409
|
-
get [Symbol.toStringTag]() {
|
|
1410
|
-
return "FSharpSet";
|
|
1411
|
-
}
|
|
1412
|
-
toJSON() {
|
|
1413
|
-
const this$ = this;
|
|
1414
|
-
return Array.from(this$);
|
|
1415
|
-
}
|
|
1416
|
-
CompareTo(that) {
|
|
1417
|
-
const s = this;
|
|
1418
|
-
return SetTreeModule_compare(FSharpSet__get_Comparer(s), FSharpSet__get_Tree(s), FSharpSet__get_Tree(that)) | 0;
|
|
1419
|
-
}
|
|
1420
|
-
"System.Collections.Generic.ICollection`1.Add2B595"(x) {
|
|
1421
|
-
throw new Error("ReadOnlyCollection");
|
|
1422
|
-
}
|
|
1423
|
-
"System.Collections.Generic.ICollection`1.Clear"() {
|
|
1424
|
-
throw new Error("ReadOnlyCollection");
|
|
1425
|
-
}
|
|
1426
|
-
"System.Collections.Generic.ICollection`1.Remove2B595"(x) {
|
|
1427
|
-
throw new Error("ReadOnlyCollection");
|
|
1428
|
-
}
|
|
1429
|
-
"System.Collections.Generic.ICollection`1.Contains2B595"(x) {
|
|
1430
|
-
const s = this;
|
|
1431
|
-
return SetTreeModule_mem(FSharpSet__get_Comparer(s), x, FSharpSet__get_Tree(s));
|
|
1432
|
-
}
|
|
1433
|
-
"System.Collections.Generic.ICollection`1.CopyToZ3B4C077E"(arr, i) {
|
|
1434
|
-
const s = this;
|
|
1435
|
-
SetTreeModule_copyToArray(FSharpSet__get_Tree(s), arr, i);
|
|
1436
|
-
}
|
|
1437
|
-
"System.Collections.Generic.ICollection`1.get_IsReadOnly"() {
|
|
1438
|
-
return true;
|
|
1439
|
-
}
|
|
1440
|
-
"System.Collections.Generic.ICollection`1.get_Count"() {
|
|
1441
|
-
const s = this;
|
|
1442
|
-
return FSharpSet__get_Count(s) | 0;
|
|
1443
|
-
}
|
|
1444
|
-
"System.Collections.Generic.IReadOnlyCollection`1.get_Count"() {
|
|
1445
|
-
const s = this;
|
|
1446
|
-
return FSharpSet__get_Count(s) | 0;
|
|
1447
|
-
}
|
|
1448
|
-
GetEnumerator() {
|
|
1449
|
-
const s = this;
|
|
1450
|
-
return SetTreeModule_mkIEnumerator(FSharpSet__get_Tree(s));
|
|
1451
|
-
}
|
|
1452
|
-
[Symbol.iterator]() {
|
|
1453
|
-
return toIterator(getEnumerator(this));
|
|
1454
|
-
}
|
|
1455
|
-
"System.Collections.IEnumerable.GetEnumerator"() {
|
|
1456
|
-
const s = this;
|
|
1457
|
-
return SetTreeModule_mkIEnumerator(FSharpSet__get_Tree(s));
|
|
1458
|
-
}
|
|
1459
|
-
get size() {
|
|
1460
|
-
const s = this;
|
|
1461
|
-
return FSharpSet__get_Count(s) | 0;
|
|
1462
|
-
}
|
|
1463
|
-
add(k) {
|
|
1464
|
-
const s = this;
|
|
1465
|
-
throw new Error("Set cannot be mutated");
|
|
1466
|
-
return s;
|
|
1467
|
-
}
|
|
1468
|
-
clear() {
|
|
1469
|
-
throw new Error("Set cannot be mutated");
|
|
1470
|
-
}
|
|
1471
|
-
delete(k) {
|
|
1472
|
-
throw new Error("Set cannot be mutated");
|
|
1473
|
-
return false;
|
|
1474
|
-
}
|
|
1475
|
-
has(k) {
|
|
1476
|
-
const s = this;
|
|
1477
|
-
return FSharpSet__Contains(s, k);
|
|
1478
|
-
}
|
|
1479
|
-
keys() {
|
|
1480
|
-
const s = this;
|
|
1481
|
-
return map_1((x) => x, s);
|
|
1482
|
-
}
|
|
1483
|
-
values() {
|
|
1484
|
-
const s = this;
|
|
1485
|
-
return map_1((x) => x, s);
|
|
1486
|
-
}
|
|
1487
|
-
entries() {
|
|
1488
|
-
const s = this;
|
|
1489
|
-
return map_1((v) => [v, v], s);
|
|
1490
|
-
}
|
|
1491
|
-
forEach(f, thisArg) {
|
|
1492
|
-
const s = this;
|
|
1493
|
-
iterate_1((x) => {
|
|
1494
|
-
f(x, x, s);
|
|
1495
|
-
}, s);
|
|
1496
|
-
}
|
|
1497
|
-
}
|
|
1498
|
-
export function FSharpSet_$reflection(gen0) {
|
|
1499
|
-
return class_type("Set.FSharpSet", [gen0], FSharpSet);
|
|
1500
|
-
}
|
|
1501
|
-
export function FSharpSet_$ctor(comparer, tree) {
|
|
1502
|
-
return new FSharpSet(comparer, tree);
|
|
1503
|
-
}
|
|
1504
|
-
export function FSharpSet__get_Comparer(set$) {
|
|
1505
|
-
return set$.comparer;
|
|
1506
|
-
}
|
|
1507
|
-
export function FSharpSet__get_Tree(set$) {
|
|
1508
|
-
return set$.tree;
|
|
1509
|
-
}
|
|
1510
|
-
export function FSharpSet_Empty(comparer) {
|
|
1511
|
-
return FSharpSet_$ctor(comparer, SetTreeModule_empty());
|
|
1512
|
-
}
|
|
1513
|
-
export function FSharpSet__Add(s, value) {
|
|
1514
|
-
return FSharpSet_$ctor(FSharpSet__get_Comparer(s), SetTreeModule_add(FSharpSet__get_Comparer(s), value, FSharpSet__get_Tree(s)));
|
|
1515
|
-
}
|
|
1516
|
-
export function FSharpSet__Remove(s, value) {
|
|
1517
|
-
return FSharpSet_$ctor(FSharpSet__get_Comparer(s), SetTreeModule_remove(FSharpSet__get_Comparer(s), value, FSharpSet__get_Tree(s)));
|
|
1518
|
-
}
|
|
1519
|
-
export function FSharpSet__get_Count(s) {
|
|
1520
|
-
return SetTreeModule_count(FSharpSet__get_Tree(s));
|
|
1521
|
-
}
|
|
1522
|
-
export function FSharpSet__Contains(s, value) {
|
|
1523
|
-
return SetTreeModule_mem(FSharpSet__get_Comparer(s), value, FSharpSet__get_Tree(s));
|
|
1524
|
-
}
|
|
1525
|
-
export function FSharpSet__Iterate(s, x) {
|
|
1526
|
-
SetTreeModule_iter(x, FSharpSet__get_Tree(s));
|
|
1527
|
-
}
|
|
1528
|
-
export function FSharpSet__Fold(s, f, z) {
|
|
1529
|
-
const f_1 = f;
|
|
1530
|
-
return SetTreeModule_fold((x, z_1) => f_1(z_1, x), z, FSharpSet__get_Tree(s));
|
|
1531
|
-
}
|
|
1532
|
-
export function FSharpSet__get_IsEmpty(s) {
|
|
1533
|
-
return FSharpSet__get_Tree(s) == null;
|
|
1534
|
-
}
|
|
1535
|
-
export function FSharpSet__Partition(s, f) {
|
|
1536
|
-
if (FSharpSet__get_Tree(s) == null) {
|
|
1537
|
-
return [s, s];
|
|
1538
|
-
}
|
|
1539
|
-
else {
|
|
1540
|
-
const patternInput = SetTreeModule_partition(FSharpSet__get_Comparer(s), f, FSharpSet__get_Tree(s));
|
|
1541
|
-
return [FSharpSet_$ctor(FSharpSet__get_Comparer(s), patternInput[0]), FSharpSet_$ctor(FSharpSet__get_Comparer(s), patternInput[1])];
|
|
1542
|
-
}
|
|
1543
|
-
}
|
|
1544
|
-
export function FSharpSet__Filter(s, f) {
|
|
1545
|
-
if (FSharpSet__get_Tree(s) == null) {
|
|
1546
|
-
return s;
|
|
1547
|
-
}
|
|
1548
|
-
else {
|
|
1549
|
-
return FSharpSet_$ctor(FSharpSet__get_Comparer(s), SetTreeModule_filter(FSharpSet__get_Comparer(s), f, FSharpSet__get_Tree(s)));
|
|
1550
|
-
}
|
|
1551
|
-
}
|
|
1552
|
-
export function FSharpSet__Map(s, f, comparer) {
|
|
1553
|
-
return FSharpSet_$ctor(comparer, SetTreeModule_fold((acc, k) => SetTreeModule_add(comparer, f(k), acc), SetTreeModule_empty(), FSharpSet__get_Tree(s)));
|
|
1554
|
-
}
|
|
1555
|
-
export function FSharpSet__Exists(s, f) {
|
|
1556
|
-
return SetTreeModule_exists(f, FSharpSet__get_Tree(s));
|
|
1557
|
-
}
|
|
1558
|
-
export function FSharpSet__ForAll(s, f) {
|
|
1559
|
-
return SetTreeModule_forall(f, FSharpSet__get_Tree(s));
|
|
1560
|
-
}
|
|
1561
|
-
export function FSharpSet_op_Subtraction(set1, set2) {
|
|
1562
|
-
if (FSharpSet__get_Tree(set1) == null) {
|
|
1563
|
-
return set1;
|
|
1564
|
-
}
|
|
1565
|
-
else if (FSharpSet__get_Tree(set2) == null) {
|
|
1566
|
-
return set1;
|
|
1567
|
-
}
|
|
1568
|
-
else {
|
|
1569
|
-
return FSharpSet_$ctor(FSharpSet__get_Comparer(set1), SetTreeModule_diff(FSharpSet__get_Comparer(set1), FSharpSet__get_Tree(set1), FSharpSet__get_Tree(set2)));
|
|
1570
|
-
}
|
|
1571
|
-
}
|
|
1572
|
-
export function FSharpSet_op_Addition(set1, set2) {
|
|
1573
|
-
if (FSharpSet__get_Tree(set2) == null) {
|
|
1574
|
-
return set1;
|
|
1575
|
-
}
|
|
1576
|
-
else if (FSharpSet__get_Tree(set1) == null) {
|
|
1577
|
-
return set2;
|
|
1578
|
-
}
|
|
1579
|
-
else {
|
|
1580
|
-
return FSharpSet_$ctor(FSharpSet__get_Comparer(set1), SetTreeModule_union(FSharpSet__get_Comparer(set1), FSharpSet__get_Tree(set1), FSharpSet__get_Tree(set2)));
|
|
1581
|
-
}
|
|
1582
|
-
}
|
|
1583
|
-
export function FSharpSet_Intersection(a, b) {
|
|
1584
|
-
if (FSharpSet__get_Tree(b) == null) {
|
|
1585
|
-
return b;
|
|
1586
|
-
}
|
|
1587
|
-
else if (FSharpSet__get_Tree(a) == null) {
|
|
1588
|
-
return a;
|
|
1589
|
-
}
|
|
1590
|
-
else {
|
|
1591
|
-
return FSharpSet_$ctor(FSharpSet__get_Comparer(a), SetTreeModule_intersection(FSharpSet__get_Comparer(a), FSharpSet__get_Tree(a), FSharpSet__get_Tree(b)));
|
|
1592
|
-
}
|
|
1593
|
-
}
|
|
1594
|
-
export function FSharpSet_IntersectionMany(sets) {
|
|
1595
|
-
return reduce(FSharpSet_Intersection, sets);
|
|
1596
|
-
}
|
|
1597
|
-
export function FSharpSet_Equality(a, b) {
|
|
1598
|
-
return SetTreeModule_compare(FSharpSet__get_Comparer(a), FSharpSet__get_Tree(a), FSharpSet__get_Tree(b)) === 0;
|
|
1599
|
-
}
|
|
1600
|
-
export function FSharpSet_Compare(a, b) {
|
|
1601
|
-
return SetTreeModule_compare(FSharpSet__get_Comparer(a), FSharpSet__get_Tree(a), FSharpSet__get_Tree(b));
|
|
1602
|
-
}
|
|
1603
|
-
export function FSharpSet__get_Choose(x) {
|
|
1604
|
-
return SetTreeModule_choose(FSharpSet__get_Tree(x));
|
|
1605
|
-
}
|
|
1606
|
-
export function FSharpSet__get_MinimumElement(x) {
|
|
1607
|
-
return SetTreeModule_minimumElement(FSharpSet__get_Tree(x));
|
|
1608
|
-
}
|
|
1609
|
-
export function FSharpSet__get_MaximumElement(x) {
|
|
1610
|
-
return SetTreeModule_maximumElement(FSharpSet__get_Tree(x));
|
|
1611
|
-
}
|
|
1612
|
-
export function FSharpSet__IsSubsetOf(x, otherSet) {
|
|
1613
|
-
return SetTreeModule_subset(FSharpSet__get_Comparer(x), FSharpSet__get_Tree(x), FSharpSet__get_Tree(otherSet));
|
|
1614
|
-
}
|
|
1615
|
-
export function FSharpSet__IsSupersetOf(x, otherSet) {
|
|
1616
|
-
return SetTreeModule_subset(FSharpSet__get_Comparer(x), FSharpSet__get_Tree(otherSet), FSharpSet__get_Tree(x));
|
|
1617
|
-
}
|
|
1618
|
-
export function FSharpSet__IsProperSubsetOf(x, otherSet) {
|
|
1619
|
-
return SetTreeModule_properSubset(FSharpSet__get_Comparer(x), FSharpSet__get_Tree(x), FSharpSet__get_Tree(otherSet));
|
|
1620
|
-
}
|
|
1621
|
-
export function FSharpSet__IsProperSupersetOf(x, otherSet) {
|
|
1622
|
-
return SetTreeModule_properSubset(FSharpSet__get_Comparer(x), FSharpSet__get_Tree(otherSet), FSharpSet__get_Tree(x));
|
|
1623
|
-
}
|
|
1624
|
-
export function FSharpSet__ToList(x) {
|
|
1625
|
-
return SetTreeModule_toList(FSharpSet__get_Tree(x));
|
|
1626
|
-
}
|
|
1627
|
-
export function FSharpSet__ToArray(x) {
|
|
1628
|
-
return SetTreeModule_toArray(FSharpSet__get_Tree(x));
|
|
1629
|
-
}
|
|
1630
|
-
export function FSharpSet__ComputeHashCode(this$) {
|
|
1631
|
-
let res = 0;
|
|
1632
|
-
const enumerator = getEnumerator(this$);
|
|
1633
|
-
try {
|
|
1634
|
-
while (enumerator["System.Collections.IEnumerator.MoveNext"]()) {
|
|
1635
|
-
const x_1 = enumerator["System.Collections.Generic.IEnumerator`1.get_Current"]();
|
|
1636
|
-
res = ((((res << 1) + structuralHash(x_1)) + 631) | 0);
|
|
1637
|
-
}
|
|
1638
|
-
}
|
|
1639
|
-
finally {
|
|
1640
|
-
disposeSafe(enumerator);
|
|
1641
|
-
}
|
|
1642
|
-
return Math.abs(res) | 0;
|
|
1643
|
-
}
|
|
1644
|
-
export function isEmpty(set$) {
|
|
1645
|
-
return FSharpSet__get_IsEmpty(set$);
|
|
1646
|
-
}
|
|
1647
|
-
export function contains(element, set$) {
|
|
1648
|
-
return FSharpSet__Contains(set$, element);
|
|
1649
|
-
}
|
|
1650
|
-
export function add(value, set$) {
|
|
1651
|
-
return FSharpSet__Add(set$, value);
|
|
1652
|
-
}
|
|
1653
|
-
export function singleton(value, comparer) {
|
|
1654
|
-
return FSharpSet__Add(FSharpSet_Empty(comparer), value);
|
|
1655
|
-
}
|
|
1656
|
-
export function remove(value, set$) {
|
|
1657
|
-
return FSharpSet__Remove(set$, value);
|
|
1658
|
-
}
|
|
1659
|
-
export function union(set1, set2) {
|
|
1660
|
-
return FSharpSet_op_Addition(set1, set2);
|
|
1661
|
-
}
|
|
1662
|
-
export function unionMany(sets, comparer) {
|
|
1663
|
-
return fold_3(FSharpSet_op_Addition, FSharpSet_Empty(comparer), sets);
|
|
1664
|
-
}
|
|
1665
|
-
export function intersect(set1, set2) {
|
|
1666
|
-
return FSharpSet_Intersection(set1, set2);
|
|
1667
|
-
}
|
|
1668
|
-
export function intersectMany(sets) {
|
|
1669
|
-
return FSharpSet_IntersectionMany(sets);
|
|
1670
|
-
}
|
|
1671
|
-
export function iterate(action, set$) {
|
|
1672
|
-
FSharpSet__Iterate(set$, action);
|
|
1673
|
-
}
|
|
1674
|
-
export function empty(comparer) {
|
|
1675
|
-
return FSharpSet_Empty(comparer);
|
|
1676
|
-
}
|
|
1677
|
-
export function forAll(predicate, set$) {
|
|
1678
|
-
return FSharpSet__ForAll(set$, predicate);
|
|
1679
|
-
}
|
|
1680
|
-
export function exists(predicate, set$) {
|
|
1681
|
-
return FSharpSet__Exists(set$, predicate);
|
|
1682
|
-
}
|
|
1683
|
-
export function filter(predicate, set$) {
|
|
1684
|
-
return FSharpSet__Filter(set$, predicate);
|
|
1685
|
-
}
|
|
1686
|
-
export function partition(predicate, set$) {
|
|
1687
|
-
return FSharpSet__Partition(set$, predicate);
|
|
1688
|
-
}
|
|
1689
|
-
export function fold(folder, state, set$) {
|
|
1690
|
-
return SetTreeModule_fold(folder, state, FSharpSet__get_Tree(set$));
|
|
1691
|
-
}
|
|
1692
|
-
export function foldBack(folder, set$, state) {
|
|
1693
|
-
return SetTreeModule_foldBack(folder, FSharpSet__get_Tree(set$), state);
|
|
1694
|
-
}
|
|
1695
|
-
export function map(mapping, set$, comparer) {
|
|
1696
|
-
return FSharpSet__Map(set$, mapping, comparer);
|
|
1697
|
-
}
|
|
1698
|
-
export function count(set$) {
|
|
1699
|
-
return FSharpSet__get_Count(set$);
|
|
1700
|
-
}
|
|
1701
|
-
export function ofList(elements, comparer) {
|
|
1702
|
-
return FSharpSet_$ctor(comparer, SetTreeModule_ofSeq(comparer, elements));
|
|
1703
|
-
}
|
|
1704
|
-
export function ofArray(array, comparer) {
|
|
1705
|
-
return FSharpSet_$ctor(comparer, SetTreeModule_ofArray(comparer, array));
|
|
1706
|
-
}
|
|
1707
|
-
export function toList(set$) {
|
|
1708
|
-
return FSharpSet__ToList(set$);
|
|
1709
|
-
}
|
|
1710
|
-
export function toArray(set$) {
|
|
1711
|
-
return FSharpSet__ToArray(set$);
|
|
1712
|
-
}
|
|
1713
|
-
export function toSeq(set$) {
|
|
1714
|
-
return map_1((x) => x, set$);
|
|
1715
|
-
}
|
|
1716
|
-
export function ofSeq(elements, comparer) {
|
|
1717
|
-
return FSharpSet_$ctor(comparer, SetTreeModule_ofSeq(comparer, elements));
|
|
1718
|
-
}
|
|
1719
|
-
export function difference(set1, set2) {
|
|
1720
|
-
return FSharpSet_op_Subtraction(set1, set2);
|
|
1721
|
-
}
|
|
1722
|
-
export function isSubset(set1, set2) {
|
|
1723
|
-
return SetTreeModule_subset(FSharpSet__get_Comparer(set1), FSharpSet__get_Tree(set1), FSharpSet__get_Tree(set2));
|
|
1724
|
-
}
|
|
1725
|
-
export function isSuperset(set1, set2) {
|
|
1726
|
-
return SetTreeModule_subset(FSharpSet__get_Comparer(set1), FSharpSet__get_Tree(set2), FSharpSet__get_Tree(set1));
|
|
1727
|
-
}
|
|
1728
|
-
export function isProperSubset(set1, set2) {
|
|
1729
|
-
return SetTreeModule_properSubset(FSharpSet__get_Comparer(set1), FSharpSet__get_Tree(set1), FSharpSet__get_Tree(set2));
|
|
1730
|
-
}
|
|
1731
|
-
export function isProperSuperset(set1, set2) {
|
|
1732
|
-
return SetTreeModule_properSubset(FSharpSet__get_Comparer(set1), FSharpSet__get_Tree(set2), FSharpSet__get_Tree(set1));
|
|
1733
|
-
}
|
|
1734
|
-
export function minElement(set$) {
|
|
1735
|
-
return FSharpSet__get_MinimumElement(set$);
|
|
1736
|
-
}
|
|
1737
|
-
export function maxElement(set$) {
|
|
1738
|
-
return FSharpSet__get_MaximumElement(set$);
|
|
1739
|
-
}
|
|
1740
|
-
export function unionWith(s1, s2) {
|
|
1741
|
-
return fold_3((acc, x) => acc.add(x), s1, s2);
|
|
1742
|
-
}
|
|
1743
|
-
export function newMutableSetWith(s1, s2) {
|
|
1744
|
-
if (s1 instanceof HashSet) {
|
|
1745
|
-
const s1_1 = s1;
|
|
1746
|
-
return HashSet_$ctor_Z6150332D(s2, HashSet__get_Comparer(s1_1));
|
|
1747
|
-
}
|
|
1748
|
-
else {
|
|
1749
|
-
return new Set(s2);
|
|
1750
|
-
}
|
|
1751
|
-
}
|
|
1752
|
-
export function intersectWith(s1, s2) {
|
|
1753
|
-
const s2_1 = newMutableSetWith(s1, s2);
|
|
1754
|
-
iterate_1((x) => {
|
|
1755
|
-
if (!s2_1.has(x)) {
|
|
1756
|
-
s1.delete(x);
|
|
1757
|
-
}
|
|
1758
|
-
}, s1.values());
|
|
1759
|
-
}
|
|
1760
|
-
export function exceptWith(s1, s2) {
|
|
1761
|
-
iterate_1((x) => {
|
|
1762
|
-
s1.delete(x);
|
|
1763
|
-
}, s2);
|
|
1764
|
-
}
|
|
1765
|
-
export function isSubsetOf(s1, s2) {
|
|
1766
|
-
const s2_1 = newMutableSetWith(s1, s2);
|
|
1767
|
-
return forAll_1((value) => s2_1.has(value), s1.values());
|
|
1768
|
-
}
|
|
1769
|
-
export function isSupersetOf(s1, s2) {
|
|
1770
|
-
return forAll_1((value) => s1.has(value), s2);
|
|
1771
|
-
}
|
|
1772
|
-
export function isProperSubsetOf(s1, s2) {
|
|
1773
|
-
const s2_1 = newMutableSetWith(s1, s2);
|
|
1774
|
-
if (s2_1.size > s1.size) {
|
|
1775
|
-
return forAll_1((value) => s2_1.has(value), s1.values());
|
|
1776
|
-
}
|
|
1777
|
-
else {
|
|
1778
|
-
return false;
|
|
1779
|
-
}
|
|
1780
|
-
}
|
|
1781
|
-
export function isProperSupersetOf(s1, s2) {
|
|
1782
|
-
const s2_1 = cache(s2);
|
|
1783
|
-
if (exists_1((arg) => !s1.has(arg), s2_1)) {
|
|
1784
|
-
return forAll_1((value_2) => s1.has(value_2), s2_1);
|
|
1785
|
-
}
|
|
1786
|
-
else {
|
|
1787
|
-
return false;
|
|
1788
|
-
}
|
|
1789
|
-
}
|