@nfdi4plants/arctrl 2.0.1 → 2.1.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/ARC.js +43 -108
- package/Contract/ARC.js +1 -1
- package/Contract/ArcAssay.js +37 -14
- package/Contract/ArcInvestigation.js +4 -4
- package/Contract/ArcStudy.js +37 -14
- package/Contract/Contract.js +6 -6
- package/Contract/Datamap.js +5 -5
- package/Contract/Git.js +6 -6
- package/Contract/ValidationPackagesConfig.js +5 -5
- package/Core/ArcTypes.js +17 -17
- package/Core/Comment.js +16 -9
- package/Core/CommentList.js +6 -6
- package/Core/Conversion.js +64 -64
- package/Core/Data.js +11 -11
- package/Core/DataContext.js +4 -4
- package/Core/DataFile.js +2 -2
- package/Core/DataMap.js +4 -4
- package/Core/Helper/Collections.js +11 -11
- package/Core/Helper/HashCodes.js +5 -5
- package/Core/Helper/Identifier.js +9 -9
- package/Core/Helper/Regex.js +38 -38
- package/Core/Helper/SemVer.js +8 -8
- package/Core/OntologyAnnotation.js +11 -11
- package/Core/OntologySourceReference.js +4 -4
- package/Core/Person.js +11 -11
- package/Core/Process/ColumnIndex.js +7 -7
- package/Core/Process/Component.js +10 -10
- package/Core/Process/Factor.js +6 -6
- package/Core/Process/FactorValue.js +10 -10
- package/Core/Process/Material.js +5 -5
- package/Core/Process/MaterialAttribute.js +4 -4
- package/Core/Process/MaterialAttributeValue.js +10 -10
- package/Core/Process/MaterialType.js +2 -2
- package/Core/Process/Process.js +19 -19
- package/Core/Process/ProcessInput.js +16 -16
- package/Core/Process/ProcessOutput.js +16 -16
- package/Core/Process/ProcessParameterValue.js +10 -10
- package/Core/Process/ProcessSequence.js +6 -6
- package/Core/Process/Protocol.js +5 -5
- package/Core/Process/ProtocolParameter.js +4 -4
- package/Core/Process/Sample.js +5 -5
- package/Core/Process/Source.js +5 -5
- package/Core/Publication.js +10 -10
- package/Core/Table/ArcTable.js +35 -28
- package/Core/Table/ArcTableAux.js +22 -22
- package/Core/Table/ArcTables.js +14 -14
- package/Core/Table/CompositeCell.js +6 -6
- package/Core/Table/CompositeColumn.js +5 -5
- package/Core/Table/CompositeHeader.js +9 -9
- package/Core/Template.js +7 -7
- package/Core/Templates.js +8 -8
- package/Core/Value.js +11 -11
- package/FileSystem/Commit.js +2 -2
- package/FileSystem/FileSystem.js +4 -4
- package/FileSystem/FileSystemTree.js +14 -14
- package/FileSystem/Path.js +3 -3
- package/Json/ARC.js +21 -15
- package/Json/Assay.js +108 -169
- package/Json/Comment.js +84 -122
- package/Json/ConverterOptions.js +2 -2
- package/Json/Data.js +100 -107
- package/Json/DataFile.js +22 -57
- package/Json/DataMap/DataContext.js +25 -16
- package/Json/DataMap/DataMap.js +11 -7
- package/Json/Decode.js +11 -14
- package/Json/Encode.js +24 -13
- package/Json/IDTable.js +14 -3
- package/Json/Investigation.js +194 -176
- package/Json/OntologyAnnotation.js +113 -127
- package/Json/OntologySourceReference.js +93 -111
- package/Json/Person.js +204 -135
- package/Json/Process/AssayMaterials.js +12 -14
- package/Json/Process/Component.js +23 -68
- package/Json/Process/Factor.js +28 -46
- package/Json/Process/FactorValue.js +28 -50
- package/Json/Process/Material.js +56 -83
- package/Json/Process/MaterialAttribute.js +23 -45
- package/Json/Process/MaterialAttributeValue.js +28 -71
- package/Json/Process/MaterialType.js +17 -35
- package/Json/Process/Process.js +70 -85
- package/Json/Process/ProcessInput.js +18 -45
- package/Json/Process/ProcessOutput.js +15 -63
- package/Json/Process/ProcessParameterValue.js +21 -70
- package/Json/Process/Protocol.js +80 -83
- package/Json/Process/ProtocolParameter.js +23 -44
- package/Json/Process/Sample.js +66 -93
- package/Json/Process/Source.js +54 -81
- package/Json/Process/StudyMaterials.js +13 -15
- package/Json/Process/Value.js +19 -29
- package/Json/PropertyValue.js +86 -28
- package/Json/Publication.js +92 -115
- package/Json/ROCrateObject.js +146 -0
- package/Json/StringTable.js +27 -10
- package/Json/Study.js +193 -182
- package/Json/Table/ArcTable.js +119 -115
- package/Json/Table/CellTable.js +24 -11
- package/Json/Table/CompositeCell.js +40 -41
- package/Json/Table/CompositeHeader.js +24 -36
- package/Json/Table/IOType.js +9 -31
- package/Json/Table/OATable.js +23 -10
- package/Json/Table/Templates.js +82 -90
- package/Json/context/rocrate/isa_assay_context.js +60 -4
- package/Json/context/rocrate/isa_comment_context.js +28 -4
- package/Json/context/rocrate/isa_component_context.js +44 -4
- package/Json/context/rocrate/isa_data_context.js +40 -4
- package/Json/context/rocrate/isa_factor_context.js +40 -4
- package/Json/context/rocrate/isa_factor_value_context.js +52 -4
- package/Json/context/rocrate/isa_investigation_context.js +68 -4
- package/Json/context/rocrate/isa_material_attribute_context.js +32 -4
- package/Json/context/rocrate/isa_material_attribute_value_context.js +48 -4
- package/Json/context/rocrate/isa_material_context.js +36 -4
- package/Json/context/rocrate/isa_ontology_annotation_context.js +36 -4
- package/Json/context/rocrate/isa_ontology_source_reference_context.js +40 -4
- package/Json/context/rocrate/isa_organization_context.js +24 -4
- package/Json/context/rocrate/isa_person_context.js +85 -5
- package/Json/context/rocrate/isa_process_context.js +56 -4
- package/Json/context/rocrate/isa_process_parameter_value_context.js +48 -4
- package/Json/context/rocrate/isa_protocol_context.js +60 -4
- package/Json/context/rocrate/isa_protocol_parameter_context.js +32 -4
- package/Json/context/rocrate/isa_publication_context.js +44 -4
- package/Json/context/rocrate/isa_sample_context.js +32 -4
- package/Json/context/rocrate/isa_source_context.js +32 -4
- package/Json/context/rocrate/isa_study_context.js +72 -4
- package/Json/context/rocrate/property_value_context.js +58 -2
- package/Json/context/rocrate/rocrate_context.js +45 -5
- package/Json.js +12 -12
- package/JsonIO/ARC.js +31 -0
- package/JsonIO/Assay.js +99 -0
- package/JsonIO/Comment.js +73 -0
- package/JsonIO/Data.js +50 -0
- package/JsonIO/DataFile.js +49 -0
- package/JsonIO/DataMap/DataMap.js +29 -0
- package/JsonIO/Decode.js +4 -0
- package/JsonIO/Investigation.js +99 -0
- package/JsonIO/OntologyAnnotation.js +73 -0
- package/JsonIO/OntologySourceReference.js +73 -0
- package/JsonIO/Person.js +74 -0
- package/JsonIO/Process/Component.js +50 -0
- package/JsonIO/Process/Factor.js +28 -0
- package/JsonIO/Process/FactorValue.js +29 -0
- package/JsonIO/Process/Material.js +50 -0
- package/JsonIO/Process/MaterialAttribute.js +29 -0
- package/JsonIO/Process/MaterialAttributeValue.js +50 -0
- package/JsonIO/Process/MaterialType.js +28 -0
- package/JsonIO/Process/Process.js +50 -0
- package/JsonIO/Process/ProcessInput.js +29 -0
- package/JsonIO/Process/ProcessOutput.js +50 -0
- package/JsonIO/Process/ProcessParameterValue.js +50 -0
- package/{Json → JsonIO}/Process/ProcessSequence.js +16 -16
- package/JsonIO/Process/Protocol.js +50 -0
- package/JsonIO/Process/ProtocolParameter.js +28 -0
- package/JsonIO/Process/Sample.js +50 -0
- package/JsonIO/Process/Source.js +50 -0
- package/JsonIO/Process/StudyMaterials.js +22 -0
- package/JsonIO/Process/Value.js +23 -0
- package/JsonIO/Publication.js +74 -0
- package/JsonIO/ROCrateObject.js +146 -0
- package/JsonIO/Study.js +99 -0
- package/JsonIO/Table/ArcTable.js +82 -0
- package/JsonIO/Table/CompositeCell.js +28 -0
- package/JsonIO/Table/CompositeHeader.js +28 -0
- package/{Json → JsonIO}/Table/Compression.js +20 -10
- package/JsonIO/Table/IOType.js +28 -0
- package/JsonIO/Table/Templates.js +88 -0
- package/ROCrate/ISAProfile/Assay.js +32 -0
- package/ROCrate/ISAProfile/Data.js +28 -0
- package/ROCrate/ISAProfile/Dataset.js +18 -0
- package/ROCrate/ISAProfile/Investigation.js +35 -0
- package/ROCrate/ISAProfile/LabProcess.js +32 -0
- package/ROCrate/ISAProfile/LabProtocol.js +33 -0
- package/ROCrate/ISAProfile/Person.js +35 -0
- package/ROCrate/ISAProfile/PropertyValue.js +30 -0
- package/ROCrate/ISAProfile/Sample.js +27 -0
- package/ROCrate/ISAProfile/ScholarlyArticle.js +30 -0
- package/ROCrate/ISAProfile/Study.js +35 -0
- package/ROCrate/ROCrateObject.js +61 -0
- package/Spreadsheet/AnnotationTable/ArcTable.js +16 -16
- package/Spreadsheet/AnnotationTable/CompositeCell.js +2 -2
- package/Spreadsheet/AnnotationTable/CompositeColumn.js +7 -7
- package/Spreadsheet/AnnotationTable/CompositeHeader.js +25 -25
- package/Spreadsheet/ArcAssay.js +9 -9
- package/Spreadsheet/ArcInvestigation.js +14 -14
- package/Spreadsheet/ArcStudy.js +7 -7
- package/Spreadsheet/CollectionAux.js +11 -11
- package/Spreadsheet/DataMap.js +3 -3
- package/Spreadsheet/DataMapTable/DataMapColumn.js +6 -6
- package/Spreadsheet/DataMapTable/DataMapHeader.js +23 -23
- package/Spreadsheet/DataMapTable/DataMapTable.js +13 -13
- package/Spreadsheet/Metadata/Assays.js +11 -11
- package/Spreadsheet/Metadata/Comment.js +5 -5
- package/Spreadsheet/Metadata/Contacts.js +7 -7
- package/Spreadsheet/Metadata/Conversions.js +7 -7
- package/Spreadsheet/Metadata/DesignDescriptors.js +1 -1
- package/Spreadsheet/Metadata/Factors.js +8 -8
- package/Spreadsheet/Metadata/OntologyAnnotation.js +6 -6
- package/Spreadsheet/Metadata/OntologySourceReference.js +6 -6
- package/Spreadsheet/Metadata/Protocols.js +9 -9
- package/Spreadsheet/Metadata/Publication.js +7 -7
- package/Spreadsheet/Metadata/SparseTable.js +21 -21
- package/Spreadsheet/Metadata/Study.js +12 -12
- package/Spreadsheet/Template.js +21 -21
- package/Template.Web.js +6 -6
- package/ValidationPackages/ValidationPackage.js +6 -6
- package/ValidationPackages/ValidationPackagesConfig.js +9 -9
- package/WebRequest/WebRequest.Node.js +2 -2
- package/WebRequest/WebRequest.js +2 -2
- package/Xlsx.js +9 -9
- package/Yaml/Encode.js +1 -1
- package/Yaml/ValidationPackage.js +5 -5
- package/Yaml/ValidationPackagesConfig.js +5 -5
- package/fable_modules/DynamicObj.4.0.0/DynObj.fs +219 -0
- package/fable_modules/DynamicObj.4.0.0/DynObj.fs.js +209 -0
- package/fable_modules/DynamicObj.4.0.0/DynamicObj.fableproj +47 -0
- package/fable_modules/DynamicObj.4.0.0/DynamicObj.fs +310 -0
- package/fable_modules/DynamicObj.4.0.0/DynamicObj.fs.js +166 -0
- package/fable_modules/DynamicObj.4.0.0/FableJS.fs +162 -0
- package/fable_modules/DynamicObj.4.0.0/FableJS.fs.js +141 -0
- package/fable_modules/DynamicObj.4.0.0/FablePy.fs +215 -0
- package/fable_modules/DynamicObj.4.0.0/HashCodes.fs +46 -0
- package/fable_modules/DynamicObj.4.0.0/HashCodes.fs.js +43 -0
- package/fable_modules/DynamicObj.4.0.0/PropertyHelper.fs +33 -0
- package/fable_modules/DynamicObj.4.0.0/PropertyHelper.fs.js +21 -0
- package/fable_modules/DynamicObj.4.0.0/ReflectionUtils.fs +72 -0
- package/fable_modules/DynamicObj.4.0.0/ReflectionUtils.fs.js +86 -0
- package/fable_modules/{Thoth.Json.JavaScript.0.1.0/obj/Release → DynamicObj.4.0.0/obj/Debug}/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +1 -1
- package/fable_modules/DynamicObj.4.0.0/obj/Debug/netstandard2.0/DynamicObj.AssemblyInfo.fs +19 -0
- package/fable_modules/{Thoth.Json.Core.0.2.1/obj/Debug → DynamicObj.4.0.0/obj/Release}/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +1 -1
- package/fable_modules/DynamicObj.4.0.0/obj/Release/netstandard2.0/DynamicObj.AssemblyInfo.fs +19 -0
- package/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +8 -8
- package/fable_modules/Fable.Promise.2.2.2/Promise.fs.js +6 -6
- package/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +11 -11
- package/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +4 -4
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Cells/FsCell.fs.js +15 -15
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Cells/FsCellsCollection.fs.js +11 -11
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/DSL/CellBuilder.fs.js +7 -7
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/DSL/ColumnBuilder.fs.js +4 -4
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/DSL/DSL.fs.js +3 -3
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/DSL/Expression.fs.js +1 -1
- package/fable_modules/FsSpreadsheet.6.3.0-alpha.4/DSL/Operators.fs.js +6 -0
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/DSL/RowBuilder.fs.js +4 -4
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/DSL/SheetBuilder.fs.js +4 -4
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/DSL/TableBuilder.fs.js +4 -4
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/DSL/Transform.fs.js +10 -10
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/DSL/Types.fs.js +6 -6
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/DSL/WorkbookBuilder.fs.js +4 -4
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/FsAddress.fs.js +11 -11
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/FsColumn.fs.js +5 -5
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/FsRow.fs.js +5 -5
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/FsSpreadsheet.fableproj +5 -5
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/FsWorkbook.fs.js +7 -7
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/FsWorksheet.fs.js +11 -11
- package/fable_modules/FsSpreadsheet.6.3.0-alpha.4/Json/Cell.fs.js +64 -0
- package/fable_modules/FsSpreadsheet.6.3.0-alpha.4/Json/Column.fs.js +39 -0
- package/fable_modules/FsSpreadsheet.6.3.0-alpha.4/Json/Row.fs.js +39 -0
- package/fable_modules/FsSpreadsheet.6.3.0-alpha.4/Json/Table.fs.js +30 -0
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Json/Value.fs.js +38 -13
- package/fable_modules/FsSpreadsheet.6.3.0-alpha.4/Json/Workbook.fs.js +46 -0
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Json/Worksheet.fs.js +33 -8
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Ranges/FsRange.fs.js +4 -4
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Ranges/FsRangeAddress.fs.js +4 -4
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Ranges/FsRangeBase.fs.js +4 -4
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Ranges/FsRangeColumn.fs.js +4 -4
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Ranges/FsRangeRow.fs.js +2 -2
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/SheetBuilder.fs.js +10 -10
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Tables/FsTable.fs.js +11 -11
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Tables/FsTableField.fs.js +5 -5
- package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Tables/FsTableRow.fs.js +2 -2
- package/fable_modules/{Thoth.Json.Core.0.2.1 → Thoth.Json.Core.0.4.0}/Decode.fs +67 -28
- package/fable_modules/{Thoth.Json.Core.0.2.1 → Thoth.Json.Core.0.4.0}/Decode.fs.js +79 -50
- package/fable_modules/{Thoth.Json.Core.0.2.1 → Thoth.Json.Core.0.4.0}/Encode.fs +139 -54
- package/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.js +192 -0
- package/fable_modules/Thoth.Json.Core.0.4.0/Thoth.Json.Core.fableproj +33 -0
- package/fable_modules/{Thoth.Json.Core.0.2.1 → Thoth.Json.Core.0.4.0}/Types.fs +12 -5
- package/fable_modules/{Thoth.Json.Core.0.2.1 → Thoth.Json.Core.0.4.0}/Types.fs.js +2 -2
- package/fable_modules/{Thoth.Json.JavaScript.0.1.0 → Thoth.Json.JavaScript.0.3.0}/Decode.fs +9 -0
- package/fable_modules/{Thoth.Json.JavaScript.0.1.0 → Thoth.Json.JavaScript.0.3.0}/Decode.fs.js +16 -2
- package/fable_modules/{Thoth.Json.JavaScript.0.1.0 → Thoth.Json.JavaScript.0.3.0}/Encode.fs +13 -5
- package/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.js +58 -0
- package/fable_modules/Thoth.Json.JavaScript.0.3.0/Thoth.Json.JavaScript.fableproj +28 -0
- package/fable_modules/YAMLicious.0.0.1/Decode.fs.js +17 -17
- package/fable_modules/YAMLicious.0.0.1/Encode.fs.js +6 -6
- package/fable_modules/YAMLicious.0.0.1/Library.fs.js +1 -1
- package/fable_modules/YAMLicious.0.0.1/Persil.fs.js +4 -4
- package/fable_modules/YAMLicious.0.0.1/Preprocessing.fs.js +6 -6
- package/fable_modules/YAMLicious.0.0.1/Reader.fs.js +9 -9
- package/fable_modules/YAMLicious.0.0.1/RegexActivePatterns.fs.js +36 -36
- package/fable_modules/YAMLicious.0.0.1/Writer.fs.js +4 -4
- package/fable_modules/YAMLicious.0.0.1/YAMLiciousTypes.fs.js +6 -6
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Array.js +10 -10
- package/fable_modules/fable-library-js.4.22.0/Async.d.ts +27 -0
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Async.js +1 -7
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/AsyncBuilder.d.ts +13 -13
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/BigInt.js +4 -3
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/CHANGELOG.md +40 -1
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Choice.js +2 -2
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Date.js +4 -5
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Decimal.js +6 -6
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/List.js +31 -31
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/MailboxProcessor.d.ts +2 -2
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Map.js +10 -10
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/MutableMap.js +1 -1
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/MutableSet.js +1 -1
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Random.js +2 -2
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Range.js +4 -4
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Reflection.d.ts +1 -1
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/RegExp.js +0 -1
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Result.js +2 -2
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Seq.js +47 -48
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Set.js +3 -3
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/String.d.ts +1 -1
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/String.js +17 -6
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/System.Text.js +1 -1
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/TimeSpan.js +2 -2
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Types.d.ts +2 -2
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Uri.d.ts +2 -0
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Uri.js +19 -2
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Util.d.ts +2 -2
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Util.js +0 -1
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/lib/big.js +0 -1
- package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/package.json +1 -1
- package/fable_modules/project_cracked.json +1 -1
- package/package.json +1 -1
- package/fable_modules/FsSpreadsheet.6.2.0/DSL/Operators.fs.js +0 -6
- package/fable_modules/FsSpreadsheet.6.2.0/Json/Cell.fs.js +0 -38
- package/fable_modules/FsSpreadsheet.6.2.0/Json/Column.fs.js +0 -24
- package/fable_modules/FsSpreadsheet.6.2.0/Json/Row.fs.js +0 -24
- package/fable_modules/FsSpreadsheet.6.2.0/Json/Table.fs.js +0 -15
- package/fable_modules/FsSpreadsheet.6.2.0/Json/Workbook.fs.js +0 -35
- package/fable_modules/Thoth.Json.Core.0.2.1/Encode.fs.js +0 -113
- package/fable_modules/Thoth.Json.Core.0.2.1/Thoth.Json.Core.fableproj +0 -28
- package/fable_modules/Thoth.Json.Core.0.2.1/obj/Debug/netstandard2.0/Thoth.Json.Core.AssemblyInfo.fs +0 -20
- package/fable_modules/Thoth.Json.JavaScript.0.1.0/Encode.fs.js +0 -45
- package/fable_modules/Thoth.Json.JavaScript.0.1.0/Thoth.Json.JavaScript.fableproj +0 -21
- package/fable_modules/Thoth.Json.JavaScript.0.1.0/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +0 -3
- package/fable_modules/Thoth.Json.JavaScript.0.1.0/obj/Debug/netstandard2.0/Thoth.Json.JavaScript.AssemblyInfo.fs +0 -18
- package/fable_modules/Thoth.Json.JavaScript.0.1.0/obj/Release/netstandard2.0/Thoth.Json.JavaScript.AssemblyInfo.fs +0 -19
- package/fable_modules/fable-library-js.4.16.0/Async.d.ts +0 -32
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Cells/FsCell.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Cells/FsCellsCollection.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/DSL/CellBuilder.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/DSL/ColumnBuilder.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/DSL/DSL.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/DSL/Expression.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/DSL/Operators.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/DSL/RowBuilder.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/DSL/SheetBuilder.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/DSL/TableBuilder.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/DSL/Transform.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/DSL/Types.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/DSL/WorkbookBuilder.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/FsAddress.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/FsColumn.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/FsRow.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/FsWorkbook.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/FsWorksheet.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Json/Cell.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Json/Column.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Json/Row.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Json/Table.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Json/Value.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Json/Workbook.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Json/Worksheet.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Ranges/FsRange.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Ranges/FsRangeAddress.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Ranges/FsRangeBase.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Ranges/FsRangeColumn.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Ranges/FsRangeRow.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/SheetBuilder.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Tables/FsTable.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Tables/FsTableField.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/Tables/FsTableRow.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/obj/Debug/netstandard2.0/FsSpreadsheet.AssemblyInfo.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/obj/Release/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.fs +0 -0
- /package/fable_modules/{FsSpreadsheet.6.2.0 → FsSpreadsheet.6.3.0-alpha.4}/obj/Release/netstandard2.0/FsSpreadsheet.AssemblyInfo.fs +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Array.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/AsyncBuilder.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/BigInt.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/BitConverter.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/BitConverter.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Boolean.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Boolean.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Char.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Char.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Choice.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/ConditionalWeakTable.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/ConditionalWeakTable.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Date.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/DateOffset.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/DateOffset.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/DateOnly.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/DateOnly.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Decimal.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Double.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Double.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Encoding.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Encoding.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Event.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Event.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/FSharp.Collections.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/FSharp.Collections.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/FSharp.Core.CompilerServices.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/FSharp.Core.CompilerServices.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/FSharp.Core.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/FSharp.Core.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Global.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Global.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Guid.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Guid.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Int32.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Int32.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/List.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Long.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Long.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/MailboxProcessor.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Map.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/MapUtil.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/MapUtil.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/MutableMap.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/MutableSet.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Native.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Native.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Numeric.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Numeric.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Observable.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Observable.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Option.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Option.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/README.md +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Random.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Range.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Reflection.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/RegExp.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Result.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Seq.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Seq2.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Seq2.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Set.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/System.Collections.Generic.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/System.Collections.Generic.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/System.Text.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/SystemException.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/SystemException.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/TimeOnly.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/TimeOnly.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/TimeSpan.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Timer.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Timer.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Types.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Unicode.13.0.0.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/Unicode.13.0.0.js +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/big.d.ts +0 -0
- /package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/lib/big.d.ts +0 -0
|
@@ -178,7 +178,7 @@ export function ListEnumerator$1_$ctor_3002E699(xs) {
|
|
|
178
178
|
return new ListEnumerator$1(xs);
|
|
179
179
|
}
|
|
180
180
|
export function FSharpList_get_Empty() {
|
|
181
|
-
return new FSharpList(defaultOf(),
|
|
181
|
+
return new FSharpList(defaultOf(), undefined);
|
|
182
182
|
}
|
|
183
183
|
export function FSharpList_Cons_305B8EAC(x, xs) {
|
|
184
184
|
return new FSharpList(x, xs);
|
|
@@ -268,7 +268,7 @@ export function head(xs) {
|
|
|
268
268
|
}
|
|
269
269
|
export function tryHead(xs) {
|
|
270
270
|
if (FSharpList__get_IsEmpty(xs)) {
|
|
271
|
-
return
|
|
271
|
+
return undefined;
|
|
272
272
|
}
|
|
273
273
|
else {
|
|
274
274
|
return some(FSharpList__get_Head(xs));
|
|
@@ -281,7 +281,7 @@ export function tryLast(xs_mut) {
|
|
|
281
281
|
tryLast: while (true) {
|
|
282
282
|
const xs = xs_mut;
|
|
283
283
|
if (FSharpList__get_IsEmpty(xs)) {
|
|
284
|
-
return
|
|
284
|
+
return undefined;
|
|
285
285
|
}
|
|
286
286
|
else {
|
|
287
287
|
const t = FSharpList__get_Tail(xs);
|
|
@@ -411,7 +411,7 @@ export function unfold(gen, state) {
|
|
|
411
411
|
const matchValue = gen(acc);
|
|
412
412
|
if (matchValue != null) {
|
|
413
413
|
acc_mut = value_1(matchValue)[1];
|
|
414
|
-
node_mut = ((t = (new FSharpList(value_1(matchValue)[0],
|
|
414
|
+
node_mut = ((t = (new FSharpList(value_1(matchValue)[0], undefined)), (node.tail = t, t)));
|
|
415
415
|
continue loop;
|
|
416
416
|
}
|
|
417
417
|
else {
|
|
@@ -429,12 +429,12 @@ export function unfold(gen, state) {
|
|
|
429
429
|
export function iterate(action, xs) {
|
|
430
430
|
fold((unitVar, x) => {
|
|
431
431
|
action(x);
|
|
432
|
-
},
|
|
432
|
+
}, undefined, xs);
|
|
433
433
|
}
|
|
434
434
|
export function iterate2(action, xs, ys) {
|
|
435
435
|
fold2((unitVar, x, y) => {
|
|
436
436
|
action(x, y);
|
|
437
|
-
},
|
|
437
|
+
}, undefined, xs, ys);
|
|
438
438
|
}
|
|
439
439
|
export function iterateIndexed(action, xs) {
|
|
440
440
|
fold((i, x) => {
|
|
@@ -476,7 +476,7 @@ export function ofSeq(xs) {
|
|
|
476
476
|
try {
|
|
477
477
|
while (enumerator["System.Collections.IEnumerator.MoveNext"]()) {
|
|
478
478
|
const x = enumerator["System.Collections.Generic.IEnumerator`1.get_Current"]();
|
|
479
|
-
node = ((xs_3 = node, (t = (new FSharpList(x,
|
|
479
|
+
node = ((xs_3 = node, (t = (new FSharpList(x, undefined)), (xs_3.tail = t, t))));
|
|
480
480
|
}
|
|
481
481
|
}
|
|
482
482
|
finally {
|
|
@@ -493,7 +493,7 @@ export function concat(lists) {
|
|
|
493
493
|
let node = root;
|
|
494
494
|
const action = (xs) => {
|
|
495
495
|
node = fold((acc, x) => {
|
|
496
|
-
const t = new FSharpList(x,
|
|
496
|
+
const t = new FSharpList(x, undefined);
|
|
497
497
|
acc.tail = t;
|
|
498
498
|
return t;
|
|
499
499
|
}, node, xs);
|
|
@@ -525,14 +525,14 @@ export function scan(folder, state, xs) {
|
|
|
525
525
|
let xs_4, t_2;
|
|
526
526
|
const root = FSharpList_get_Empty();
|
|
527
527
|
let node;
|
|
528
|
-
const t = new FSharpList(state,
|
|
528
|
+
const t = new FSharpList(state, undefined);
|
|
529
529
|
root.tail = t;
|
|
530
530
|
node = t;
|
|
531
531
|
let acc = state;
|
|
532
532
|
let xs_3 = xs;
|
|
533
533
|
while (!FSharpList__get_IsEmpty(xs_3)) {
|
|
534
534
|
acc = folder(acc, FSharpList__get_Head(xs_3));
|
|
535
|
-
node = ((xs_4 = node, (t_2 = (new FSharpList(acc,
|
|
535
|
+
node = ((xs_4 = node, (t_2 = (new FSharpList(acc, undefined)), (xs_4.tail = t_2, t_2))));
|
|
536
536
|
xs_3 = FSharpList__get_Tail(xs_3);
|
|
537
537
|
}
|
|
538
538
|
const xs_6 = node;
|
|
@@ -554,7 +554,7 @@ export function collect(mapping, xs) {
|
|
|
554
554
|
while (!FSharpList__get_IsEmpty(ys)) {
|
|
555
555
|
let zs = mapping(FSharpList__get_Head(ys));
|
|
556
556
|
while (!FSharpList__get_IsEmpty(zs)) {
|
|
557
|
-
node = ((xs_1 = node, (t = (new FSharpList(FSharpList__get_Head(zs),
|
|
557
|
+
node = ((xs_1 = node, (t = (new FSharpList(FSharpList__get_Head(zs), undefined)), (xs_1.tail = t, t))));
|
|
558
558
|
zs = FSharpList__get_Tail(zs);
|
|
559
559
|
}
|
|
560
560
|
ys = FSharpList__get_Tail(ys);
|
|
@@ -567,7 +567,7 @@ export function collect(mapping, xs) {
|
|
|
567
567
|
export function mapIndexed(mapping, xs) {
|
|
568
568
|
const root = FSharpList_get_Empty();
|
|
569
569
|
const node = foldIndexed((i, acc, x) => {
|
|
570
|
-
const t = new FSharpList(mapping(i, x),
|
|
570
|
+
const t = new FSharpList(mapping(i, x), undefined);
|
|
571
571
|
acc.tail = t;
|
|
572
572
|
return t;
|
|
573
573
|
}, root, xs);
|
|
@@ -578,7 +578,7 @@ export function mapIndexed(mapping, xs) {
|
|
|
578
578
|
export function map(mapping, xs) {
|
|
579
579
|
const root = FSharpList_get_Empty();
|
|
580
580
|
const node = fold((acc, x) => {
|
|
581
|
-
const t = new FSharpList(mapping(x),
|
|
581
|
+
const t = new FSharpList(mapping(x), undefined);
|
|
582
582
|
acc.tail = t;
|
|
583
583
|
return t;
|
|
584
584
|
}, root, xs);
|
|
@@ -592,7 +592,7 @@ export function indexed(xs) {
|
|
|
592
592
|
export function map2(mapping, xs, ys) {
|
|
593
593
|
const root = FSharpList_get_Empty();
|
|
594
594
|
const node = fold2((acc, x, y) => {
|
|
595
|
-
const t = new FSharpList(mapping(x, y),
|
|
595
|
+
const t = new FSharpList(mapping(x, y), undefined);
|
|
596
596
|
acc.tail = t;
|
|
597
597
|
return t;
|
|
598
598
|
}, root, xs, ys);
|
|
@@ -610,7 +610,7 @@ export function mapIndexed2(mapping, xs, ys) {
|
|
|
610
610
|
}
|
|
611
611
|
else {
|
|
612
612
|
i_mut = (i + 1);
|
|
613
|
-
acc_mut = ((t = (new FSharpList(mapping(i, FSharpList__get_Head(xs_1), FSharpList__get_Head(ys_1)),
|
|
613
|
+
acc_mut = ((t = (new FSharpList(mapping(i, FSharpList__get_Head(xs_1), FSharpList__get_Head(ys_1)), undefined)), (acc.tail = t, t)));
|
|
614
614
|
xs_1_mut = FSharpList__get_Tail(xs_1);
|
|
615
615
|
ys_1_mut = FSharpList__get_Tail(ys_1);
|
|
616
616
|
continue loop;
|
|
@@ -633,7 +633,7 @@ export function map3(mapping, xs, ys, zs) {
|
|
|
633
633
|
return acc;
|
|
634
634
|
}
|
|
635
635
|
else {
|
|
636
|
-
acc_mut = ((t = (new FSharpList(mapping(FSharpList__get_Head(xs_1), FSharpList__get_Head(ys_1), FSharpList__get_Head(zs_1)),
|
|
636
|
+
acc_mut = ((t = (new FSharpList(mapping(FSharpList__get_Head(xs_1), FSharpList__get_Head(ys_1), FSharpList__get_Head(zs_1)), undefined)), (acc.tail = t, t)));
|
|
637
637
|
xs_1_mut = FSharpList__get_Tail(xs_1);
|
|
638
638
|
ys_1_mut = FSharpList__get_Tail(ys_1);
|
|
639
639
|
zs_1_mut = FSharpList__get_Tail(zs_1);
|
|
@@ -653,7 +653,7 @@ export function mapFold(mapping, state, xs) {
|
|
|
653
653
|
const patternInput_1 = fold((tupledArg, x) => {
|
|
654
654
|
let t;
|
|
655
655
|
const patternInput = mapping(tupledArg[1], x);
|
|
656
|
-
return [(t = (new FSharpList(patternInput[0],
|
|
656
|
+
return [(t = (new FSharpList(patternInput[0], undefined)), (tupledArg[0].tail = t, t)), patternInput[1]];
|
|
657
657
|
}, [root, state], xs);
|
|
658
658
|
const t_2 = FSharpList_get_Empty();
|
|
659
659
|
patternInput_1[0].tail = t_2;
|
|
@@ -667,7 +667,7 @@ export function tryPick(f, xs) {
|
|
|
667
667
|
loop: while (true) {
|
|
668
668
|
const xs_1 = xs_1_mut;
|
|
669
669
|
if (FSharpList__get_IsEmpty(xs_1)) {
|
|
670
|
-
return
|
|
670
|
+
return undefined;
|
|
671
671
|
}
|
|
672
672
|
else {
|
|
673
673
|
const matchValue = f(FSharpList__get_Head(xs_1));
|
|
@@ -694,7 +694,7 @@ export function pick(f, xs) {
|
|
|
694
694
|
}
|
|
695
695
|
}
|
|
696
696
|
export function tryFind(f, xs) {
|
|
697
|
-
return tryPick((x) => (f(x) ? some(x) :
|
|
697
|
+
return tryPick((x) => (f(x) ? some(x) : undefined), xs);
|
|
698
698
|
}
|
|
699
699
|
export function find(f, xs) {
|
|
700
700
|
const matchValue = tryFind(f, xs);
|
|
@@ -722,7 +722,7 @@ export function tryFindIndex(f, xs) {
|
|
|
722
722
|
loop: while (true) {
|
|
723
723
|
const i = i_mut, xs_1 = xs_1_mut;
|
|
724
724
|
if (FSharpList__get_IsEmpty(xs_1)) {
|
|
725
|
-
return
|
|
725
|
+
return undefined;
|
|
726
726
|
}
|
|
727
727
|
else if (f(FSharpList__get_Head(xs_1))) {
|
|
728
728
|
return i;
|
|
@@ -765,7 +765,7 @@ export function tryItem(n, xs) {
|
|
|
765
765
|
loop: while (true) {
|
|
766
766
|
const i = i_mut, xs_1 = xs_1_mut;
|
|
767
767
|
if (FSharpList__get_IsEmpty(xs_1)) {
|
|
768
|
-
return
|
|
768
|
+
return undefined;
|
|
769
769
|
}
|
|
770
770
|
else if (i === n) {
|
|
771
771
|
return some(FSharpList__get_Head(xs_1));
|
|
@@ -787,7 +787,7 @@ export function filter(f, xs) {
|
|
|
787
787
|
const root = FSharpList_get_Empty();
|
|
788
788
|
const node = fold((acc, x) => {
|
|
789
789
|
if (f(x)) {
|
|
790
|
-
const t = new FSharpList(x,
|
|
790
|
+
const t = new FSharpList(x, undefined);
|
|
791
791
|
acc.tail = t;
|
|
792
792
|
return t;
|
|
793
793
|
}
|
|
@@ -808,10 +808,10 @@ export function partition(f, xs) {
|
|
|
808
808
|
const lacc = tupledArg[0];
|
|
809
809
|
const racc = tupledArg[1];
|
|
810
810
|
if (f(x)) {
|
|
811
|
-
return [(t = (new FSharpList(x,
|
|
811
|
+
return [(t = (new FSharpList(x, undefined)), (lacc.tail = t, t)), racc];
|
|
812
812
|
}
|
|
813
813
|
else {
|
|
814
|
-
return [lacc, (t_2 = (new FSharpList(x,
|
|
814
|
+
return [lacc, (t_2 = (new FSharpList(x, undefined)), (racc.tail = t_2, t_2))];
|
|
815
815
|
}
|
|
816
816
|
}, [root1, root2], xs);
|
|
817
817
|
const t_4 = FSharpList_get_Empty();
|
|
@@ -828,7 +828,7 @@ export function choose(f, xs) {
|
|
|
828
828
|
return acc;
|
|
829
829
|
}
|
|
830
830
|
else {
|
|
831
|
-
const t = new FSharpList(value_1(matchValue),
|
|
831
|
+
const t = new FSharpList(value_1(matchValue), undefined);
|
|
832
832
|
acc.tail = t;
|
|
833
833
|
return t;
|
|
834
834
|
}
|
|
@@ -845,7 +845,7 @@ export function initialize(n, f) {
|
|
|
845
845
|
const root = FSharpList_get_Empty();
|
|
846
846
|
let node = root;
|
|
847
847
|
for (let i = 0; i <= (n - 1); i++) {
|
|
848
|
-
node = ((xs = node, (t = (new FSharpList(f(i),
|
|
848
|
+
node = ((xs = node, (t = (new FSharpList(f(i), undefined)), (xs.tail = t, t))));
|
|
849
849
|
}
|
|
850
850
|
const xs_2 = node;
|
|
851
851
|
const t_2 = FSharpList_get_Empty();
|
|
@@ -994,7 +994,7 @@ export function allPairs(xs, ys) {
|
|
|
994
994
|
iterate((x) => {
|
|
995
995
|
iterate((y) => {
|
|
996
996
|
let xs_1, t;
|
|
997
|
-
node = ((xs_1 = node, (t = (new FSharpList([x, y],
|
|
997
|
+
node = ((xs_1 = node, (t = (new FSharpList([x, y], undefined)), (xs_1.tail = t, t))));
|
|
998
998
|
}, ys);
|
|
999
999
|
}, xs);
|
|
1000
1000
|
const xs_3 = node;
|
|
@@ -1052,7 +1052,7 @@ export function take(count, xs) {
|
|
|
1052
1052
|
}
|
|
1053
1053
|
else {
|
|
1054
1054
|
i_mut = (i - 1);
|
|
1055
|
-
acc_mut = ((t = (new FSharpList(FSharpList__get_Head(xs_1),
|
|
1055
|
+
acc_mut = ((t = (new FSharpList(FSharpList__get_Head(xs_1), undefined)), (acc.tail = t, t)));
|
|
1056
1056
|
xs_1_mut = FSharpList__get_Tail(xs_1);
|
|
1057
1057
|
continue loop;
|
|
1058
1058
|
}
|
|
@@ -1077,7 +1077,7 @@ export function takeWhile(predicate, xs) {
|
|
|
1077
1077
|
return acc;
|
|
1078
1078
|
}
|
|
1079
1079
|
else {
|
|
1080
|
-
acc_mut = ((t = (new FSharpList(FSharpList__get_Head(xs_1),
|
|
1080
|
+
acc_mut = ((t = (new FSharpList(FSharpList__get_Head(xs_1), undefined)), (acc.tail = t, t)));
|
|
1081
1081
|
xs_1_mut = FSharpList__get_Tail(xs_1);
|
|
1082
1082
|
continue loop;
|
|
1083
1083
|
}
|
|
@@ -1103,7 +1103,7 @@ export function truncate(count, xs) {
|
|
|
1103
1103
|
}
|
|
1104
1104
|
else {
|
|
1105
1105
|
i_mut = (i - 1);
|
|
1106
|
-
acc_mut = ((t = (new FSharpList(FSharpList__get_Head(xs_1),
|
|
1106
|
+
acc_mut = ((t = (new FSharpList(FSharpList__get_Head(xs_1), undefined)), (acc.tail = t, t)));
|
|
1107
1107
|
xs_1_mut = FSharpList__get_Tail(xs_1);
|
|
1108
1108
|
continue loop;
|
|
1109
1109
|
}
|
|
@@ -1156,7 +1156,7 @@ export function tryExactlyOne(xs) {
|
|
|
1156
1156
|
return some(FSharpList__get_Head(xs));
|
|
1157
1157
|
}
|
|
1158
1158
|
else {
|
|
1159
|
-
return
|
|
1159
|
+
return undefined;
|
|
1160
1160
|
}
|
|
1161
1161
|
}
|
|
1162
1162
|
export function where(predicate, xs) {
|
package/fable_modules/{fable-library-js.4.16.0 → fable-library-js.4.22.0}/MailboxProcessor.d.ts
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Async } from "./AsyncBuilder.js";
|
|
2
2
|
import { Continuation } from "./AsyncBuilder.js";
|
|
3
3
|
import { CancellationToken } from "./AsyncBuilder.js";
|
|
4
4
|
declare class MailboxQueue<Msg> {
|
|
@@ -6,7 +6,7 @@ declare class MailboxQueue<Msg> {
|
|
|
6
6
|
add(message: Msg): void;
|
|
7
7
|
tryGet(): Msg | undefined;
|
|
8
8
|
}
|
|
9
|
-
export type MailboxBody<Msg> = (m: MailboxProcessor<Msg>) =>
|
|
9
|
+
export type MailboxBody<Msg> = (m: MailboxProcessor<Msg>) => Async<void>;
|
|
10
10
|
export interface AsyncReplyChannel<Reply> {
|
|
11
11
|
reply: (r: Reply) => void;
|
|
12
12
|
}
|
|
@@ -48,7 +48,7 @@ export function MapTreeNode$2__get_Height(_) {
|
|
|
48
48
|
return _.h;
|
|
49
49
|
}
|
|
50
50
|
export function MapTreeModule_empty() {
|
|
51
|
-
return
|
|
51
|
+
return undefined;
|
|
52
52
|
}
|
|
53
53
|
export function MapTreeModule_sizeAux(acc_mut, m_mut) {
|
|
54
54
|
MapTreeModule_sizeAux: while (true) {
|
|
@@ -217,11 +217,11 @@ export function MapTreeModule_tryFind(comparer_mut, k_mut, m_mut) {
|
|
|
217
217
|
continue MapTreeModule_tryFind;
|
|
218
218
|
}
|
|
219
219
|
else {
|
|
220
|
-
return
|
|
220
|
+
return undefined;
|
|
221
221
|
}
|
|
222
222
|
}
|
|
223
223
|
else {
|
|
224
|
-
return
|
|
224
|
+
return undefined;
|
|
225
225
|
}
|
|
226
226
|
break;
|
|
227
227
|
}
|
|
@@ -398,7 +398,7 @@ export function MapTreeModule_change(comparer, k, u, m) {
|
|
|
398
398
|
else {
|
|
399
399
|
const c_1 = comparer.Compare(k, MapTreeLeaf$2__get_Key(m2)) | 0;
|
|
400
400
|
if (c_1 < 0) {
|
|
401
|
-
const matchValue_2 = u(
|
|
401
|
+
const matchValue_2 = u(undefined);
|
|
402
402
|
if (matchValue_2 != null) {
|
|
403
403
|
return MapTreeNode$2_$ctor_Z39DE9543(k, value_1(matchValue_2), MapTreeModule_empty(), m, 2);
|
|
404
404
|
}
|
|
@@ -416,7 +416,7 @@ export function MapTreeModule_change(comparer, k, u, m) {
|
|
|
416
416
|
}
|
|
417
417
|
}
|
|
418
418
|
else {
|
|
419
|
-
const matchValue_4 = u(
|
|
419
|
+
const matchValue_4 = u(undefined);
|
|
420
420
|
if (matchValue_4 != null) {
|
|
421
421
|
return MapTreeNode$2_$ctor_Z39DE9543(k, value_1(matchValue_4), m, MapTreeModule_empty(), 2);
|
|
422
422
|
}
|
|
@@ -427,7 +427,7 @@ export function MapTreeModule_change(comparer, k, u, m) {
|
|
|
427
427
|
}
|
|
428
428
|
}
|
|
429
429
|
else {
|
|
430
|
-
const matchValue = u(
|
|
430
|
+
const matchValue = u(undefined);
|
|
431
431
|
if (matchValue != null) {
|
|
432
432
|
return MapTreeLeaf$2_$ctor_5BDDA1(k, value_1(matchValue));
|
|
433
433
|
}
|
|
@@ -521,7 +521,7 @@ export function MapTreeModule_tryPickOpt(f_mut, m_mut) {
|
|
|
521
521
|
}
|
|
522
522
|
}
|
|
523
523
|
else {
|
|
524
|
-
return
|
|
524
|
+
return undefined;
|
|
525
525
|
}
|
|
526
526
|
break;
|
|
527
527
|
}
|
|
@@ -928,7 +928,7 @@ export function MapTreeModule_toSeq(s) {
|
|
|
928
928
|
return [en_1["System.Collections.Generic.IEnumerator`1.get_Current"](), en_1];
|
|
929
929
|
}
|
|
930
930
|
else {
|
|
931
|
-
return
|
|
931
|
+
return undefined;
|
|
932
932
|
}
|
|
933
933
|
}, MapTreeModule_mkIEnumerator(s));
|
|
934
934
|
}
|
|
@@ -1346,7 +1346,7 @@ export function findKey(predicate, table) {
|
|
|
1346
1346
|
return some(k);
|
|
1347
1347
|
}
|
|
1348
1348
|
else {
|
|
1349
|
-
return
|
|
1349
|
+
return undefined;
|
|
1350
1350
|
}
|
|
1351
1351
|
}, table);
|
|
1352
1352
|
}
|
|
@@ -1357,7 +1357,7 @@ export function tryFindKey(predicate, table) {
|
|
|
1357
1357
|
return some(k);
|
|
1358
1358
|
}
|
|
1359
1359
|
else {
|
|
1360
|
-
return
|
|
1360
|
+
return undefined;
|
|
1361
1361
|
}
|
|
1362
1362
|
}, table);
|
|
1363
1363
|
}
|
|
@@ -221,7 +221,7 @@ export function Dictionary__TryFind_2B595(this$, k) {
|
|
|
221
221
|
case 0:
|
|
222
222
|
return getItemFromDict(this$.hashMap, matchValue[1])[matchValue[2]];
|
|
223
223
|
default:
|
|
224
|
-
return
|
|
224
|
+
return undefined;
|
|
225
225
|
}
|
|
226
226
|
}
|
|
227
227
|
export function Dictionary__get_Comparer(this$) {
|
|
@@ -48,7 +48,7 @@ export class NonSeeded {
|
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
export function NonSeeded_$reflection() {
|
|
51
|
-
return class_type("Random.NonSeeded",
|
|
51
|
+
return class_type("Random.NonSeeded", undefined, NonSeeded);
|
|
52
52
|
}
|
|
53
53
|
export function NonSeeded_$ctor() {
|
|
54
54
|
return new NonSeeded();
|
|
@@ -120,7 +120,7 @@ export class Seeded {
|
|
|
120
120
|
}
|
|
121
121
|
}
|
|
122
122
|
export function Seeded_$reflection() {
|
|
123
|
-
return class_type("Random.Seeded",
|
|
123
|
+
return class_type("Random.Seeded", undefined, Seeded);
|
|
124
124
|
}
|
|
125
125
|
export function Seeded_$ctor_Z524259A4(seed) {
|
|
126
126
|
return new Seeded(seed);
|
|
@@ -10,7 +10,7 @@ export function makeRangeStepFunction(step, stop, zero, add) {
|
|
|
10
10
|
const stepGreaterThanZero = stepComparedWithZero > 0;
|
|
11
11
|
return (x) => {
|
|
12
12
|
const comparedWithLast = compare(x, stop) | 0;
|
|
13
|
-
return ((stepGreaterThanZero && (comparedWithLast <= 0)) ? true : (!stepGreaterThanZero && (comparedWithLast >= 0))) ? [x, add(x, step)] :
|
|
13
|
+
return ((stepGreaterThanZero && (comparedWithLast <= 0)) ? true : (!stepGreaterThanZero && (comparedWithLast >= 0))) ? [x, add(x, step)] : undefined;
|
|
14
14
|
};
|
|
15
15
|
}
|
|
16
16
|
export function integralRangeStep(start, step, stop, zero, add) {
|
|
@@ -33,13 +33,13 @@ export function rangeUInt64(start, step, stop) {
|
|
|
33
33
|
return integralRangeStep(start, step, stop, 0n, (x, y) => toUInt64(op_Addition(x, y)));
|
|
34
34
|
}
|
|
35
35
|
export function rangeChar(start, stop) {
|
|
36
|
-
const intStop = stop.charCodeAt(0) | 0;
|
|
36
|
+
const intStop = ~~stop.charCodeAt(0) | 0;
|
|
37
37
|
return delay(() => unfold((c) => {
|
|
38
38
|
if (c <= intStop) {
|
|
39
39
|
return [String.fromCharCode(c), c + 1];
|
|
40
40
|
}
|
|
41
41
|
else {
|
|
42
|
-
return
|
|
42
|
+
return undefined;
|
|
43
43
|
}
|
|
44
|
-
}, start.charCodeAt(0)));
|
|
44
|
+
}, ~~start.charCodeAt(0)));
|
|
45
45
|
}
|
|
@@ -78,7 +78,7 @@ export declare function namespace(t: TypeInfo): string;
|
|
|
78
78
|
export declare function isArray(t: TypeInfo): boolean;
|
|
79
79
|
export declare function getElementType(t: TypeInfo): TypeInfo | undefined;
|
|
80
80
|
export declare function isGenericType(t: TypeInfo): boolean;
|
|
81
|
-
export declare function isGenericParameter(t: TypeInfo):
|
|
81
|
+
export declare function isGenericParameter(t: TypeInfo): t is GenericParameter;
|
|
82
82
|
export declare function isEnum(t: TypeInfo): boolean;
|
|
83
83
|
export declare function isSubclassOf(t1: TypeInfo, t2: TypeInfo): boolean;
|
|
84
84
|
export declare function isInstanceOfType(t: TypeInfo, o: any): boolean;
|
|
@@ -41,7 +41,6 @@ export function matches(reg, input, startAt = 0) {
|
|
|
41
41
|
const matches = [];
|
|
42
42
|
let m;
|
|
43
43
|
let lastMatchIndex = -1;
|
|
44
|
-
// tslint:disable-next-line:no-conditional-assignment
|
|
45
44
|
while ((m = reg.exec(input)) != null) {
|
|
46
45
|
// It can happen even global regex get stuck, see #2845
|
|
47
46
|
if (m.index === lastMatchIndex) {
|
|
@@ -152,7 +152,7 @@ export function Result_ToOption(result) {
|
|
|
152
152
|
return some(result.fields[0]);
|
|
153
153
|
}
|
|
154
154
|
else {
|
|
155
|
-
return
|
|
155
|
+
return undefined;
|
|
156
156
|
}
|
|
157
157
|
}
|
|
158
158
|
export function Result_ToValueOption(result) {
|
|
@@ -160,6 +160,6 @@ export function Result_ToValueOption(result) {
|
|
|
160
160
|
return some(result.fields[0]);
|
|
161
161
|
}
|
|
162
162
|
else {
|
|
163
|
-
return
|
|
163
|
+
return undefined;
|
|
164
164
|
}
|
|
165
165
|
}
|