@nfdi4plants/arctrl 3.0.0-beta.1 → 3.0.0-beta.10
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/README.md +2 -0
- package/dist/ts/index.d.ts +62 -0
- package/dist/ts/index.d.ts.map +1 -0
- package/dist/ts/index.js +64 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Array.js +1244 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Async.js +146 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/AsyncBuilder.js +186 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/BigInt.js +286 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Boolean.js +24 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Char.js +172 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Choice.js +187 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/CollectionUtil.js +185 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Date.js +750 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/DateOffset.js +271 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Decimal.js +214 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Double.js +49 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Collections.js +30 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/FSharp.Core.js +72 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Global.js +10 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Guid.js +145 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Int32.js +137 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/List.js +1276 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Long.js +49 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Map.js +1399 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/MapUtil.js +130 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/MutableMap.js +330 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/MutableSet.js +236 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Native.js +10 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Numeric.js +73 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Option.js +99 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Range.js +48 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Reflection.js +465 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/RegExp.js +133 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Result.js +168 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Seq.js +1381 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Seq2.js +114 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Set.js +1792 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/String.js +557 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/System.Text.js +165 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/SystemException.js +8 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/TimeSpan.js +180 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Types.js +211 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Unicode.13.0.0.js +6 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Uri.js +160 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/Util.js +771 -0
- package/dist/ts/node_modules/@fable-org/fable-library-js/lib/big.js +825 -0
- package/dist/ts/ts/ARC.d.ts +97 -0
- package/dist/ts/ts/ARC.d.ts.map +1 -0
- package/dist/ts/ts/ARC.js +1118 -0
- package/dist/ts/ts/Contract/ARC.d.ts +7 -0
- package/dist/ts/ts/Contract/ARC.d.ts.map +1 -0
- package/dist/ts/ts/Contract/ARC.js +59 -0
- package/dist/ts/ts/Contract/ArcAssay.d.ts +12 -0
- package/dist/ts/ts/Contract/ArcAssay.d.ts.map +1 -0
- package/dist/ts/ts/Contract/ArcAssay.js +89 -0
- package/dist/ts/ts/Contract/ArcInvestigation.d.ts +10 -0
- package/dist/ts/ts/Contract/ArcInvestigation.d.ts.map +1 -0
- package/dist/ts/ts/Contract/ArcInvestigation.js +66 -0
- package/dist/ts/ts/Contract/ArcRun.d.ts +12 -0
- package/dist/ts/ts/Contract/ArcRun.d.ts.map +1 -0
- package/dist/ts/ts/Contract/ArcRun.js +89 -0
- package/dist/ts/ts/Contract/ArcStudy.d.ts +13 -0
- package/dist/ts/ts/Contract/ArcStudy.d.ts.map +1 -0
- package/dist/ts/ts/Contract/ArcStudy.js +89 -0
- package/dist/ts/ts/Contract/ArcWorkflow.d.ts +12 -0
- package/dist/ts/ts/Contract/ArcWorkflow.d.ts.map +1 -0
- package/dist/ts/ts/Contract/ArcWorkflow.js +89 -0
- package/dist/ts/ts/Contract/Contract.d.ts +39 -0
- package/dist/ts/ts/Contract/Contract.d.ts.map +1 -0
- package/dist/ts/ts/Contract/Contract.js +86 -0
- package/dist/ts/ts/Contract/Datamap.d.ts +29 -0
- package/dist/ts/ts/Contract/Datamap.d.ts.map +1 -0
- package/dist/ts/ts/Contract/Datamap.js +284 -0
- package/dist/ts/ts/Contract/Git.d.ts +28 -0
- package/dist/ts/ts/Contract/Git.d.ts.map +1 -0
- package/dist/ts/ts/Contract/Git.js +73 -0
- package/dist/ts/ts/Contract/License.d.ts +5 -0
- package/dist/ts/ts/Contract/License.d.ts.map +1 -0
- package/dist/ts/ts/Contract/License.js +34 -0
- package/dist/ts/ts/Contract/ValidationPackagesConfig.d.ts +12 -0
- package/dist/ts/ts/Contract/ValidationPackagesConfig.d.ts.map +1 -0
- package/dist/ts/ts/Contract/ValidationPackagesConfig.js +82 -0
- package/dist/ts/ts/ContractIO/ContractIO.d.ts +11 -0
- package/dist/ts/ts/ContractIO/ContractIO.d.ts.map +1 -0
- package/dist/ts/ts/ContractIO/ContractIO.js +202 -0
- package/dist/ts/ts/ContractIO/FileSystemHelper.d.ts +44 -0
- package/dist/ts/ts/ContractIO/FileSystemHelper.d.ts.map +1 -0
- package/dist/ts/ts/ContractIO/FileSystemHelper.js +285 -0
- package/dist/ts/ts/Conversion.d.ts +292 -0
- package/dist/ts/ts/Conversion.d.ts.map +1 -0
- package/dist/ts/ts/Conversion.js +1520 -0
- package/dist/ts/ts/Core/ArcTypes.d.ts +585 -0
- package/dist/ts/ts/Core/ArcTypes.d.ts.map +1 -0
- package/dist/ts/ts/Core/ArcTypes.js +3708 -0
- package/dist/ts/ts/Core/Comment.d.ts +35 -0
- package/dist/ts/ts/Core/Comment.d.ts.map +1 -0
- package/dist/ts/ts/Core/Comment.js +101 -0
- package/dist/ts/ts/Core/CommentList.d.ts +28 -0
- package/dist/ts/ts/Core/CommentList.d.ts.map +1 -0
- package/dist/ts/ts/Core/CommentList.js +102 -0
- package/dist/ts/ts/Core/Conversion.d.ts +215 -0
- package/dist/ts/ts/Core/Conversion.d.ts.map +1 -0
- package/dist/ts/ts/Core/Conversion.js +1003 -0
- package/dist/ts/ts/Core/Data.d.ts +49 -0
- package/dist/ts/ts/Core/Data.d.ts.map +1 -0
- package/dist/ts/ts/Core/Data.js +186 -0
- package/dist/ts/ts/Core/DataContext.d.ts +47 -0
- package/dist/ts/ts/Core/DataContext.d.ts.map +1 -0
- package/dist/ts/ts/Core/DataContext.js +123 -0
- package/dist/ts/ts/Core/DataFile.d.ts +27 -0
- package/dist/ts/ts/Core/DataFile.d.ts.map +1 -0
- package/dist/ts/ts/Core/DataFile.js +87 -0
- package/dist/ts/ts/Core/DataMap.d.ts +53 -0
- package/dist/ts/ts/Core/DataMap.d.ts.map +1 -0
- package/dist/ts/ts/Core/DataMap.js +177 -0
- package/dist/ts/ts/Core/Helper/Collections.d.ts +61 -0
- package/dist/ts/ts/Core/Helper/Collections.d.ts.map +1 -0
- package/dist/ts/ts/Core/Helper/Collections.js +424 -0
- package/dist/ts/ts/Core/Helper/HashCodes.d.ts +9 -0
- package/dist/ts/ts/Core/Helper/HashCodes.d.ts.map +1 -0
- package/dist/ts/ts/Core/Helper/HashCodes.js +35 -0
- package/dist/ts/ts/Core/Helper/Identifier.d.ts +119 -0
- package/dist/ts/ts/Core/Helper/Identifier.d.ts.map +1 -0
- package/dist/ts/ts/Core/Helper/Identifier.js +194 -0
- package/dist/ts/ts/Core/Helper/ORCID.d.ts +7 -0
- package/dist/ts/ts/Core/Helper/ORCID.d.ts.map +1 -0
- package/dist/ts/ts/Core/Helper/ORCID.js +34 -0
- package/dist/ts/ts/Core/Helper/Regex.d.ts +194 -0
- package/dist/ts/ts/Core/Helper/Regex.d.ts.map +1 -0
- package/dist/ts/ts/Core/Helper/Regex.js +428 -0
- package/dist/ts/ts/Core/Helper/SemVer.d.ts +20 -0
- package/dist/ts/ts/Core/Helper/SemVer.d.ts.map +1 -0
- package/dist/ts/ts/Core/Helper/SemVer.js +52 -0
- package/dist/ts/ts/Core/Helper/Url.d.ts +10 -0
- package/dist/ts/ts/Core/Helper/Url.d.ts.map +1 -0
- package/dist/ts/ts/Core/Helper/Url.js +32 -0
- package/dist/ts/ts/Core/IdentifierSetters.d.ts +9 -0
- package/dist/ts/ts/Core/IdentifierSetters.d.ts.map +1 -0
- package/dist/ts/ts/Core/IdentifierSetters.js +34 -0
- package/dist/ts/ts/Core/OntologyAnnotation.d.ts +57 -0
- package/dist/ts/ts/Core/OntologyAnnotation.d.ts.map +1 -0
- package/dist/ts/ts/Core/OntologyAnnotation.js +210 -0
- package/dist/ts/ts/Core/OntologySourceReference.d.ts +31 -0
- package/dist/ts/ts/Core/OntologySourceReference.d.ts.map +1 -0
- package/dist/ts/ts/Core/OntologySourceReference.js +91 -0
- package/dist/ts/ts/Core/Person.d.ts +56 -0
- package/dist/ts/ts/Core/Person.d.ts.map +1 -0
- package/dist/ts/ts/Core/Person.js +190 -0
- package/dist/ts/ts/Core/Process/ColumnIndex.d.ts +79 -0
- package/dist/ts/ts/Core/Process/ColumnIndex.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/ColumnIndex.js +190 -0
- package/dist/ts/ts/Core/Process/Component.d.ts +65 -0
- package/dist/ts/ts/Core/Process/Component.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/Component.js +154 -0
- package/dist/ts/ts/Core/Process/Factor.d.ts +44 -0
- package/dist/ts/ts/Core/Process/Factor.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/Factor.js +109 -0
- package/dist/ts/ts/Core/Process/FactorValue.d.ts +44 -0
- package/dist/ts/ts/Core/Process/FactorValue.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/FactorValue.js +125 -0
- package/dist/ts/ts/Core/Process/Material.d.ts +27 -0
- package/dist/ts/ts/Core/Process/Material.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/Material.js +59 -0
- package/dist/ts/ts/Core/Process/MaterialAttribute.d.ts +53 -0
- package/dist/ts/ts/Core/Process/MaterialAttribute.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/MaterialAttribute.js +68 -0
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.d.ts +55 -0
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/MaterialAttributeValue.js +131 -0
- package/dist/ts/ts/Core/Process/MaterialType.d.ts +22 -0
- package/dist/ts/ts/Core/Process/MaterialType.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/MaterialType.js +42 -0
- package/dist/ts/ts/Core/Process/Process.d.ts +113 -0
- package/dist/ts/ts/Core/Process/Process.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/Process.js +279 -0
- package/dist/ts/ts/Core/Process/ProcessInput.d.ts +117 -0
- package/dist/ts/ts/Core/Process/ProcessInput.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/ProcessInput.js +247 -0
- package/dist/ts/ts/Core/Process/ProcessOutput.d.ts +106 -0
- package/dist/ts/ts/Core/Process/ProcessOutput.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/ProcessOutput.js +215 -0
- package/dist/ts/ts/Core/Process/ProcessParameterValue.d.ts +40 -0
- package/dist/ts/ts/Core/Process/ProcessParameterValue.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/ProcessParameterValue.js +140 -0
- package/dist/ts/ts/Core/Process/ProcessSequence.d.ts +89 -0
- package/dist/ts/ts/Core/Process/ProcessSequence.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/ProcessSequence.js +177 -0
- package/dist/ts/ts/Core/Process/Protocol.d.ts +141 -0
- package/dist/ts/ts/Core/Process/Protocol.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/Protocol.js +128 -0
- package/dist/ts/ts/Core/Process/ProtocolParameter.d.ts +32 -0
- package/dist/ts/ts/Core/Process/ProtocolParameter.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/ProtocolParameter.js +73 -0
- package/dist/ts/ts/Core/Process/Sample.d.ts +31 -0
- package/dist/ts/ts/Core/Process/Sample.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/Sample.js +62 -0
- package/dist/ts/ts/Core/Process/Source.d.ts +24 -0
- package/dist/ts/ts/Core/Process/Source.d.ts.map +1 -0
- package/dist/ts/ts/Core/Process/Source.js +48 -0
- package/dist/ts/ts/Core/Publication.d.ts +36 -0
- package/dist/ts/ts/Core/Publication.d.ts.map +1 -0
- package/dist/ts/ts/Core/Publication.js +115 -0
- package/dist/ts/ts/Core/Table/ArcTable.d.ts +137 -0
- package/dist/ts/ts/Core/Table/ArcTable.d.ts.map +1 -0
- package/dist/ts/ts/Core/Table/ArcTable.js +898 -0
- package/dist/ts/ts/Core/Table/ArcTableAux.d.ts +154 -0
- package/dist/ts/ts/Core/Table/ArcTableAux.d.ts.map +1 -0
- package/dist/ts/ts/Core/Table/ArcTableAux.js +1120 -0
- package/dist/ts/ts/Core/Table/ArcTables.d.ts +91 -0
- package/dist/ts/ts/Core/Table/ArcTables.d.ts.map +1 -0
- package/dist/ts/ts/Core/Table/ArcTables.js +424 -0
- package/dist/ts/ts/Core/Table/CompositeCell.d.ts +58 -0
- package/dist/ts/ts/Core/Table/CompositeCell.d.ts.map +1 -0
- package/dist/ts/ts/Core/Table/CompositeCell.js +338 -0
- package/dist/ts/ts/Core/Table/CompositeColumn.d.ts +19 -0
- package/dist/ts/ts/Core/Table/CompositeColumn.d.ts.map +1 -0
- package/dist/ts/ts/Core/Table/CompositeColumn.js +56 -0
- package/dist/ts/ts/Core/Table/CompositeHeader.d.ts +130 -0
- package/dist/ts/ts/Core/Table/CompositeHeader.d.ts.map +1 -0
- package/dist/ts/ts/Core/Table/CompositeHeader.js +795 -0
- package/dist/ts/ts/Core/Template.d.ts +69 -0
- package/dist/ts/ts/Core/Template.d.ts.map +1 -0
- package/dist/ts/ts/Core/Template.js +190 -0
- package/dist/ts/ts/Core/Templates.d.ts +18 -0
- package/dist/ts/ts/Core/Templates.d.ts.map +1 -0
- package/dist/ts/ts/Core/Templates.js +79 -0
- package/dist/ts/ts/Core/URI.d.ts.map +1 -0
- package/dist/ts/ts/Core/URI.js +8 -0
- package/dist/ts/ts/Core/Value.d.ts +41 -0
- package/dist/ts/ts/Core/Value.d.ts.map +1 -0
- package/dist/ts/ts/Core/Value.js +198 -0
- package/dist/ts/ts/CrossAsync.d.ts +9 -0
- package/dist/ts/ts/CrossAsync.d.ts.map +1 -0
- package/dist/ts/ts/CrossAsync.js +30 -0
- package/dist/ts/ts/FileSystem/Commit.d.ts +13 -0
- package/dist/ts/ts/FileSystem/Commit.d.ts.map +1 -0
- package/dist/ts/ts/FileSystem/Commit.js +18 -0
- package/dist/ts/ts/FileSystem/FileSystem.d.ts +21 -0
- package/dist/ts/ts/FileSystem/FileSystem.d.ts.map +1 -0
- package/dist/ts/ts/FileSystem/FileSystem.js +53 -0
- package/dist/ts/ts/FileSystem/FileSystemTree.d.ts +56 -0
- package/dist/ts/ts/FileSystem/FileSystemTree.d.ts.map +1 -0
- package/dist/ts/ts/FileSystem/FileSystemTree.js +346 -0
- package/dist/ts/ts/FileSystem/Path.d.ts +16 -0
- package/dist/ts/ts/FileSystem/Path.d.ts.map +1 -0
- package/dist/ts/ts/FileSystem/Path.js +50 -0
- package/dist/ts/ts/Json/Assay.d.ts +19 -0
- package/dist/ts/ts/Json/Assay.d.ts.map +1 -0
- package/dist/ts/ts/Json/Assay.js +221 -0
- package/dist/ts/ts/Json/Comment.d.ts +14 -0
- package/dist/ts/ts/Json/Comment.d.ts.map +1 -0
- package/dist/ts/ts/Json/Comment.js +112 -0
- package/dist/ts/ts/Json/Data.d.ts +17 -0
- package/dist/ts/ts/Json/Data.d.ts.map +1 -0
- package/dist/ts/ts/Json/Data.js +138 -0
- package/dist/ts/ts/Json/DataFile.d.ts +7 -0
- package/dist/ts/ts/Json/DataFile.d.ts.map +1 -0
- package/dist/ts/ts/Json/DataFile.js +55 -0
- package/dist/ts/ts/Json/DataMap/DataContext.d.ts +5 -0
- package/dist/ts/ts/Json/DataMap/DataContext.d.ts.map +1 -0
- package/dist/ts/ts/Json/DataMap/DataContext.js +39 -0
- package/dist/ts/ts/Json/DataMap/DataMap.d.ts +11 -0
- package/dist/ts/ts/Json/DataMap/DataMap.d.ts.map +1 -0
- package/dist/ts/ts/Json/DataMap/DataMap.js +27 -0
- package/dist/ts/ts/Json/Decode.d.ts +18 -0
- package/dist/ts/ts/Json/Decode.d.ts.map +1 -0
- package/dist/ts/ts/Json/Decode.js +214 -0
- package/dist/ts/ts/Json/Encode.d.ts +23 -0
- package/dist/ts/ts/Json/Encode.d.ts.map +1 -0
- package/dist/ts/ts/Json/Encode.js +97 -0
- package/dist/ts/ts/Json/IDTable.d.ts +5 -0
- package/dist/ts/ts/Json/IDTable.d.ts.map +1 -0
- package/dist/ts/ts/Json/IDTable.js +28 -0
- package/dist/ts/ts/Json/Investigation.d.ts +20 -0
- package/dist/ts/ts/Json/Investigation.d.ts.map +1 -0
- package/dist/ts/ts/Json/Investigation.js +247 -0
- package/dist/ts/ts/Json/OntologyAnnotation.d.ts +18 -0
- package/dist/ts/ts/Json/OntologyAnnotation.d.ts.map +1 -0
- package/dist/ts/ts/Json/OntologyAnnotation.js +194 -0
- package/dist/ts/ts/Json/OntologySourceReference.d.ts +12 -0
- package/dist/ts/ts/Json/OntologySourceReference.d.ts.map +1 -0
- package/dist/ts/ts/Json/OntologySourceReference.js +119 -0
- package/dist/ts/ts/Json/Person.d.ts +22 -0
- package/dist/ts/ts/Json/Person.d.ts.map +1 -0
- package/dist/ts/ts/Json/Person.js +316 -0
- package/dist/ts/ts/Json/Process/AssayMaterials.d.ts +7 -0
- package/dist/ts/ts/Json/Process/AssayMaterials.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/AssayMaterials.js +21 -0
- package/dist/ts/ts/Json/Process/Component.d.ts +13 -0
- package/dist/ts/ts/Json/Process/Component.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/Component.js +61 -0
- package/dist/ts/ts/Json/Process/Factor.d.ts +8 -0
- package/dist/ts/ts/Json/Process/Factor.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/Factor.js +53 -0
- package/dist/ts/ts/Json/Process/FactorValue.d.ts +11 -0
- package/dist/ts/ts/Json/Process/FactorValue.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/FactorValue.js +44 -0
- package/dist/ts/ts/Json/Process/Material.d.ts +12 -0
- package/dist/ts/ts/Json/Process/Material.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/Material.js +112 -0
- package/dist/ts/ts/Json/Process/MaterialAttribute.d.ts +8 -0
- package/dist/ts/ts/Json/Process/MaterialAttribute.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/MaterialAttribute.js +43 -0
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.d.ts +11 -0
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/MaterialAttributeValue.js +44 -0
- package/dist/ts/ts/Json/Process/MaterialType.d.ts +7 -0
- package/dist/ts/ts/Json/Process/MaterialType.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/MaterialType.js +45 -0
- package/dist/ts/ts/Json/Process/Process.d.ts +10 -0
- package/dist/ts/ts/Json/Process/Process.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/Process.js +103 -0
- package/dist/ts/ts/Json/Process/ProcessInput.d.ts +9 -0
- package/dist/ts/ts/Json/Process/ProcessInput.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/ProcessInput.js +42 -0
- package/dist/ts/ts/Json/Process/ProcessOutput.d.ts +9 -0
- package/dist/ts/ts/Json/Process/ProcessOutput.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/ProcessOutput.js +35 -0
- package/dist/ts/ts/Json/Process/ProcessParameterValue.d.ts +11 -0
- package/dist/ts/ts/Json/Process/ProcessParameterValue.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/ProcessParameterValue.js +31 -0
- package/dist/ts/ts/Json/Process/Protocol.d.ts +10 -0
- package/dist/ts/ts/Json/Process/Protocol.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/Protocol.js +166 -0
- package/dist/ts/ts/Json/Process/ProtocolParameter.d.ts +10 -0
- package/dist/ts/ts/Json/Process/ProtocolParameter.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/ProtocolParameter.js +52 -0
- package/dist/ts/ts/Json/Process/Sample.d.ts +15 -0
- package/dist/ts/ts/Json/Process/Sample.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/Sample.js +165 -0
- package/dist/ts/ts/Json/Process/Source.d.ts +12 -0
- package/dist/ts/ts/Json/Process/Source.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/Source.js +133 -0
- package/dist/ts/ts/Json/Process/StudyMaterials.d.ts +7 -0
- package/dist/ts/ts/Json/Process/StudyMaterials.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/StudyMaterials.js +23 -0
- package/dist/ts/ts/Json/Process/Value.d.ts +7 -0
- package/dist/ts/ts/Json/Process/Value.d.ts.map +1 -0
- package/dist/ts/ts/Json/Process/Value.js +41 -0
- package/dist/ts/ts/Json/PropertyValue.d.ts +9 -0
- package/dist/ts/ts/Json/PropertyValue.d.ts.map +1 -0
- package/dist/ts/ts/Json/PropertyValue.js +280 -0
- package/dist/ts/ts/Json/Publication.d.ts +14 -0
- package/dist/ts/ts/Json/Publication.d.ts.map +1 -0
- package/dist/ts/ts/Json/Publication.js +123 -0
- package/dist/ts/ts/Json/ROCrate/LDContext.d.ts +5 -0
- package/dist/ts/ts/Json/ROCrate/LDContext.d.ts.map +1 -0
- package/dist/ts/ts/Json/ROCrate/LDContext.js +116 -0
- package/dist/ts/ts/Json/ROCrate/LDGraph.d.ts +5 -0
- package/dist/ts/ts/Json/ROCrate/LDGraph.d.ts.map +1 -0
- package/dist/ts/ts/Json/ROCrate/LDGraph.js +83 -0
- package/dist/ts/ts/Json/ROCrate/LDNode.d.ts +13 -0
- package/dist/ts/ts/Json/ROCrate/LDNode.d.ts.map +1 -0
- package/dist/ts/ts/Json/ROCrate/LDNode.js +190 -0
- package/dist/ts/ts/Json/ROCrate/LDRef.d.ts +5 -0
- package/dist/ts/ts/Json/ROCrate/LDRef.d.ts.map +1 -0
- package/dist/ts/ts/Json/ROCrate/LDRef.js +24 -0
- package/dist/ts/ts/Json/ROCrate/LDValue.d.ts +7 -0
- package/dist/ts/ts/Json/ROCrate/LDValue.d.ts.map +1 -0
- package/dist/ts/ts/Json/ROCrate/LDValue.js +63 -0
- package/dist/ts/ts/Json/Run.d.ts +11 -0
- package/dist/ts/ts/Json/Run.d.ts.map +1 -0
- package/dist/ts/ts/Json/Run.js +76 -0
- package/dist/ts/ts/Json/StringTable.d.ts +9 -0
- package/dist/ts/ts/Json/StringTable.d.ts.map +1 -0
- package/dist/ts/ts/Json/StringTable.js +66 -0
- package/dist/ts/ts/Json/Study.d.ts +26 -0
- package/dist/ts/ts/Json/Study.d.ts.map +1 -0
- package/dist/ts/ts/Json/Study.js +326 -0
- package/dist/ts/ts/Json/Table/ArcTable.d.ts +15 -0
- package/dist/ts/ts/Json/Table/ArcTable.d.ts.map +1 -0
- package/dist/ts/ts/Json/Table/ArcTable.js +210 -0
- package/dist/ts/ts/Json/Table/CellTable.d.ts +11 -0
- package/dist/ts/ts/Json/Table/CellTable.d.ts.map +1 -0
- package/dist/ts/ts/Json/Table/CellTable.js +53 -0
- package/dist/ts/ts/Json/Table/CompositeCell.d.ts +10 -0
- package/dist/ts/ts/Json/Table/CompositeCell.d.ts.map +1 -0
- package/dist/ts/ts/Json/Table/CompositeCell.js +106 -0
- package/dist/ts/ts/Json/Table/CompositeHeader.d.ts +5 -0
- package/dist/ts/ts/Json/Table/CompositeHeader.d.ts.map +1 -0
- package/dist/ts/ts/Json/Table/CompositeHeader.js +121 -0
- package/dist/ts/ts/Json/Table/IOType.d.ts +5 -0
- package/dist/ts/ts/Json/Table/IOType.d.ts.map +1 -0
- package/dist/ts/ts/Json/Table/IOType.js +15 -0
- package/dist/ts/ts/Json/Table/OATable.d.ts +10 -0
- package/dist/ts/ts/Json/Table/OATable.d.ts.map +1 -0
- package/dist/ts/ts/Json/Table/OATable.js +50 -0
- package/dist/ts/ts/Json/Table/Templates.d.ts +15 -0
- package/dist/ts/ts/Json/Table/Templates.d.ts.map +1 -0
- package/dist/ts/ts/Json/Table/Templates.js +101 -0
- package/dist/ts/ts/Json/Workflow.d.ts +11 -0
- package/dist/ts/ts/Json/Workflow.d.ts.map +1 -0
- package/dist/ts/ts/Json/Workflow.js +93 -0
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.d.ts +26 -0
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_assay_context.js +87 -0
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.d.ts +16 -0
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_comment_context.js +45 -0
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.d.ts +18 -0
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_data_context.js +59 -0
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.d.ts +26 -0
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_investigation_context.js +95 -0
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.d.ts +19 -0
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_material_context.js +56 -0
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts +17 -0
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_annotation_context.js +54 -0
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts +19 -0
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +60 -0
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.d.ts +15 -0
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_organization_context.js +40 -0
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.d.ts +25 -0
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_person_context.js +110 -0
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.d.ts +23 -0
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_process_context.js +80 -0
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.d.ts +22 -0
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_protocol_context.js +83 -0
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.d.ts +19 -0
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_publication_context.js +64 -0
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.d.ts +18 -0
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_sample_context.js +51 -0
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.d.ts +18 -0
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_source_context.js +51 -0
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.d.ts +34 -0
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/isa_study_context.js +111 -0
- package/dist/ts/ts/Json/context/rocrate/property_value_context.d.ts +3 -0
- package/dist/ts/ts/Json/context/rocrate/property_value_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/property_value_context.js +61 -0
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.d.ts +16 -0
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.d.ts.map +1 -0
- package/dist/ts/ts/Json/context/rocrate/rocrate_context.js +61 -0
- package/dist/ts/ts/Json.d.ts +132 -0
- package/dist/ts/ts/Json.d.ts.map +1 -0
- package/dist/ts/ts/Json.js +321 -0
- package/dist/ts/ts/JsonIO/Assay.d.ts +19 -0
- package/dist/ts/ts/JsonIO/Assay.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/Assay.js +89 -0
- package/dist/ts/ts/JsonIO/Datamap.d.ts +7 -0
- package/dist/ts/ts/JsonIO/Datamap.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/Datamap.js +28 -0
- package/dist/ts/ts/JsonIO/Investigation.d.ts +19 -0
- package/dist/ts/ts/JsonIO/Investigation.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/Investigation.js +89 -0
- package/dist/ts/ts/JsonIO/LDObject.d.ts +29 -0
- package/dist/ts/ts/JsonIO/LDObject.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/LDObject.js +91 -0
- package/dist/ts/ts/JsonIO/OntologyAnnotation.d.ts +16 -0
- package/dist/ts/ts/JsonIO/OntologyAnnotation.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/OntologyAnnotation.js +66 -0
- package/dist/ts/ts/JsonIO/Person.d.ts +16 -0
- package/dist/ts/ts/JsonIO/Person.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/Person.js +67 -0
- package/dist/ts/ts/JsonIO/Run.d.ts +10 -0
- package/dist/ts/ts/JsonIO/Run.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/Run.js +50 -0
- package/dist/ts/ts/JsonIO/Study.d.ts +20 -0
- package/dist/ts/ts/JsonIO/Study.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/Study.js +89 -0
- package/dist/ts/ts/JsonIO/Table/Compression.d.ts +8 -0
- package/dist/ts/ts/JsonIO/Table/Compression.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/Table/Compression.js +39 -0
- package/dist/ts/ts/JsonIO/Table/Templates.d.ts +15 -0
- package/dist/ts/ts/JsonIO/Table/Templates.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/Table/Templates.js +80 -0
- package/dist/ts/ts/JsonIO/Workflow.d.ts +10 -0
- package/dist/ts/ts/JsonIO/Workflow.d.ts.map +1 -0
- package/dist/ts/ts/JsonIO/Workflow.js +50 -0
- package/dist/ts/ts/License.d.ts +39 -0
- package/dist/ts/ts/License.d.ts.map +1 -0
- package/dist/ts/ts/License.js +123 -0
- package/dist/ts/ts/ROCrate/Generic/Comment.d.ts +21 -0
- package/dist/ts/ts/ROCrate/Generic/Comment.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/Comment.js +107 -0
- package/dist/ts/ts/ROCrate/Generic/CreativeWork.d.ts +69 -0
- package/dist/ts/ts/ROCrate/Generic/CreativeWork.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/CreativeWork.js +450 -0
- package/dist/ts/ts/ROCrate/Generic/Dataset.d.ts +93 -0
- package/dist/ts/ts/ROCrate/Generic/Dataset.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/Dataset.js +650 -0
- package/dist/ts/ts/ROCrate/Generic/DefinedTerm.d.ts +21 -0
- package/dist/ts/ts/ROCrate/Generic/DefinedTerm.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/DefinedTerm.js +107 -0
- package/dist/ts/ts/ROCrate/Generic/File.d.ts +35 -0
- package/dist/ts/ts/ROCrate/Generic/File.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/File.js +188 -0
- package/dist/ts/ts/ROCrate/Generic/LabProcess.d.ts +43 -0
- package/dist/ts/ts/ROCrate/Generic/LabProcess.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/LabProcess.js +226 -0
- package/dist/ts/ts/ROCrate/Generic/LabProtocol.d.ts +44 -0
- package/dist/ts/ts/ROCrate/Generic/LabProtocol.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/LabProtocol.js +261 -0
- package/dist/ts/ts/ROCrate/Generic/Organization.d.ts +17 -0
- package/dist/ts/ts/ROCrate/Generic/Organization.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/Organization.js +67 -0
- package/dist/ts/ts/ROCrate/Generic/Person.d.ts +51 -0
- package/dist/ts/ts/ROCrate/Generic/Person.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/Person.js +382 -0
- package/dist/ts/ts/ROCrate/Generic/PostalAddress.d.ts +25 -0
- package/dist/ts/ts/ROCrate/Generic/PostalAddress.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/PostalAddress.js +147 -0
- package/dist/ts/ts/ROCrate/Generic/PropertyValue.d.ts +73 -0
- package/dist/ts/ts/ROCrate/Generic/PropertyValue.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/PropertyValue.js +516 -0
- package/dist/ts/ts/ROCrate/Generic/Sample.d.ts +30 -0
- package/dist/ts/ts/ROCrate/Generic/Sample.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/Sample.js +135 -0
- package/dist/ts/ts/ROCrate/Generic/ScholarlyArticle.d.ts +34 -0
- package/dist/ts/ts/ROCrate/Generic/ScholarlyArticle.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Generic/ScholarlyArticle.js +177 -0
- package/dist/ts/ts/ROCrate/Helper.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/Helper.js +7 -0
- package/dist/ts/ts/ROCrate/LDContext.d.ts +43 -0
- package/dist/ts/ts/ROCrate/LDContext.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/LDContext.js +297 -0
- package/dist/ts/ts/ROCrate/LDObject.d.ts +97 -0
- package/dist/ts/ts/ROCrate/LDObject.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/LDObject.js +891 -0
- package/dist/ts/ts/ROCrate/ROCrateContext.d.ts +7 -0
- package/dist/ts/ts/ROCrate/ROCrateContext.d.ts.map +1 -0
- package/dist/ts/ts/ROCrate/ROCrateContext.js +39 -0
- package/dist/ts/ts/ROCrateIO.d.ts +22 -0
- package/dist/ts/ts/ROCrateIO.d.ts.map +1 -0
- package/dist/ts/ts/ROCrateIO.js +111 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts +40 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/ArcTable.js +152 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts +9 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeCell.js +64 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts +24 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +131 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts +22 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +410 -0
- package/dist/ts/ts/Spreadsheet/ArcAssay.d.ts +31 -0
- package/dist/ts/ts/Spreadsheet/ArcAssay.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/ArcAssay.js +184 -0
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.d.ts +42 -0
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/ArcInvestigation.js +330 -0
- package/dist/ts/ts/Spreadsheet/ArcRun.d.ts +27 -0
- package/dist/ts/ts/Spreadsheet/ArcRun.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/ArcRun.js +151 -0
- package/dist/ts/ts/Spreadsheet/ArcStudy.d.ts +26 -0
- package/dist/ts/ts/Spreadsheet/ArcStudy.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/ArcStudy.js +107 -0
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.d.ts +27 -0
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/ArcWorkflow.js +141 -0
- package/dist/ts/ts/Spreadsheet/CollectionAux.d.ts +23 -0
- package/dist/ts/ts/Spreadsheet/CollectionAux.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/CollectionAux.js +104 -0
- package/dist/ts/ts/Spreadsheet/DataMap.d.ts +8 -0
- package/dist/ts/ts/Spreadsheet/DataMap.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/DataMap.js +33 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapColumn.d.ts +7 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapColumn.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapColumn.js +41 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapHeader.d.ts +23 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapHeader.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapHeader.js +418 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapTable.d.ts +23 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapTable.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/DataMapTable/DataMapTable.js +85 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.d.ts +14 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Assays.js +90 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.d.ts +14 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Comment.js +58 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.d.ts +25 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Contacts.js +85 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.d.ts +60 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Conversions.js +136 -0
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts +16 -0
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/DesignDescriptors.js +21 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.d.ts +18 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Factors.js +76 -0
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts +12 -0
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/OntologyAnnotation.js +60 -0
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts +18 -0
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/OntologySourceReference.js +62 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.d.ts +28 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Protocols.js +96 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.d.ts +21 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Publication.js +81 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Run.d.ts +14 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Run.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Run.js +91 -0
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.d.ts +37 -0
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/SparseTable.js +429 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Study.d.ts +38 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Study.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Study.js +244 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts +31 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.d.ts.map +1 -0
- package/dist/ts/ts/Spreadsheet/Metadata/Workflow.js +115 -0
- package/dist/ts/ts/Template.Web.d.ts +11 -0
- package/dist/ts/ts/Template.Web.d.ts.map +1 -0
- package/dist/ts/ts/Template.Web.js +26 -0
- package/dist/ts/ts/ValidationPackages/ValidationPackage.d.ts +21 -0
- package/dist/ts/ts/ValidationPackages/ValidationPackage.d.ts.map +1 -0
- package/dist/ts/ts/ValidationPackages/ValidationPackage.js +60 -0
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.d.ts +23 -0
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.d.ts.map +1 -0
- package/dist/ts/ts/ValidationPackages/ValidationPackagesConfig.js +85 -0
- package/dist/ts/ts/WebRequest/WebRequest.Node.d.ts +4 -0
- package/dist/ts/ts/WebRequest/WebRequest.Node.d.ts.map +1 -0
- package/dist/ts/ts/WebRequest/WebRequest.Node.js +14 -0
- package/dist/ts/ts/WebRequest/WebRequest.d.ts +3 -0
- package/dist/ts/ts/WebRequest/WebRequest.d.ts.map +1 -0
- package/dist/ts/ts/WebRequest/WebRequest.js +19 -0
- package/dist/ts/ts/Xlsx.d.ts +70 -0
- package/dist/ts/ts/Xlsx.d.ts.map +1 -0
- package/dist/ts/ts/Xlsx.js +171 -0
- package/dist/ts/ts/Yaml/Encode.d.ts +5 -0
- package/dist/ts/ts/Yaml/Encode.d.ts.map +1 -0
- package/dist/ts/ts/Yaml/Encode.js +8 -0
- package/dist/ts/ts/Yaml/ValidationPackage.d.ts +10 -0
- package/dist/ts/ts/Yaml/ValidationPackage.d.ts.map +1 -0
- package/dist/ts/ts/Yaml/ValidationPackage.js +42 -0
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts +10 -0
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.d.ts.map +1 -0
- package/dist/ts/ts/Yaml/ValidationPackagesConfig.js +43 -0
- package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +367 -0
- package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +114 -0
- package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +45 -0
- package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +21 -0
- package/dist/ts/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +70 -0
- package/dist/ts/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.js +5 -0
- package/dist/ts/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +274 -0
- package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +114 -0
- package/dist/ts/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +15 -0
- package/dist/ts/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +319 -0
- package/dist/ts/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +154 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Cells/FsCell.fs.js +418 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Cells/FsCellsCollection.fs.js +354 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/CellBuilder.fs.js +198 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/Expression.fs.js +46 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/RowBuilder.fs.js +131 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/DSL/Types.fs.js +307 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsAddress.fs.js +190 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsColumn.fs.js +123 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsRow.fs.js +133 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsWorkbook.fs.js +142 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/FsWorksheet.fs.js +429 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/HashCodes.fs.js +35 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Cell.fs.js +65 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Column.fs.js +38 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Row.fs.js +38 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Table.fs.js +34 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Value.fs.js +71 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Workbook.fs.js +44 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Json/Worksheet.fs.js +129 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRange.fs.js +35 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeAddress.fs.js +161 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeBase.fs.js +78 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeColumn.fs.js +57 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Ranges/FsRangeRow.fs.js +36 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Tables/FsTable.fs.js +355 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.7.0.0-alpha.1/Tables/FsTableField.fs.js +95 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Cell.fs.js +68 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/FsExtensions.fs.js +51 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Json.fs.js +53 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Table.fs.js +54 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Workbook.fs.js +33 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Worksheet.fs.js +63 -0
- package/dist/ts/ts/fable_modules/FsSpreadsheet.Js.7.0.0-alpha.1/Xlsx.fs.js +70 -0
- package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Decode.fs.js +1251 -0
- package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Encode.fs.js +216 -0
- package/dist/ts/ts/fable_modules/Thoth.Json.Core.0.7.0/Types.fs.js +82 -0
- package/dist/ts/ts/fable_modules/Thoth.Json.JavaScript.0.4.1/Decode.fs.js +92 -0
- package/dist/ts/ts/fable_modules/Thoth.Json.JavaScript.0.4.1/Encode.fs.js +57 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.js +1603 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.js +57 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +10 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +45 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +99 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +483 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.js +11 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +212 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +164 -0
- package/dist/ts/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +152 -0
- package/package.json +16 -10
- package/dist/ts/cjs/index.js +0 -85
- package/dist/ts/cjs/ts/ARC.js +0 -973
- package/dist/ts/cjs/ts/Contract/ARC.js +0 -61
- package/dist/ts/cjs/ts/Contract/ArcAssay.js +0 -103
- package/dist/ts/cjs/ts/Contract/ArcInvestigation.js +0 -77
- package/dist/ts/cjs/ts/Contract/ArcRun.js +0 -103
- package/dist/ts/cjs/ts/Contract/ArcStudy.js +0 -103
- package/dist/ts/cjs/ts/Contract/ArcWorkflow.js +0 -104
- package/dist/ts/cjs/ts/Contract/Contract.js +0 -100
- package/dist/ts/cjs/ts/Contract/Datamap.js +0 -314
- package/dist/ts/cjs/ts/Contract/Git.js +0 -94
- package/dist/ts/cjs/ts/Contract/ValidationPackagesConfig.js +0 -97
- package/dist/ts/cjs/ts/ContractIO/ContractIO.js +0 -217
- package/dist/ts/cjs/ts/ContractIO/FileSystemHelper.js +0 -205
- package/dist/ts/cjs/ts/Conversion.js +0 -1774
- package/dist/ts/cjs/ts/Core/ArcTypes.js +0 -3803
- package/dist/ts/cjs/ts/Core/Comment.js +0 -106
- package/dist/ts/cjs/ts/Core/CommentList.js +0 -134
- package/dist/ts/cjs/ts/Core/Conversion.js +0 -1198
- package/dist/ts/cjs/ts/Core/Data.js +0 -194
- package/dist/ts/cjs/ts/Core/DataContext.js +0 -141
- package/dist/ts/cjs/ts/Core/DataFile.js +0 -98
- package/dist/ts/cjs/ts/Core/DataMap.js +0 -185
- package/dist/ts/cjs/ts/Core/Helper/Collections.js +0 -502
- package/dist/ts/cjs/ts/Core/Helper/HashCodes.js +0 -40
- package/dist/ts/cjs/ts/Core/Helper/Identifier.js +0 -329
- package/dist/ts/cjs/ts/Core/Helper/ORCID.js +0 -40
- package/dist/ts/cjs/ts/Core/Helper/Printer.js +0 -2
- package/dist/ts/cjs/ts/Core/Helper/Regex.js +0 -616
- package/dist/ts/cjs/ts/Core/Helper/SemVer.js +0 -59
- package/dist/ts/cjs/ts/Core/Helper/Url.js +0 -40
- package/dist/ts/cjs/ts/Core/IPropertyValue.js +0 -2
- package/dist/ts/cjs/ts/Core/IdentifierSetters.js +0 -27
- package/dist/ts/cjs/ts/Core/OntologyAnnotation.js +0 -219
- package/dist/ts/cjs/ts/Core/OntologySourceReference.js +0 -94
- package/dist/ts/cjs/ts/Core/Person.js +0 -196
- package/dist/ts/cjs/ts/Core/Process/ColumnIndex.js +0 -258
- package/dist/ts/cjs/ts/Core/Process/Component.js +0 -200
- package/dist/ts/cjs/ts/Core/Process/Factor.js +0 -111
- package/dist/ts/cjs/ts/Core/Process/FactorValue.js +0 -143
- package/dist/ts/cjs/ts/Core/Process/Material.js +0 -68
- package/dist/ts/cjs/ts/Core/Process/MaterialAttribute.js +0 -103
- package/dist/ts/cjs/ts/Core/Process/MaterialAttributeValue.js +0 -160
- package/dist/ts/cjs/ts/Core/Process/MaterialType.js +0 -51
- package/dist/ts/cjs/ts/Core/Process/Process.js +0 -371
- package/dist/ts/cjs/ts/Core/Process/ProcessInput.js +0 -321
- package/dist/ts/cjs/ts/Core/Process/ProcessOutput.js +0 -282
- package/dist/ts/cjs/ts/Core/Process/ProcessParameterValue.js +0 -141
- package/dist/ts/cjs/ts/Core/Process/ProcessSequence.js +0 -250
- package/dist/ts/cjs/ts/Core/Process/Protocol.js +0 -248
- package/dist/ts/cjs/ts/Core/Process/ProtocolParameter.js +0 -75
- package/dist/ts/cjs/ts/Core/Process/Sample.js +0 -73
- package/dist/ts/cjs/ts/Core/Process/Source.js +0 -56
- package/dist/ts/cjs/ts/Core/Publication.js +0 -118
- package/dist/ts/cjs/ts/Core/Table/ArcTable.js +0 -923
- package/dist/ts/cjs/ts/Core/Table/ArcTableAux.js +0 -1262
- package/dist/ts/cjs/ts/Core/Table/ArcTables.js +0 -476
- package/dist/ts/cjs/ts/Core/Table/CompositeCell.js +0 -317
- package/dist/ts/cjs/ts/Core/Table/CompositeColumn.js +0 -60
- package/dist/ts/cjs/ts/Core/Table/CompositeHeader.js +0 -718
- package/dist/ts/cjs/ts/Core/Template.js +0 -196
- package/dist/ts/cjs/ts/Core/Templates.js +0 -86
- package/dist/ts/cjs/ts/Core/URI.js +0 -20
- package/dist/ts/cjs/ts/Core/Value.js +0 -191
- package/dist/ts/cjs/ts/CrossAsync.js +0 -35
- package/dist/ts/cjs/ts/FileSystem/Commit.js +0 -20
- package/dist/ts/cjs/ts/FileSystem/DefaultGitattributes.js +0 -4
- package/dist/ts/cjs/ts/FileSystem/DefaultGitignore.js +0 -4
- package/dist/ts/cjs/ts/FileSystem/FileSystem.js +0 -55
- package/dist/ts/cjs/ts/FileSystem/FileSystemTree.js +0 -322
- package/dist/ts/cjs/ts/FileSystem/Path.js +0 -63
- package/dist/ts/cjs/ts/Json/Assay.js +0 -234
- package/dist/ts/cjs/ts/Json/Comment.js +0 -119
- package/dist/ts/cjs/ts/Json/Data.js +0 -147
- package/dist/ts/cjs/ts/Json/DataFile.js +0 -54
- package/dist/ts/cjs/ts/Json/DataMap/DataContext.js +0 -40
- package/dist/ts/cjs/ts/Json/DataMap/DataMap.js +0 -30
- package/dist/ts/cjs/ts/Json/Decode.js +0 -231
- package/dist/ts/cjs/ts/Json/Encode.js +0 -117
- package/dist/ts/cjs/ts/Json/IDTable.js +0 -30
- package/dist/ts/cjs/ts/Json/Investigation.js +0 -254
- package/dist/ts/cjs/ts/Json/OntologyAnnotation.js +0 -207
- package/dist/ts/cjs/ts/Json/OntologySourceReference.js +0 -125
- package/dist/ts/cjs/ts/Json/Person.js +0 -338
- package/dist/ts/cjs/ts/Json/Process/AssayMaterials.js +0 -21
- package/dist/ts/cjs/ts/Json/Process/Component.js +0 -47
- package/dist/ts/cjs/ts/Json/Process/Factor.js +0 -58
- package/dist/ts/cjs/ts/Json/Process/FactorValue.js +0 -47
- package/dist/ts/cjs/ts/Json/Process/Material.js +0 -120
- package/dist/ts/cjs/ts/Json/Process/MaterialAttribute.js +0 -47
- package/dist/ts/cjs/ts/Json/Process/MaterialAttributeValue.js +0 -47
- package/dist/ts/cjs/ts/Json/Process/MaterialType.js +0 -46
- package/dist/ts/cjs/ts/Json/Process/Process.js +0 -109
- package/dist/ts/cjs/ts/Json/Process/ProcessInput.js +0 -38
- package/dist/ts/cjs/ts/Json/Process/ProcessOutput.js +0 -33
- package/dist/ts/cjs/ts/Json/Process/ProcessParameterValue.js +0 -33
- package/dist/ts/cjs/ts/Json/Process/Protocol.js +0 -180
- package/dist/ts/cjs/ts/Json/Process/ProtocolParameter.js +0 -47
- package/dist/ts/cjs/ts/Json/Process/Sample.js +0 -176
- package/dist/ts/cjs/ts/Json/Process/Source.js +0 -145
- package/dist/ts/cjs/ts/Json/Process/StudyMaterials.js +0 -23
- package/dist/ts/cjs/ts/Json/Process/Value.js +0 -39
- package/dist/ts/cjs/ts/Json/PropertyValue.js +0 -300
- package/dist/ts/cjs/ts/Json/Publication.js +0 -130
- package/dist/ts/cjs/ts/Json/ROCrate/LDContext.js +0 -123
- package/dist/ts/cjs/ts/Json/ROCrate/LDGraph.js +0 -88
- package/dist/ts/cjs/ts/Json/ROCrate/LDNode.js +0 -213
- package/dist/ts/cjs/ts/Json/ROCrate/LDRef.js +0 -25
- package/dist/ts/cjs/ts/Json/ROCrate/LDValue.js +0 -70
- package/dist/ts/cjs/ts/Json/StringTable.js +0 -70
- package/dist/ts/cjs/ts/Json/Study.js +0 -347
- package/dist/ts/cjs/ts/Json/Table/ArcTable.js +0 -217
- package/dist/ts/cjs/ts/Json/Table/CellTable.js +0 -58
- package/dist/ts/cjs/ts/Json/Table/CompositeCell.js +0 -103
- package/dist/ts/cjs/ts/Json/Table/CompositeHeader.js +0 -108
- package/dist/ts/cjs/ts/Json/Table/IOType.js +0 -16
- package/dist/ts/cjs/ts/Json/Table/OATable.js +0 -55
- package/dist/ts/cjs/ts/Json/Table/Templates.js +0 -106
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_assay_context.js +0 -89
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_comment_context.js +0 -47
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_data_context.js +0 -61
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_investigation_context.js +0 -97
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_material_context.js +0 -58
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_ontology_annotation_context.js +0 -56
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +0 -62
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_organization_context.js +0 -42
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_person_context.js +0 -112
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_process_context.js +0 -82
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_protocol_context.js +0 -85
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_publication_context.js +0 -66
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_sample_context.js +0 -53
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_source_context.js +0 -53
- package/dist/ts/cjs/ts/Json/context/rocrate/isa_study_context.js +0 -113
- package/dist/ts/cjs/ts/Json/context/rocrate/property_value_context.js +0 -61
- package/dist/ts/cjs/ts/Json/context/rocrate/rocrate_context.js +0 -63
- package/dist/ts/cjs/ts/Json.js +0 -195
- package/dist/ts/cjs/ts/JsonIO/Assay.js +0 -104
- package/dist/ts/cjs/ts/JsonIO/Investigation.js +0 -104
- package/dist/ts/cjs/ts/JsonIO/LDObject.js +0 -107
- package/dist/ts/cjs/ts/JsonIO/OntologyAnnotation.js +0 -77
- package/dist/ts/cjs/ts/JsonIO/Study.js +0 -104
- package/dist/ts/cjs/ts/JsonIO/Table/Compression.js +0 -40
- package/dist/ts/cjs/ts/JsonIO/Table/Templates.js +0 -92
- package/dist/ts/cjs/ts/ROCrate/Generic/Comment.js +0 -117
- package/dist/ts/cjs/ts/ROCrate/Generic/Dataset.js +0 -671
- package/dist/ts/cjs/ts/ROCrate/Generic/DefinedTerm.js +0 -117
- package/dist/ts/cjs/ts/ROCrate/Generic/File.js +0 -202
- package/dist/ts/cjs/ts/ROCrate/Generic/LabProcess.js +0 -240
- package/dist/ts/cjs/ts/ROCrate/Generic/LabProtocol.js +0 -277
- package/dist/ts/cjs/ts/ROCrate/Generic/Organization.js +0 -73
- package/dist/ts/cjs/ts/ROCrate/Generic/Person.js +0 -413
- package/dist/ts/cjs/ts/ROCrate/Generic/PostalAddress.js +0 -161
- package/dist/ts/cjs/ts/ROCrate/Generic/PropertyValue.js +0 -550
- package/dist/ts/cjs/ts/ROCrate/Generic/Sample.js +0 -141
- package/dist/ts/cjs/ts/ROCrate/Generic/ScholarlyArticle.js +0 -189
- package/dist/ts/cjs/ts/ROCrate/Helper.js +0 -7
- package/dist/ts/cjs/ts/ROCrate/LDContext.js +0 -322
- package/dist/ts/cjs/ts/ROCrate/LDObject.js +0 -984
- package/dist/ts/cjs/ts/ROCrate/ROCrateContext.js +0 -44
- package/dist/ts/cjs/ts/ROCrateIO.js +0 -64
- package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/ArcTable.js +0 -176
- package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/CompositeCell.js +0 -68
- package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +0 -150
- package/dist/ts/cjs/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +0 -476
- package/dist/ts/cjs/ts/Spreadsheet/ArcAssay.js +0 -218
- package/dist/ts/cjs/ts/Spreadsheet/ArcInvestigation.js +0 -356
- package/dist/ts/cjs/ts/Spreadsheet/ArcRun.js +0 -177
- package/dist/ts/cjs/ts/Spreadsheet/ArcStudy.js +0 -130
- package/dist/ts/cjs/ts/Spreadsheet/ArcWorkflow.js +0 -166
- package/dist/ts/cjs/ts/Spreadsheet/CollectionAux.js +0 -128
- package/dist/ts/cjs/ts/Spreadsheet/DataMap.js +0 -41
- package/dist/ts/cjs/ts/Spreadsheet/DataMapTable/DataMapColumn.js +0 -43
- package/dist/ts/cjs/ts/Spreadsheet/DataMapTable/DataMapHeader.js +0 -480
- package/dist/ts/cjs/ts/Spreadsheet/DataMapTable/DataMapTable.js +0 -105
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Assays.js +0 -98
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Comment.js +0 -68
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Contacts.js +0 -92
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Conversions.js +0 -187
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/DesignDescriptors.js +0 -25
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Factors.js +0 -83
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/OntologyAnnotation.js +0 -65
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/OntologySourceReference.js +0 -68
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Protocols.js +0 -103
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Publication.js +0 -88
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Run.js +0 -99
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/SparseTable.js +0 -457
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Study.js +0 -259
- package/dist/ts/cjs/ts/Spreadsheet/Metadata/Workflow.js +0 -111
- package/dist/ts/cjs/ts/Template.Web.js +0 -29
- package/dist/ts/cjs/ts/ValidationPackages/ValidationPackage.js +0 -63
- package/dist/ts/cjs/ts/ValidationPackages/ValidationPackagesConfig.js +0 -90
- package/dist/ts/cjs/ts/WebRequest/WebRequest.Node.js +0 -17
- package/dist/ts/cjs/ts/WebRequest/WebRequest.js +0 -20
- package/dist/ts/cjs/ts/Xlsx.js +0 -133
- package/dist/ts/cjs/ts/Yaml/Encode.js +0 -9
- package/dist/ts/cjs/ts/Yaml/ValidationPackage.js +0 -49
- package/dist/ts/cjs/ts/Yaml/ValidationPackagesConfig.js +0 -50
- package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +0 -444
- package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +0 -142
- package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +0 -53
- package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +0 -23
- package/dist/ts/cjs/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +0 -87
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.js +0 -2
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.js +0 -2
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.js +0 -5
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.js +0 -2
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.js +0 -123
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.js +0 -2
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.js +0 -2
- package/dist/ts/cjs/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.js +0 -2
- package/dist/ts/cjs/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +0 -360
- package/dist/ts/cjs/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +0 -220
- package/dist/ts/cjs/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +0 -20
- package/dist/ts/cjs/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +0 -431
- package/dist/ts/cjs/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +0 -186
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.js +0 -477
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.js +0 -521
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.js +0 -211
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.js +0 -58
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.js +0 -139
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.js +0 -365
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.js +0 -259
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.js +0 -127
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.js +0 -137
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.js +0 -140
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.js +0 -435
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.js +0 -69
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.js +0 -40
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.js +0 -40
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.js +0 -31
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.js +0 -78
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.js +0 -46
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.js +0 -134
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.js +0 -43
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.js +0 -238
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.js +0 -93
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.js +0 -76
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.js +0 -42
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.js +0 -332
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.js +0 -175
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.js +0 -80
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.js +0 -65
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.js +0 -53
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.js +0 -55
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.js +0 -34
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.js +0 -68
- package/dist/ts/cjs/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.js +0 -72
- package/dist/ts/cjs/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.js +0 -1316
- package/dist/ts/cjs/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.js +0 -200
- package/dist/ts/cjs/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.js +0 -103
- package/dist/ts/cjs/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.js +0 -97
- package/dist/ts/cjs/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.js +0 -59
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.js +0 -1723
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.js +0 -75
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +0 -13
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +0 -50
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +0 -104
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +0 -527
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.js +0 -12
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +0 -235
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +0 -166
- package/dist/ts/cjs/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +0 -174
- package/dist/ts/esm/index.js +0 -60
- package/dist/ts/esm/ts/ARC.js +0 -956
- package/dist/ts/esm/ts/Contract/ARC.js +0 -58
- package/dist/ts/esm/ts/Contract/ArcAssay.js +0 -93
- package/dist/ts/esm/ts/Contract/ArcInvestigation.js +0 -69
- package/dist/ts/esm/ts/Contract/ArcRun.js +0 -93
- package/dist/ts/esm/ts/Contract/ArcStudy.js +0 -93
- package/dist/ts/esm/ts/Contract/ArcWorkflow.js +0 -94
- package/dist/ts/esm/ts/Contract/Contract.js +0 -87
- package/dist/ts/esm/ts/Contract/Datamap.js +0 -287
- package/dist/ts/esm/ts/Contract/Git.js +0 -72
- package/dist/ts/esm/ts/Contract/ValidationPackagesConfig.js +0 -88
- package/dist/ts/esm/ts/ContractIO/ContractIO.js +0 -207
- package/dist/ts/esm/ts/ContractIO/FileSystemHelper.js +0 -176
- package/dist/ts/esm/ts/Conversion.js +0 -1654
- package/dist/ts/esm/ts/Core/ArcTypes.js +0 -3728
- package/dist/ts/esm/ts/Core/Comment.js +0 -98
- package/dist/ts/esm/ts/Core/CommentList.js +0 -126
- package/dist/ts/esm/ts/Core/Conversion.js +0 -1145
- package/dist/ts/esm/ts/Core/Data.js +0 -186
- package/dist/ts/esm/ts/Core/DataContext.js +0 -119
- package/dist/ts/esm/ts/Core/DataFile.js +0 -82
- package/dist/ts/esm/ts/Core/DataMap.js +0 -156
- package/dist/ts/esm/ts/Core/Helper/Collections.js +0 -462
- package/dist/ts/esm/ts/Core/Helper/HashCodes.js +0 -32
- package/dist/ts/esm/ts/Core/Helper/Identifier.js +0 -298
- package/dist/ts/esm/ts/Core/Helper/ORCID.js +0 -34
- package/dist/ts/esm/ts/Core/Helper/Printer.js +0 -1
- package/dist/ts/esm/ts/Core/Helper/Regex.js +0 -579
- package/dist/ts/esm/ts/Core/Helper/SemVer.js +0 -50
- package/dist/ts/esm/ts/Core/Helper/Url.js +0 -30
- package/dist/ts/esm/ts/Core/IPropertyValue.js +0 -1
- package/dist/ts/esm/ts/Core/IdentifierSetters.js +0 -21
- package/dist/ts/esm/ts/Core/OntologyAnnotation.js +0 -213
- package/dist/ts/esm/ts/Core/OntologySourceReference.js +0 -88
- package/dist/ts/esm/ts/Core/Person.js +0 -190
- package/dist/ts/esm/ts/Core/Process/ColumnIndex.js +0 -204
- package/dist/ts/esm/ts/Core/Process/Component.js +0 -180
- package/dist/ts/esm/ts/Core/Process/Factor.js +0 -106
- package/dist/ts/esm/ts/Core/Process/FactorValue.js +0 -127
- package/dist/ts/esm/ts/Core/Process/Material.js +0 -57
- package/dist/ts/esm/ts/Core/Process/MaterialAttribute.js +0 -86
- package/dist/ts/esm/ts/Core/Process/MaterialAttributeValue.js +0 -142
- package/dist/ts/esm/ts/Core/Process/MaterialType.js +0 -42
- package/dist/ts/esm/ts/Core/Process/Process.js +0 -341
- package/dist/ts/esm/ts/Core/Process/ProcessInput.js +0 -283
- package/dist/ts/esm/ts/Core/Process/ProcessOutput.js +0 -248
- package/dist/ts/esm/ts/Core/Process/ProcessParameterValue.js +0 -136
- package/dist/ts/esm/ts/Core/Process/ProcessSequence.js +0 -227
- package/dist/ts/esm/ts/Core/Process/Protocol.js +0 -210
- package/dist/ts/esm/ts/Core/Process/ProtocolParameter.js +0 -70
- package/dist/ts/esm/ts/Core/Process/Sample.js +0 -59
- package/dist/ts/esm/ts/Core/Process/Source.js +0 -45
- package/dist/ts/esm/ts/Core/Publication.js +0 -112
- package/dist/ts/esm/ts/Core/Table/ArcTable.js +0 -917
- package/dist/ts/esm/ts/Core/Table/ArcTableAux.js +0 -1213
- package/dist/ts/esm/ts/Core/Table/ArcTables.js +0 -461
- package/dist/ts/esm/ts/Core/Table/CompositeCell.js +0 -308
- package/dist/ts/esm/ts/Core/Table/CompositeColumn.js +0 -55
- package/dist/ts/esm/ts/Core/Table/CompositeHeader.js +0 -691
- package/dist/ts/esm/ts/Core/Template.js +0 -186
- package/dist/ts/esm/ts/Core/Templates.js +0 -79
- package/dist/ts/esm/ts/Core/URI.js +0 -16
- package/dist/ts/esm/ts/Core/Value.js +0 -182
- package/dist/ts/esm/ts/CrossAsync.js +0 -27
- package/dist/ts/esm/ts/FileSystem/Commit.js +0 -15
- package/dist/ts/esm/ts/FileSystem/DefaultGitattributes.js +0 -1
- package/dist/ts/esm/ts/FileSystem/DefaultGitignore.js +0 -1
- package/dist/ts/esm/ts/FileSystem/FileSystem.js +0 -50
- package/dist/ts/esm/ts/FileSystem/FileSystemTree.js +0 -315
- package/dist/ts/esm/ts/FileSystem/Path.js +0 -51
- package/dist/ts/esm/ts/Json/Assay.js +0 -225
- package/dist/ts/esm/ts/Json/Comment.js +0 -111
- package/dist/ts/esm/ts/Json/Data.js +0 -138
- package/dist/ts/esm/ts/Json/DataFile.js +0 -50
- package/dist/ts/esm/ts/Json/DataMap/DataContext.js +0 -36
- package/dist/ts/esm/ts/Json/DataMap/DataMap.js +0 -24
- package/dist/ts/esm/ts/Json/Decode.js +0 -219
- package/dist/ts/esm/ts/Json/Encode.js +0 -103
- package/dist/ts/esm/ts/Json/IDTable.js +0 -26
- package/dist/ts/esm/ts/Json/Investigation.js +0 -244
- package/dist/ts/esm/ts/Json/OntologyAnnotation.js +0 -197
- package/dist/ts/esm/ts/Json/OntologySourceReference.js +0 -118
- package/dist/ts/esm/ts/Json/Person.js +0 -329
- package/dist/ts/esm/ts/Json/Process/AssayMaterials.js +0 -18
- package/dist/ts/esm/ts/Json/Process/Component.js +0 -42
- package/dist/ts/esm/ts/Json/Process/Factor.js +0 -53
- package/dist/ts/esm/ts/Json/Process/FactorValue.js +0 -42
- package/dist/ts/esm/ts/Json/Process/Material.js +0 -114
- package/dist/ts/esm/ts/Json/Process/MaterialAttribute.js +0 -42
- package/dist/ts/esm/ts/Json/Process/MaterialAttributeValue.js +0 -42
- package/dist/ts/esm/ts/Json/Process/MaterialType.js +0 -42
- package/dist/ts/esm/ts/Json/Process/Process.js +0 -103
- package/dist/ts/esm/ts/Json/Process/ProcessInput.js +0 -33
- package/dist/ts/esm/ts/Json/Process/ProcessOutput.js +0 -28
- package/dist/ts/esm/ts/Json/Process/ProcessParameterValue.js +0 -28
- package/dist/ts/esm/ts/Json/Process/Protocol.js +0 -174
- package/dist/ts/esm/ts/Json/Process/ProtocolParameter.js +0 -42
- package/dist/ts/esm/ts/Json/Process/Sample.js +0 -170
- package/dist/ts/esm/ts/Json/Process/Source.js +0 -139
- package/dist/ts/esm/ts/Json/Process/StudyMaterials.js +0 -20
- package/dist/ts/esm/ts/Json/Process/Value.js +0 -35
- package/dist/ts/esm/ts/Json/PropertyValue.js +0 -295
- package/dist/ts/esm/ts/Json/Publication.js +0 -123
- package/dist/ts/esm/ts/Json/ROCrate/LDContext.js +0 -119
- package/dist/ts/esm/ts/Json/ROCrate/LDGraph.js +0 -84
- package/dist/ts/esm/ts/Json/ROCrate/LDNode.js +0 -207
- package/dist/ts/esm/ts/Json/ROCrate/LDRef.js +0 -21
- package/dist/ts/esm/ts/Json/ROCrate/LDValue.js +0 -65
- package/dist/ts/esm/ts/Json/StringTable.js +0 -63
- package/dist/ts/esm/ts/Json/Study.js +0 -337
- package/dist/ts/esm/ts/Json/Table/ArcTable.js +0 -208
- package/dist/ts/esm/ts/Json/Table/CellTable.js +0 -51
- package/dist/ts/esm/ts/Json/Table/CompositeCell.js +0 -97
- package/dist/ts/esm/ts/Json/Table/CompositeHeader.js +0 -104
- package/dist/ts/esm/ts/Json/Table/IOType.js +0 -12
- package/dist/ts/esm/ts/Json/Table/OATable.js +0 -48
- package/dist/ts/esm/ts/Json/Table/Templates.js +0 -98
- package/dist/ts/esm/ts/Json/context/rocrate/isa_assay_context.js +0 -84
- package/dist/ts/esm/ts/Json/context/rocrate/isa_comment_context.js +0 -42
- package/dist/ts/esm/ts/Json/context/rocrate/isa_data_context.js +0 -56
- package/dist/ts/esm/ts/Json/context/rocrate/isa_investigation_context.js +0 -92
- package/dist/ts/esm/ts/Json/context/rocrate/isa_material_context.js +0 -53
- package/dist/ts/esm/ts/Json/context/rocrate/isa_ontology_annotation_context.js +0 -51
- package/dist/ts/esm/ts/Json/context/rocrate/isa_ontology_source_reference_context.js +0 -57
- package/dist/ts/esm/ts/Json/context/rocrate/isa_organization_context.js +0 -37
- package/dist/ts/esm/ts/Json/context/rocrate/isa_person_context.js +0 -107
- package/dist/ts/esm/ts/Json/context/rocrate/isa_process_context.js +0 -77
- package/dist/ts/esm/ts/Json/context/rocrate/isa_protocol_context.js +0 -80
- package/dist/ts/esm/ts/Json/context/rocrate/isa_publication_context.js +0 -61
- package/dist/ts/esm/ts/Json/context/rocrate/isa_sample_context.js +0 -48
- package/dist/ts/esm/ts/Json/context/rocrate/isa_source_context.js +0 -48
- package/dist/ts/esm/ts/Json/context/rocrate/isa_study_context.js +0 -108
- package/dist/ts/esm/ts/Json/context/rocrate/property_value_context.js +0 -58
- package/dist/ts/esm/ts/Json/context/rocrate/rocrate_context.js +0 -58
- package/dist/ts/esm/ts/Json.js +0 -175
- package/dist/ts/esm/ts/JsonIO/Assay.js +0 -90
- package/dist/ts/esm/ts/JsonIO/Investigation.js +0 -90
- package/dist/ts/esm/ts/JsonIO/LDObject.js +0 -94
- package/dist/ts/esm/ts/JsonIO/OntologyAnnotation.js +0 -66
- package/dist/ts/esm/ts/JsonIO/Study.js +0 -90
- package/dist/ts/esm/ts/JsonIO/Table/Compression.js +0 -36
- package/dist/ts/esm/ts/JsonIO/Table/Templates.js +0 -80
- package/dist/ts/esm/ts/ROCrate/Generic/Comment.js +0 -112
- package/dist/ts/esm/ts/ROCrate/Generic/Dataset.js +0 -666
- package/dist/ts/esm/ts/ROCrate/Generic/DefinedTerm.js +0 -112
- package/dist/ts/esm/ts/ROCrate/Generic/File.js +0 -197
- package/dist/ts/esm/ts/ROCrate/Generic/LabProcess.js +0 -235
- package/dist/ts/esm/ts/ROCrate/Generic/LabProtocol.js +0 -272
- package/dist/ts/esm/ts/ROCrate/Generic/Organization.js +0 -68
- package/dist/ts/esm/ts/ROCrate/Generic/Person.js +0 -408
- package/dist/ts/esm/ts/ROCrate/Generic/PostalAddress.js +0 -156
- package/dist/ts/esm/ts/ROCrate/Generic/PropertyValue.js +0 -545
- package/dist/ts/esm/ts/ROCrate/Generic/Sample.js +0 -136
- package/dist/ts/esm/ts/ROCrate/Generic/ScholarlyArticle.js +0 -184
- package/dist/ts/esm/ts/ROCrate/Helper.js +0 -4
- package/dist/ts/esm/ts/ROCrate/LDContext.js +0 -313
- package/dist/ts/esm/ts/ROCrate/LDObject.js +0 -967
- package/dist/ts/esm/ts/ROCrate/ROCrateContext.js +0 -38
- package/dist/ts/esm/ts/ROCrateIO.js +0 -54
- package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/ArcTable.js +0 -164
- package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/CompositeCell.js +0 -61
- package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/CompositeColumn.js +0 -141
- package/dist/ts/esm/ts/Spreadsheet/AnnotationTable/CompositeHeader.js +0 -460
- package/dist/ts/esm/ts/Spreadsheet/ArcAssay.js +0 -204
- package/dist/ts/esm/ts/Spreadsheet/ArcInvestigation.js +0 -334
- package/dist/ts/esm/ts/Spreadsheet/ArcRun.js +0 -163
- package/dist/ts/esm/ts/Spreadsheet/ArcStudy.js +0 -117
- package/dist/ts/esm/ts/Spreadsheet/ArcWorkflow.js +0 -152
- package/dist/ts/esm/ts/Spreadsheet/CollectionAux.js +0 -117
- package/dist/ts/esm/ts/Spreadsheet/DataMap.js +0 -37
- package/dist/ts/esm/ts/Spreadsheet/DataMapTable/DataMapColumn.js +0 -39
- package/dist/ts/esm/ts/Spreadsheet/DataMapTable/DataMapHeader.js +0 -463
- package/dist/ts/esm/ts/Spreadsheet/DataMapTable/DataMapTable.js +0 -97
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Assays.js +0 -90
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Comment.js +0 -59
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Contacts.js +0 -84
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Conversions.js +0 -176
- package/dist/ts/esm/ts/Spreadsheet/Metadata/DesignDescriptors.js +0 -18
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Factors.js +0 -75
- package/dist/ts/esm/ts/Spreadsheet/Metadata/OntologyAnnotation.js +0 -59
- package/dist/ts/esm/ts/Spreadsheet/Metadata/OntologySourceReference.js +0 -60
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Protocols.js +0 -95
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Publication.js +0 -80
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Run.js +0 -91
- package/dist/ts/esm/ts/Spreadsheet/Metadata/SparseTable.js +0 -434
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Study.js +0 -245
- package/dist/ts/esm/ts/Spreadsheet/Metadata/Workflow.js +0 -103
- package/dist/ts/esm/ts/Template.Web.js +0 -23
- package/dist/ts/esm/ts/ValidationPackages/ValidationPackage.js +0 -57
- package/dist/ts/esm/ts/ValidationPackages/ValidationPackagesConfig.js +0 -84
- package/dist/ts/esm/ts/WebRequest/WebRequest.Node.js +0 -13
- package/dist/ts/esm/ts/WebRequest/WebRequest.js +0 -17
- package/dist/ts/esm/ts/Xlsx.js +0 -116
- package/dist/ts/esm/ts/Yaml/Encode.js +0 -5
- package/dist/ts/esm/ts/Yaml/ValidationPackage.js +0 -41
- package/dist/ts/esm/ts/Yaml/ValidationPackagesConfig.js +0 -42
- package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.js +0 -432
- package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.js +0 -118
- package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.js +0 -43
- package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.js +0 -18
- package/dist/ts/esm/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.js +0 -79
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.js +0 -1
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.js +0 -1
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.js +0 -2
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.js +0 -1
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.js +0 -102
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.js +0 -1
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.js +0 -1
- package/dist/ts/esm/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.js +0 -1
- package/dist/ts/esm/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.js +0 -281
- package/dist/ts/esm/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +0 -203
- package/dist/ts/esm/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +0 -16
- package/dist/ts/esm/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.js +0 -380
- package/dist/ts/esm/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.js +0 -151
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.js +0 -463
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.js +0 -473
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.js +0 -189
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.js +0 -43
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.js +0 -122
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.js +0 -306
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.js +0 -224
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.js +0 -121
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.js +0 -131
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.js +0 -134
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.js +0 -429
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.js +0 -62
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.js +0 -35
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.js +0 -35
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.js +0 -27
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.js +0 -74
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.js +0 -41
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.js +0 -129
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.js +0 -33
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.js +0 -206
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.js +0 -80
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.js +0 -60
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.js +0 -31
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.js +0 -326
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.js +0 -152
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.js +0 -76
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.js +0 -48
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.js +0 -48
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.js +0 -51
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.js +0 -30
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.js +0 -64
- package/dist/ts/esm/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.js +0 -67
- package/dist/ts/esm/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.js +0 -1269
- package/dist/ts/esm/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.js +0 -178
- package/dist/ts/esm/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.js +0 -79
- package/dist/ts/esm/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.js +0 -91
- package/dist/ts/esm/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.js +0 -55
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.js +0 -1692
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.js +0 -57
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.js +0 -9
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.js +0 -43
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.js +0 -96
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.js +0 -522
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.js +0 -9
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.js +0 -221
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.js +0 -156
- package/dist/ts/esm/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.js +0 -148
- package/dist/ts/types/index.d.ts +0 -60
- package/dist/ts/types/index.d.ts.map +0 -1
- package/dist/ts/types/ts/ARC.d.ts +0 -80
- package/dist/ts/types/ts/ARC.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/ARC.d.ts +0 -7
- package/dist/ts/types/ts/Contract/ARC.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/ArcAssay.d.ts +0 -12
- package/dist/ts/types/ts/Contract/ArcAssay.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/ArcInvestigation.d.ts +0 -10
- package/dist/ts/types/ts/Contract/ArcInvestigation.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/ArcRun.d.ts +0 -12
- package/dist/ts/types/ts/Contract/ArcRun.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/ArcStudy.d.ts +0 -13
- package/dist/ts/types/ts/Contract/ArcStudy.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/ArcWorkflow.d.ts +0 -12
- package/dist/ts/types/ts/Contract/ArcWorkflow.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/Contract.d.ts +0 -39
- package/dist/ts/types/ts/Contract/Contract.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/Datamap.d.ts +0 -29
- package/dist/ts/types/ts/Contract/Datamap.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/Git.d.ts +0 -28
- package/dist/ts/types/ts/Contract/Git.d.ts.map +0 -1
- package/dist/ts/types/ts/Contract/ValidationPackagesConfig.d.ts +0 -12
- package/dist/ts/types/ts/Contract/ValidationPackagesConfig.d.ts.map +0 -1
- package/dist/ts/types/ts/ContractIO/ContractIO.d.ts +0 -11
- package/dist/ts/types/ts/ContractIO/ContractIO.d.ts.map +0 -1
- package/dist/ts/types/ts/ContractIO/FileSystemHelper.d.ts +0 -33
- package/dist/ts/types/ts/ContractIO/FileSystemHelper.d.ts.map +0 -1
- package/dist/ts/types/ts/Conversion.d.ts +0 -291
- package/dist/ts/types/ts/Conversion.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/ArcTypes.d.ts +0 -620
- package/dist/ts/types/ts/Core/ArcTypes.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Comment.d.ts +0 -35
- package/dist/ts/types/ts/Core/Comment.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/CommentList.d.ts +0 -28
- package/dist/ts/types/ts/Core/CommentList.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Conversion.d.ts +0 -215
- package/dist/ts/types/ts/Core/Conversion.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Data.d.ts +0 -49
- package/dist/ts/types/ts/Core/Data.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/DataContext.d.ts +0 -47
- package/dist/ts/types/ts/Core/DataContext.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/DataFile.d.ts +0 -27
- package/dist/ts/types/ts/Core/DataFile.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/DataMap.d.ts +0 -52
- package/dist/ts/types/ts/Core/DataMap.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Helper/Collections.d.ts +0 -61
- package/dist/ts/types/ts/Core/Helper/Collections.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Helper/HashCodes.d.ts +0 -9
- package/dist/ts/types/ts/Core/Helper/HashCodes.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Helper/Identifier.d.ts +0 -119
- package/dist/ts/types/ts/Core/Helper/Identifier.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Helper/ORCID.d.ts +0 -7
- package/dist/ts/types/ts/Core/Helper/ORCID.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Helper/Printer.d.ts +0 -5
- package/dist/ts/types/ts/Core/Helper/Printer.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Helper/Regex.d.ts +0 -194
- package/dist/ts/types/ts/Core/Helper/Regex.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Helper/SemVer.d.ts +0 -20
- package/dist/ts/types/ts/Core/Helper/SemVer.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Helper/Url.d.ts +0 -10
- package/dist/ts/types/ts/Core/Helper/Url.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/IPropertyValue.d.ts +0 -13
- package/dist/ts/types/ts/Core/IPropertyValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/IdentifierSetters.d.ts +0 -7
- package/dist/ts/types/ts/Core/IdentifierSetters.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/OntologyAnnotation.d.ts +0 -57
- package/dist/ts/types/ts/Core/OntologyAnnotation.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/OntologySourceReference.d.ts +0 -31
- package/dist/ts/types/ts/Core/OntologySourceReference.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Person.d.ts +0 -56
- package/dist/ts/types/ts/Core/Person.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/ColumnIndex.d.ts +0 -79
- package/dist/ts/types/ts/Core/Process/ColumnIndex.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/Component.d.ts +0 -65
- package/dist/ts/types/ts/Core/Process/Component.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/Factor.d.ts +0 -44
- package/dist/ts/types/ts/Core/Process/Factor.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/FactorValue.d.ts +0 -44
- package/dist/ts/types/ts/Core/Process/FactorValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/Material.d.ts +0 -27
- package/dist/ts/types/ts/Core/Process/Material.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/MaterialAttribute.d.ts +0 -53
- package/dist/ts/types/ts/Core/Process/MaterialAttribute.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/MaterialAttributeValue.d.ts +0 -55
- package/dist/ts/types/ts/Core/Process/MaterialAttributeValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/MaterialType.d.ts +0 -22
- package/dist/ts/types/ts/Core/Process/MaterialType.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/Process.d.ts +0 -113
- package/dist/ts/types/ts/Core/Process/Process.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/ProcessInput.d.ts +0 -117
- package/dist/ts/types/ts/Core/Process/ProcessInput.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/ProcessOutput.d.ts +0 -106
- package/dist/ts/types/ts/Core/Process/ProcessOutput.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/ProcessParameterValue.d.ts +0 -40
- package/dist/ts/types/ts/Core/Process/ProcessParameterValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/ProcessSequence.d.ts +0 -89
- package/dist/ts/types/ts/Core/Process/ProcessSequence.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/Protocol.d.ts +0 -141
- package/dist/ts/types/ts/Core/Process/Protocol.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/ProtocolParameter.d.ts +0 -32
- package/dist/ts/types/ts/Core/Process/ProtocolParameter.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/Sample.d.ts +0 -31
- package/dist/ts/types/ts/Core/Process/Sample.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Process/Source.d.ts +0 -24
- package/dist/ts/types/ts/Core/Process/Source.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Publication.d.ts +0 -36
- package/dist/ts/types/ts/Core/Publication.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Table/ArcTable.d.ts +0 -137
- package/dist/ts/types/ts/Core/Table/ArcTable.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Table/ArcTableAux.d.ts +0 -154
- package/dist/ts/types/ts/Core/Table/ArcTableAux.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Table/ArcTables.d.ts +0 -91
- package/dist/ts/types/ts/Core/Table/ArcTables.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Table/CompositeCell.d.ts +0 -58
- package/dist/ts/types/ts/Core/Table/CompositeCell.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Table/CompositeColumn.d.ts +0 -19
- package/dist/ts/types/ts/Core/Table/CompositeColumn.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Table/CompositeHeader.d.ts +0 -130
- package/dist/ts/types/ts/Core/Table/CompositeHeader.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Template.d.ts +0 -69
- package/dist/ts/types/ts/Core/Template.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Templates.d.ts +0 -18
- package/dist/ts/types/ts/Core/Templates.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/URI.d.ts.map +0 -1
- package/dist/ts/types/ts/Core/Value.d.ts +0 -41
- package/dist/ts/types/ts/Core/Value.d.ts.map +0 -1
- package/dist/ts/types/ts/CrossAsync.d.ts +0 -9
- package/dist/ts/types/ts/CrossAsync.d.ts.map +0 -1
- package/dist/ts/types/ts/FileSystem/Commit.d.ts +0 -13
- package/dist/ts/types/ts/FileSystem/Commit.d.ts.map +0 -1
- package/dist/ts/types/ts/FileSystem/DefaultGitattributes.d.ts +0 -2
- package/dist/ts/types/ts/FileSystem/DefaultGitattributes.d.ts.map +0 -1
- package/dist/ts/types/ts/FileSystem/DefaultGitignore.d.ts +0 -2
- package/dist/ts/types/ts/FileSystem/DefaultGitignore.d.ts.map +0 -1
- package/dist/ts/types/ts/FileSystem/FileSystem.d.ts +0 -21
- package/dist/ts/types/ts/FileSystem/FileSystem.d.ts.map +0 -1
- package/dist/ts/types/ts/FileSystem/FileSystemTree.d.ts +0 -54
- package/dist/ts/types/ts/FileSystem/FileSystemTree.d.ts.map +0 -1
- package/dist/ts/types/ts/FileSystem/Path.d.ts +0 -14
- package/dist/ts/types/ts/FileSystem/Path.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Assay.d.ts +0 -19
- package/dist/ts/types/ts/Json/Assay.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Comment.d.ts +0 -14
- package/dist/ts/types/ts/Json/Comment.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Data.d.ts +0 -17
- package/dist/ts/types/ts/Json/Data.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/DataFile.d.ts +0 -7
- package/dist/ts/types/ts/Json/DataFile.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/DataMap/DataContext.d.ts +0 -5
- package/dist/ts/types/ts/Json/DataMap/DataContext.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/DataMap/DataMap.d.ts +0 -11
- package/dist/ts/types/ts/Json/DataMap/DataMap.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Decode.d.ts +0 -18
- package/dist/ts/types/ts/Json/Decode.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Encode.d.ts +0 -23
- package/dist/ts/types/ts/Json/Encode.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/IDTable.d.ts +0 -5
- package/dist/ts/types/ts/Json/IDTable.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Investigation.d.ts +0 -20
- package/dist/ts/types/ts/Json/Investigation.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/OntologyAnnotation.d.ts +0 -18
- package/dist/ts/types/ts/Json/OntologyAnnotation.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/OntologySourceReference.d.ts +0 -12
- package/dist/ts/types/ts/Json/OntologySourceReference.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Person.d.ts +0 -22
- package/dist/ts/types/ts/Json/Person.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/AssayMaterials.d.ts +0 -7
- package/dist/ts/types/ts/Json/Process/AssayMaterials.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/Component.d.ts +0 -11
- package/dist/ts/types/ts/Json/Process/Component.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/Factor.d.ts +0 -8
- package/dist/ts/types/ts/Json/Process/Factor.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/FactorValue.d.ts +0 -11
- package/dist/ts/types/ts/Json/Process/FactorValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/Material.d.ts +0 -12
- package/dist/ts/types/ts/Json/Process/Material.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/MaterialAttribute.d.ts +0 -8
- package/dist/ts/types/ts/Json/Process/MaterialAttribute.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/MaterialAttributeValue.d.ts +0 -11
- package/dist/ts/types/ts/Json/Process/MaterialAttributeValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/MaterialType.d.ts +0 -7
- package/dist/ts/types/ts/Json/Process/MaterialType.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/Process.d.ts +0 -10
- package/dist/ts/types/ts/Json/Process/Process.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/ProcessInput.d.ts +0 -9
- package/dist/ts/types/ts/Json/Process/ProcessInput.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/ProcessOutput.d.ts +0 -9
- package/dist/ts/types/ts/Json/Process/ProcessOutput.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/ProcessParameterValue.d.ts +0 -11
- package/dist/ts/types/ts/Json/Process/ProcessParameterValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/Protocol.d.ts +0 -10
- package/dist/ts/types/ts/Json/Process/Protocol.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/ProtocolParameter.d.ts +0 -8
- package/dist/ts/types/ts/Json/Process/ProtocolParameter.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/Sample.d.ts +0 -15
- package/dist/ts/types/ts/Json/Process/Sample.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/Source.d.ts +0 -12
- package/dist/ts/types/ts/Json/Process/Source.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/StudyMaterials.d.ts +0 -7
- package/dist/ts/types/ts/Json/Process/StudyMaterials.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Process/Value.d.ts +0 -7
- package/dist/ts/types/ts/Json/Process/Value.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/PropertyValue.d.ts +0 -9
- package/dist/ts/types/ts/Json/PropertyValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Publication.d.ts +0 -14
- package/dist/ts/types/ts/Json/Publication.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/ROCrate/LDContext.d.ts +0 -5
- package/dist/ts/types/ts/Json/ROCrate/LDContext.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/ROCrate/LDGraph.d.ts +0 -5
- package/dist/ts/types/ts/Json/ROCrate/LDGraph.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/ROCrate/LDNode.d.ts +0 -13
- package/dist/ts/types/ts/Json/ROCrate/LDNode.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/ROCrate/LDRef.d.ts +0 -5
- package/dist/ts/types/ts/Json/ROCrate/LDRef.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/ROCrate/LDValue.d.ts +0 -7
- package/dist/ts/types/ts/Json/ROCrate/LDValue.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/StringTable.d.ts +0 -9
- package/dist/ts/types/ts/Json/StringTable.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Study.d.ts +0 -26
- package/dist/ts/types/ts/Json/Study.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Table/ArcTable.d.ts +0 -15
- package/dist/ts/types/ts/Json/Table/ArcTable.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Table/CellTable.d.ts +0 -11
- package/dist/ts/types/ts/Json/Table/CellTable.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Table/CompositeCell.d.ts +0 -10
- package/dist/ts/types/ts/Json/Table/CompositeCell.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Table/CompositeHeader.d.ts +0 -5
- package/dist/ts/types/ts/Json/Table/CompositeHeader.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Table/IOType.d.ts +0 -5
- package/dist/ts/types/ts/Json/Table/IOType.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Table/OATable.d.ts +0 -10
- package/dist/ts/types/ts/Json/Table/OATable.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/Table/Templates.d.ts +0 -15
- package/dist/ts/types/ts/Json/Table/Templates.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_assay_context.d.ts +0 -26
- package/dist/ts/types/ts/Json/context/rocrate/isa_assay_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_comment_context.d.ts +0 -16
- package/dist/ts/types/ts/Json/context/rocrate/isa_comment_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_data_context.d.ts +0 -18
- package/dist/ts/types/ts/Json/context/rocrate/isa_data_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_investigation_context.d.ts +0 -26
- package/dist/ts/types/ts/Json/context/rocrate/isa_investigation_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_material_context.d.ts +0 -19
- package/dist/ts/types/ts/Json/context/rocrate/isa_material_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts +0 -17
- package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_annotation_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts +0 -19
- package/dist/ts/types/ts/Json/context/rocrate/isa_ontology_source_reference_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_organization_context.d.ts +0 -15
- package/dist/ts/types/ts/Json/context/rocrate/isa_organization_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_person_context.d.ts +0 -25
- package/dist/ts/types/ts/Json/context/rocrate/isa_person_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_process_context.d.ts +0 -23
- package/dist/ts/types/ts/Json/context/rocrate/isa_process_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_protocol_context.d.ts +0 -22
- package/dist/ts/types/ts/Json/context/rocrate/isa_protocol_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_publication_context.d.ts +0 -19
- package/dist/ts/types/ts/Json/context/rocrate/isa_publication_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_sample_context.d.ts +0 -18
- package/dist/ts/types/ts/Json/context/rocrate/isa_sample_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_source_context.d.ts +0 -18
- package/dist/ts/types/ts/Json/context/rocrate/isa_source_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/isa_study_context.d.ts +0 -34
- package/dist/ts/types/ts/Json/context/rocrate/isa_study_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/property_value_context.d.ts +0 -3
- package/dist/ts/types/ts/Json/context/rocrate/property_value_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json/context/rocrate/rocrate_context.d.ts +0 -16
- package/dist/ts/types/ts/Json/context/rocrate/rocrate_context.d.ts.map +0 -1
- package/dist/ts/types/ts/Json.d.ts +0 -73
- package/dist/ts/types/ts/Json.d.ts.map +0 -1
- package/dist/ts/types/ts/JsonIO/Assay.d.ts +0 -19
- package/dist/ts/types/ts/JsonIO/Assay.d.ts.map +0 -1
- package/dist/ts/types/ts/JsonIO/Investigation.d.ts +0 -19
- package/dist/ts/types/ts/JsonIO/Investigation.d.ts.map +0 -1
- package/dist/ts/types/ts/JsonIO/LDObject.d.ts +0 -29
- package/dist/ts/types/ts/JsonIO/LDObject.d.ts.map +0 -1
- package/dist/ts/types/ts/JsonIO/OntologyAnnotation.d.ts +0 -16
- package/dist/ts/types/ts/JsonIO/OntologyAnnotation.d.ts.map +0 -1
- package/dist/ts/types/ts/JsonIO/Study.d.ts +0 -20
- package/dist/ts/types/ts/JsonIO/Study.d.ts.map +0 -1
- package/dist/ts/types/ts/JsonIO/Table/Compression.d.ts +0 -8
- package/dist/ts/types/ts/JsonIO/Table/Compression.d.ts.map +0 -1
- package/dist/ts/types/ts/JsonIO/Table/Templates.d.ts +0 -15
- package/dist/ts/types/ts/JsonIO/Table/Templates.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/Comment.d.ts +0 -21
- package/dist/ts/types/ts/ROCrate/Generic/Comment.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/Dataset.d.ts +0 -92
- package/dist/ts/types/ts/ROCrate/Generic/Dataset.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/DefinedTerm.d.ts +0 -21
- package/dist/ts/types/ts/ROCrate/Generic/DefinedTerm.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/File.d.ts +0 -35
- package/dist/ts/types/ts/ROCrate/Generic/File.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/LabProcess.d.ts +0 -43
- package/dist/ts/types/ts/ROCrate/Generic/LabProcess.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/LabProtocol.d.ts +0 -44
- package/dist/ts/types/ts/ROCrate/Generic/LabProtocol.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/Organization.d.ts +0 -17
- package/dist/ts/types/ts/ROCrate/Generic/Organization.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/Person.d.ts +0 -51
- package/dist/ts/types/ts/ROCrate/Generic/Person.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/PostalAddress.d.ts +0 -25
- package/dist/ts/types/ts/ROCrate/Generic/PostalAddress.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/PropertyValue.d.ts +0 -73
- package/dist/ts/types/ts/ROCrate/Generic/PropertyValue.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/Sample.d.ts +0 -30
- package/dist/ts/types/ts/ROCrate/Generic/Sample.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Generic/ScholarlyArticle.d.ts +0 -34
- package/dist/ts/types/ts/ROCrate/Generic/ScholarlyArticle.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/Helper.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/LDContext.d.ts +0 -43
- package/dist/ts/types/ts/ROCrate/LDContext.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/LDObject.d.ts +0 -97
- package/dist/ts/types/ts/ROCrate/LDObject.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrate/ROCrateContext.d.ts +0 -7
- package/dist/ts/types/ts/ROCrate/ROCrateContext.d.ts.map +0 -1
- package/dist/ts/types/ts/ROCrateIO.d.ts +0 -15
- package/dist/ts/types/ts/ROCrateIO.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts +0 -40
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/ArcTable.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts +0 -9
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeCell.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts +0 -24
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeColumn.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts +0 -22
- package/dist/ts/types/ts/Spreadsheet/AnnotationTable/CompositeHeader.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/ArcAssay.d.ts +0 -31
- package/dist/ts/types/ts/Spreadsheet/ArcAssay.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/ArcInvestigation.d.ts +0 -42
- package/dist/ts/types/ts/Spreadsheet/ArcInvestigation.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/ArcRun.d.ts +0 -27
- package/dist/ts/types/ts/Spreadsheet/ArcRun.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/ArcStudy.d.ts +0 -26
- package/dist/ts/types/ts/Spreadsheet/ArcStudy.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/ArcWorkflow.d.ts +0 -27
- package/dist/ts/types/ts/Spreadsheet/ArcWorkflow.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/CollectionAux.d.ts +0 -23
- package/dist/ts/types/ts/Spreadsheet/CollectionAux.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/DataMap.d.ts +0 -8
- package/dist/ts/types/ts/Spreadsheet/DataMap.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapColumn.d.ts +0 -7
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapColumn.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapHeader.d.ts +0 -23
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapHeader.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapTable.d.ts +0 -23
- package/dist/ts/types/ts/Spreadsheet/DataMapTable/DataMapTable.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Assays.d.ts +0 -14
- package/dist/ts/types/ts/Spreadsheet/Metadata/Assays.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Comment.d.ts +0 -14
- package/dist/ts/types/ts/Spreadsheet/Metadata/Comment.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Contacts.d.ts +0 -25
- package/dist/ts/types/ts/Spreadsheet/Metadata/Contacts.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Conversions.d.ts +0 -60
- package/dist/ts/types/ts/Spreadsheet/Metadata/Conversions.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts +0 -16
- package/dist/ts/types/ts/Spreadsheet/Metadata/DesignDescriptors.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Factors.d.ts +0 -18
- package/dist/ts/types/ts/Spreadsheet/Metadata/Factors.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts +0 -12
- package/dist/ts/types/ts/Spreadsheet/Metadata/OntologyAnnotation.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts +0 -18
- package/dist/ts/types/ts/Spreadsheet/Metadata/OntologySourceReference.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Protocols.d.ts +0 -28
- package/dist/ts/types/ts/Spreadsheet/Metadata/Protocols.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Publication.d.ts +0 -21
- package/dist/ts/types/ts/Spreadsheet/Metadata/Publication.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Run.d.ts +0 -14
- package/dist/ts/types/ts/Spreadsheet/Metadata/Run.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/SparseTable.d.ts +0 -37
- package/dist/ts/types/ts/Spreadsheet/Metadata/SparseTable.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Study.d.ts +0 -38
- package/dist/ts/types/ts/Spreadsheet/Metadata/Study.d.ts.map +0 -1
- package/dist/ts/types/ts/Spreadsheet/Metadata/Workflow.d.ts +0 -31
- package/dist/ts/types/ts/Spreadsheet/Metadata/Workflow.d.ts.map +0 -1
- package/dist/ts/types/ts/Template.Web.d.ts +0 -11
- package/dist/ts/types/ts/Template.Web.d.ts.map +0 -1
- package/dist/ts/types/ts/ValidationPackages/ValidationPackage.d.ts +0 -21
- package/dist/ts/types/ts/ValidationPackages/ValidationPackage.d.ts.map +0 -1
- package/dist/ts/types/ts/ValidationPackages/ValidationPackagesConfig.d.ts +0 -23
- package/dist/ts/types/ts/ValidationPackages/ValidationPackagesConfig.d.ts.map +0 -1
- package/dist/ts/types/ts/WebRequest/WebRequest.Node.d.ts +0 -4
- package/dist/ts/types/ts/WebRequest/WebRequest.Node.d.ts.map +0 -1
- package/dist/ts/types/ts/WebRequest/WebRequest.d.ts +0 -4
- package/dist/ts/types/ts/WebRequest/WebRequest.d.ts.map +0 -1
- package/dist/ts/types/ts/Xlsx.d.ts +0 -50
- package/dist/ts/types/ts/Xlsx.d.ts.map +0 -1
- package/dist/ts/types/ts/Yaml/Encode.d.ts +0 -5
- package/dist/ts/types/ts/Yaml/Encode.d.ts.map +0 -1
- package/dist/ts/types/ts/Yaml/ValidationPackage.d.ts +0 -10
- package/dist/ts/types/ts/Yaml/ValidationPackage.d.ts.map +0 -1
- package/dist/ts/types/ts/Yaml/ValidationPackagesConfig.d.ts +0 -10
- package/dist/ts/types/ts/Yaml/ValidationPackagesConfig.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.d.ts +0 -69
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/DynamicObj.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.d.ts +0 -25
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/FableJS.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.d.ts +0 -11
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/HashCodes.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.d.ts +0 -15
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/PropertyHelper.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.d.ts +0 -15
- package/dist/ts/types/ts/fable_modules/DynamicObj.7.0.1/ReflectionUtils.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.d.ts +0 -34
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Cell.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.d.ts +0 -14
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Column.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.d.ts +0 -4
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/ExcelJs.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.d.ts +0 -30
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Row.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.d.ts +0 -49
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Unions.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.d.ts +0 -35
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Workbook.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.d.ts +0 -123
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Worksheet.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.d.ts +0 -27
- package/dist/ts/types/ts/fable_modules/Fable.Exceljs.1.6.0/Xlsx.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.d.ts +0 -253
- package/dist/ts/types/ts/fable_modules/Fable.Fetch.2.6.0/Fetch.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.d.ts +0 -112
- package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/Promise.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.d.ts +0 -8
- package/dist/ts/types/ts/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.d.ts +0 -123
- package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.d.ts +0 -113
- package/dist/ts/types/ts/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.d.ts +0 -91
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCell.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.d.ts +0 -181
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Cells/FsCellsCollection.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.d.ts +0 -36
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/CellBuilder.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.d.ts +0 -23
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Expression.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.d.ts +0 -21
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/RowBuilder.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.d.ts +0 -157
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/DSL/Types.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.d.ts +0 -97
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsAddress.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.d.ts +0 -37
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsColumn.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.d.ts +0 -39
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsRow.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.d.ts +0 -36
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorkbook.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.d.ts +0 -88
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/FsWorksheet.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.d.ts +0 -10
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Cell.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.d.ts +0 -9
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Column.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.d.ts +0 -9
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Row.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.d.ts +0 -5
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Table.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.d.ts +0 -6
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Value.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.d.ts +0 -7
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Workbook.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.d.ts +0 -7
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Json/Worksheet.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.d.ts +0 -15
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRange.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.d.ts +0 -94
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeAddress.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.d.ts +0 -33
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeBase.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.d.ts +0 -31
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeColumn.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.d.ts +0 -17
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Ranges/FsRangeRow.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.d.ts +0 -71
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTable.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.d.ts +0 -89
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.6.3.1/Tables/FsTableField.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.d.ts +0 -10
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Cell.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.d.ts +0 -19
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/FsExtensions.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.d.ts +0 -15
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Json.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.d.ts +0 -6
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Table.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.d.ts +0 -5
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Workbook.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.d.ts +0 -7
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Worksheet.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.d.ts +0 -20
- package/dist/ts/types/ts/fable_modules/FsSpreadsheet.Js.6.3.1/Xlsx.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.d.ts +0 -105
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Decode.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.d.ts +0 -26
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Encode.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.d.ts +0 -99
- package/dist/ts/types/ts/fable_modules/Thoth.Json.Core.0.4.0/Types.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.d.ts +0 -7
- package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Decode.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.d.ts +0 -5
- package/dist/ts/types/ts/fable_modules/Thoth.Json.JavaScript.0.3.0/Encode.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.d.ts +0 -64
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Decode.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.d.ts +0 -24
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Encode.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.d.ts +0 -3
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Interop/JsInterop.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.d.ts +0 -12
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Persil.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.d.ts +0 -10
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Preprocessing.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.d.ts +0 -6
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Reader.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.d.ts +0 -10
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Regex.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.d.ts +0 -46
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/RegexActivePatterns.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.d.ts +0 -12
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/Writer.fs.d.ts.map +0 -1
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.d.ts +0 -70
- package/dist/ts/types/ts/fable_modules/YAMLicious.0.0.3/YAMLiciousTypes.fs.d.ts.map +0 -1
- /package/dist/ts/{types/ts → ts}/Core/URI.d.ts +0 -0
- /package/dist/ts/{types/ts → ts}/ROCrate/Helper.d.ts +0 -0
|
@@ -0,0 +1,1276 @@
|
|
|
1
|
+
import { join } from './String.js';
|
|
2
|
+
import { value, some, defaultArg } from './Option.js';
|
|
3
|
+
import { equals, structuralHash, compare, toIterator, getEnumerator, defaultOf, isArrayLike, disposeSafe } from './Util.js';
|
|
4
|
+
import { Record } from './Types.js';
|
|
5
|
+
import { record_type, option_type, class_type } from './Reflection.js';
|
|
6
|
+
import { SR_inputWasEmpty, SR_indexOutOfBounds, SR_keyNotFoundAlt, SR_differentLengths, SR_notEnoughElements, SR_inputMustBeNonNegative, SR_inputSequenceEmpty, SR_inputSequenceTooLong } from './Global.js';
|
|
7
|
+
import { fill, setItem, foldBack as foldBack$1, foldBack2 as foldBack2$1, item as item$1, scanBack as scanBack$1, tryFindBack as tryFindBack$1, tryFindIndexBack as tryFindIndexBack$1, permute as permute$1, map as map$1, chunkBySize as chunkBySize$1, pairwise as pairwise$1, windowed as windowed$1, splitInto as splitInto$1, transpose as transpose$1 } from './Array.js';
|
|
8
|
+
|
|
9
|
+
class FSharpList extends Record {
|
|
10
|
+
constructor(head, tail) {
|
|
11
|
+
super();
|
|
12
|
+
this.head = head;
|
|
13
|
+
this.tail = tail;
|
|
14
|
+
}
|
|
15
|
+
toString() {
|
|
16
|
+
const xs = this;
|
|
17
|
+
return ("[" + join("; ", xs)) + "]";
|
|
18
|
+
}
|
|
19
|
+
Equals(other) {
|
|
20
|
+
const xs = this;
|
|
21
|
+
if (xs === other) {
|
|
22
|
+
return true;
|
|
23
|
+
}
|
|
24
|
+
else {
|
|
25
|
+
const loop = (xs_1_mut, ys_1_mut) => {
|
|
26
|
+
loop: while (true) {
|
|
27
|
+
const xs_1 = xs_1_mut, ys_1 = ys_1_mut;
|
|
28
|
+
const matchValue = xs_1.tail;
|
|
29
|
+
const matchValue_1 = ys_1.tail;
|
|
30
|
+
if (matchValue != null) {
|
|
31
|
+
if (matchValue_1 != null) {
|
|
32
|
+
const xt = value(matchValue);
|
|
33
|
+
const yt = value(matchValue_1);
|
|
34
|
+
if (equals(xs_1.head, ys_1.head)) {
|
|
35
|
+
xs_1_mut = xt;
|
|
36
|
+
ys_1_mut = yt;
|
|
37
|
+
continue loop;
|
|
38
|
+
}
|
|
39
|
+
else {
|
|
40
|
+
return false;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
else {
|
|
44
|
+
return false;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
else if (matchValue_1 != null) {
|
|
48
|
+
return false;
|
|
49
|
+
}
|
|
50
|
+
else {
|
|
51
|
+
return true;
|
|
52
|
+
}
|
|
53
|
+
break;
|
|
54
|
+
}
|
|
55
|
+
};
|
|
56
|
+
return loop(xs, other);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
GetHashCode() {
|
|
60
|
+
const xs = this;
|
|
61
|
+
const loop = (i_mut, h_mut, xs_1_mut) => {
|
|
62
|
+
loop: while (true) {
|
|
63
|
+
const i = i_mut, h = h_mut, xs_1 = xs_1_mut;
|
|
64
|
+
const matchValue = xs_1.tail;
|
|
65
|
+
if (matchValue != null) {
|
|
66
|
+
const t = value(matchValue);
|
|
67
|
+
if (i > 18) {
|
|
68
|
+
return h | 0;
|
|
69
|
+
}
|
|
70
|
+
else {
|
|
71
|
+
i_mut = (i + 1);
|
|
72
|
+
h_mut = (((h << 1) + structuralHash(xs_1.head)) + (631 * i));
|
|
73
|
+
xs_1_mut = t;
|
|
74
|
+
continue loop;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
else {
|
|
78
|
+
return h | 0;
|
|
79
|
+
}
|
|
80
|
+
break;
|
|
81
|
+
}
|
|
82
|
+
};
|
|
83
|
+
return loop(0, 0, xs) | 0;
|
|
84
|
+
}
|
|
85
|
+
toJSON() {
|
|
86
|
+
const this$ = this;
|
|
87
|
+
return Array.from(this$);
|
|
88
|
+
}
|
|
89
|
+
CompareTo(other) {
|
|
90
|
+
const xs = this;
|
|
91
|
+
const loop = (xs_1_mut, ys_1_mut) => {
|
|
92
|
+
loop: while (true) {
|
|
93
|
+
const xs_1 = xs_1_mut, ys_1 = ys_1_mut;
|
|
94
|
+
const matchValue = xs_1.tail;
|
|
95
|
+
const matchValue_1 = ys_1.tail;
|
|
96
|
+
if (matchValue != null) {
|
|
97
|
+
if (matchValue_1 != null) {
|
|
98
|
+
const xt = value(matchValue);
|
|
99
|
+
const yt = value(matchValue_1);
|
|
100
|
+
const c = compare(xs_1.head, ys_1.head) | 0;
|
|
101
|
+
if (c === 0) {
|
|
102
|
+
xs_1_mut = xt;
|
|
103
|
+
ys_1_mut = yt;
|
|
104
|
+
continue loop;
|
|
105
|
+
}
|
|
106
|
+
else {
|
|
107
|
+
return c | 0;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
else {
|
|
111
|
+
return 1;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
else if (matchValue_1 != null) {
|
|
115
|
+
return -1;
|
|
116
|
+
}
|
|
117
|
+
else {
|
|
118
|
+
return 0;
|
|
119
|
+
}
|
|
120
|
+
break;
|
|
121
|
+
}
|
|
122
|
+
};
|
|
123
|
+
return loop(xs, other) | 0;
|
|
124
|
+
}
|
|
125
|
+
GetEnumerator() {
|
|
126
|
+
const xs = this;
|
|
127
|
+
return ListEnumerator$1_$ctor_3002E699(xs);
|
|
128
|
+
}
|
|
129
|
+
[Symbol.iterator]() {
|
|
130
|
+
return toIterator(getEnumerator(this));
|
|
131
|
+
}
|
|
132
|
+
"System.Collections.IEnumerable.GetEnumerator"() {
|
|
133
|
+
const xs = this;
|
|
134
|
+
return getEnumerator(xs);
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
function FSharpList_$reflection(gen0) {
|
|
138
|
+
return record_type("ListModule.FSharpList", [gen0], FSharpList, () => [["head", gen0], ["tail", option_type(FSharpList_$reflection(gen0))]]);
|
|
139
|
+
}
|
|
140
|
+
class ListEnumerator$1 {
|
|
141
|
+
constructor(xs) {
|
|
142
|
+
this.xs = xs;
|
|
143
|
+
this.it = this.xs;
|
|
144
|
+
this.current = defaultOf();
|
|
145
|
+
}
|
|
146
|
+
"System.Collections.Generic.IEnumerator`1.get_Current"() {
|
|
147
|
+
const _ = this;
|
|
148
|
+
return _.current;
|
|
149
|
+
}
|
|
150
|
+
"System.Collections.IEnumerator.get_Current"() {
|
|
151
|
+
const _ = this;
|
|
152
|
+
return _.current;
|
|
153
|
+
}
|
|
154
|
+
"System.Collections.IEnumerator.MoveNext"() {
|
|
155
|
+
const _ = this;
|
|
156
|
+
const matchValue = _.it.tail;
|
|
157
|
+
if (matchValue != null) {
|
|
158
|
+
const t = value(matchValue);
|
|
159
|
+
_.current = _.it.head;
|
|
160
|
+
_.it = t;
|
|
161
|
+
return true;
|
|
162
|
+
}
|
|
163
|
+
else {
|
|
164
|
+
return false;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
"System.Collections.IEnumerator.Reset"() {
|
|
168
|
+
const _ = this;
|
|
169
|
+
_.it = _.xs;
|
|
170
|
+
_.current = defaultOf();
|
|
171
|
+
}
|
|
172
|
+
Dispose() {
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
function ListEnumerator$1_$reflection(gen0) {
|
|
176
|
+
return class_type("ListModule.ListEnumerator`1", [gen0], ListEnumerator$1);
|
|
177
|
+
}
|
|
178
|
+
function ListEnumerator$1_$ctor_3002E699(xs) {
|
|
179
|
+
return new ListEnumerator$1(xs);
|
|
180
|
+
}
|
|
181
|
+
function FSharpList_get_Empty() {
|
|
182
|
+
return new FSharpList(defaultOf(), undefined);
|
|
183
|
+
}
|
|
184
|
+
function FSharpList_Cons_305B8EAC(x, xs) {
|
|
185
|
+
return new FSharpList(x, xs);
|
|
186
|
+
}
|
|
187
|
+
function FSharpList__get_IsEmpty(xs) {
|
|
188
|
+
return xs.tail == null;
|
|
189
|
+
}
|
|
190
|
+
function FSharpList__get_Length(xs) {
|
|
191
|
+
const loop = (i_mut, xs_1_mut) => {
|
|
192
|
+
loop: while (true) {
|
|
193
|
+
const i = i_mut, xs_1 = xs_1_mut;
|
|
194
|
+
const matchValue = xs_1.tail;
|
|
195
|
+
if (matchValue != null) {
|
|
196
|
+
i_mut = (i + 1);
|
|
197
|
+
xs_1_mut = value(matchValue);
|
|
198
|
+
continue loop;
|
|
199
|
+
}
|
|
200
|
+
else {
|
|
201
|
+
return i | 0;
|
|
202
|
+
}
|
|
203
|
+
break;
|
|
204
|
+
}
|
|
205
|
+
};
|
|
206
|
+
return loop(0, xs) | 0;
|
|
207
|
+
}
|
|
208
|
+
function FSharpList__get_Head(xs) {
|
|
209
|
+
const matchValue = xs.tail;
|
|
210
|
+
if (matchValue != null) {
|
|
211
|
+
return xs.head;
|
|
212
|
+
}
|
|
213
|
+
else {
|
|
214
|
+
throw new Error((SR_inputWasEmpty + "\\nParameter name: ") + "list");
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
function FSharpList__get_Tail(xs) {
|
|
218
|
+
const matchValue = xs.tail;
|
|
219
|
+
if (matchValue != null) {
|
|
220
|
+
return value(matchValue);
|
|
221
|
+
}
|
|
222
|
+
else {
|
|
223
|
+
throw new Error((SR_inputWasEmpty + "\\nParameter name: ") + "list");
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
function FSharpList__get_Item_Z524259A4(xs, index) {
|
|
227
|
+
const loop = (i_mut, xs_1_mut) => {
|
|
228
|
+
loop: while (true) {
|
|
229
|
+
const i = i_mut, xs_1 = xs_1_mut;
|
|
230
|
+
const matchValue = xs_1.tail;
|
|
231
|
+
if (matchValue != null) {
|
|
232
|
+
if (i === index) {
|
|
233
|
+
return xs_1.head;
|
|
234
|
+
}
|
|
235
|
+
else {
|
|
236
|
+
i_mut = (i + 1);
|
|
237
|
+
xs_1_mut = value(matchValue);
|
|
238
|
+
continue loop;
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
else {
|
|
242
|
+
throw new Error((SR_indexOutOfBounds + "\\nParameter name: ") + "index");
|
|
243
|
+
}
|
|
244
|
+
break;
|
|
245
|
+
}
|
|
246
|
+
};
|
|
247
|
+
return loop(0, xs);
|
|
248
|
+
}
|
|
249
|
+
function indexNotFound() {
|
|
250
|
+
throw new Error(SR_keyNotFoundAlt);
|
|
251
|
+
}
|
|
252
|
+
function empty() {
|
|
253
|
+
return FSharpList_get_Empty();
|
|
254
|
+
}
|
|
255
|
+
function cons(x, xs) {
|
|
256
|
+
return FSharpList_Cons_305B8EAC(x, xs);
|
|
257
|
+
}
|
|
258
|
+
function singleton(x) {
|
|
259
|
+
return FSharpList_Cons_305B8EAC(x, FSharpList_get_Empty());
|
|
260
|
+
}
|
|
261
|
+
function isEmpty(xs) {
|
|
262
|
+
return FSharpList__get_IsEmpty(xs);
|
|
263
|
+
}
|
|
264
|
+
function length(xs) {
|
|
265
|
+
return FSharpList__get_Length(xs);
|
|
266
|
+
}
|
|
267
|
+
function head(xs) {
|
|
268
|
+
return FSharpList__get_Head(xs);
|
|
269
|
+
}
|
|
270
|
+
function tryHead(xs) {
|
|
271
|
+
if (FSharpList__get_IsEmpty(xs)) {
|
|
272
|
+
return undefined;
|
|
273
|
+
}
|
|
274
|
+
else {
|
|
275
|
+
return some(FSharpList__get_Head(xs));
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
function tail(xs) {
|
|
279
|
+
return FSharpList__get_Tail(xs);
|
|
280
|
+
}
|
|
281
|
+
function tryLast(xs_mut) {
|
|
282
|
+
tryLast: while (true) {
|
|
283
|
+
const xs = xs_mut;
|
|
284
|
+
if (FSharpList__get_IsEmpty(xs)) {
|
|
285
|
+
return undefined;
|
|
286
|
+
}
|
|
287
|
+
else {
|
|
288
|
+
const t = FSharpList__get_Tail(xs);
|
|
289
|
+
if (FSharpList__get_IsEmpty(t)) {
|
|
290
|
+
return some(FSharpList__get_Head(xs));
|
|
291
|
+
}
|
|
292
|
+
else {
|
|
293
|
+
xs_mut = t;
|
|
294
|
+
continue tryLast;
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
break;
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
function last(xs) {
|
|
301
|
+
const matchValue = tryLast(xs);
|
|
302
|
+
if (matchValue == null) {
|
|
303
|
+
throw new Error(SR_inputWasEmpty);
|
|
304
|
+
}
|
|
305
|
+
else {
|
|
306
|
+
return value(matchValue);
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
function compareWith(comparer, xs, ys) {
|
|
310
|
+
const loop = (xs_1_mut, ys_1_mut) => {
|
|
311
|
+
loop: while (true) {
|
|
312
|
+
const xs_1 = xs_1_mut, ys_1 = ys_1_mut;
|
|
313
|
+
const matchValue = FSharpList__get_IsEmpty(xs_1);
|
|
314
|
+
const matchValue_1 = FSharpList__get_IsEmpty(ys_1);
|
|
315
|
+
if (matchValue) {
|
|
316
|
+
if (matchValue_1) {
|
|
317
|
+
return 0;
|
|
318
|
+
}
|
|
319
|
+
else {
|
|
320
|
+
return -1;
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
else if (matchValue_1) {
|
|
324
|
+
return 1;
|
|
325
|
+
}
|
|
326
|
+
else {
|
|
327
|
+
const c = comparer(FSharpList__get_Head(xs_1), FSharpList__get_Head(ys_1)) | 0;
|
|
328
|
+
if (c === 0) {
|
|
329
|
+
xs_1_mut = FSharpList__get_Tail(xs_1);
|
|
330
|
+
ys_1_mut = FSharpList__get_Tail(ys_1);
|
|
331
|
+
continue loop;
|
|
332
|
+
}
|
|
333
|
+
else {
|
|
334
|
+
return c | 0;
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
break;
|
|
338
|
+
}
|
|
339
|
+
};
|
|
340
|
+
return loop(xs, ys) | 0;
|
|
341
|
+
}
|
|
342
|
+
function toArray(xs) {
|
|
343
|
+
const len = FSharpList__get_Length(xs) | 0;
|
|
344
|
+
const res = fill(new Array(len), 0, len, null);
|
|
345
|
+
const loop = (i_mut, xs_1_mut) => {
|
|
346
|
+
loop: while (true) {
|
|
347
|
+
const i = i_mut, xs_1 = xs_1_mut;
|
|
348
|
+
if (!FSharpList__get_IsEmpty(xs_1)) {
|
|
349
|
+
setItem(res, i, FSharpList__get_Head(xs_1));
|
|
350
|
+
i_mut = (i + 1);
|
|
351
|
+
xs_1_mut = FSharpList__get_Tail(xs_1);
|
|
352
|
+
continue loop;
|
|
353
|
+
}
|
|
354
|
+
break;
|
|
355
|
+
}
|
|
356
|
+
};
|
|
357
|
+
loop(0, xs);
|
|
358
|
+
return res;
|
|
359
|
+
}
|
|
360
|
+
function fold(folder, state, xs) {
|
|
361
|
+
let acc = state;
|
|
362
|
+
let xs_1 = xs;
|
|
363
|
+
while (!FSharpList__get_IsEmpty(xs_1)) {
|
|
364
|
+
acc = folder(acc, head(xs_1));
|
|
365
|
+
xs_1 = FSharpList__get_Tail(xs_1);
|
|
366
|
+
}
|
|
367
|
+
return acc;
|
|
368
|
+
}
|
|
369
|
+
function reverse(xs) {
|
|
370
|
+
return fold((acc, x) => FSharpList_Cons_305B8EAC(x, acc), FSharpList_get_Empty(), xs);
|
|
371
|
+
}
|
|
372
|
+
function foldBack(folder, xs, state) {
|
|
373
|
+
return foldBack$1(folder, toArray(xs), state);
|
|
374
|
+
}
|
|
375
|
+
function foldIndexed(folder, state, xs) {
|
|
376
|
+
const loop = (i_mut, acc_mut, xs_1_mut) => {
|
|
377
|
+
loop: while (true) {
|
|
378
|
+
const i = i_mut, acc = acc_mut, xs_1 = xs_1_mut;
|
|
379
|
+
if (FSharpList__get_IsEmpty(xs_1)) {
|
|
380
|
+
return acc;
|
|
381
|
+
}
|
|
382
|
+
else {
|
|
383
|
+
i_mut = (i + 1);
|
|
384
|
+
acc_mut = folder(i, acc, FSharpList__get_Head(xs_1));
|
|
385
|
+
xs_1_mut = FSharpList__get_Tail(xs_1);
|
|
386
|
+
continue loop;
|
|
387
|
+
}
|
|
388
|
+
break;
|
|
389
|
+
}
|
|
390
|
+
};
|
|
391
|
+
return loop(0, state, xs);
|
|
392
|
+
}
|
|
393
|
+
function fold2(folder, state, xs, ys) {
|
|
394
|
+
let acc = state;
|
|
395
|
+
let xs_1 = xs;
|
|
396
|
+
let ys_1 = ys;
|
|
397
|
+
while (!FSharpList__get_IsEmpty(xs_1) && !FSharpList__get_IsEmpty(ys_1)) {
|
|
398
|
+
acc = folder(acc, FSharpList__get_Head(xs_1), FSharpList__get_Head(ys_1));
|
|
399
|
+
xs_1 = FSharpList__get_Tail(xs_1);
|
|
400
|
+
ys_1 = FSharpList__get_Tail(ys_1);
|
|
401
|
+
}
|
|
402
|
+
return acc;
|
|
403
|
+
}
|
|
404
|
+
function foldBack2(folder, xs, ys, state) {
|
|
405
|
+
return foldBack2$1(folder, toArray(xs), toArray(ys), state);
|
|
406
|
+
}
|
|
407
|
+
function unfold(gen, state) {
|
|
408
|
+
const loop = (acc_mut, node_mut) => {
|
|
409
|
+
let t;
|
|
410
|
+
loop: while (true) {
|
|
411
|
+
const acc = acc_mut, node = node_mut;
|
|
412
|
+
const matchValue = gen(acc);
|
|
413
|
+
if (matchValue != null) {
|
|
414
|
+
acc_mut = value(matchValue)[1];
|
|
415
|
+
node_mut = ((t = (new FSharpList(value(matchValue)[0], undefined)), (node.tail = t, t)));
|
|
416
|
+
continue loop;
|
|
417
|
+
}
|
|
418
|
+
else {
|
|
419
|
+
return node;
|
|
420
|
+
}
|
|
421
|
+
break;
|
|
422
|
+
}
|
|
423
|
+
};
|
|
424
|
+
const root = FSharpList_get_Empty();
|
|
425
|
+
const node_1 = loop(state, root);
|
|
426
|
+
const t_2 = FSharpList_get_Empty();
|
|
427
|
+
node_1.tail = t_2;
|
|
428
|
+
return FSharpList__get_Tail(root);
|
|
429
|
+
}
|
|
430
|
+
function iterate(action, xs) {
|
|
431
|
+
fold((unitVar, x) => {
|
|
432
|
+
action(x);
|
|
433
|
+
}, undefined, xs);
|
|
434
|
+
}
|
|
435
|
+
function iterate2(action, xs, ys) {
|
|
436
|
+
fold2((unitVar, x, y) => {
|
|
437
|
+
action(x, y);
|
|
438
|
+
}, undefined, xs, ys);
|
|
439
|
+
}
|
|
440
|
+
function iterateIndexed(action, xs) {
|
|
441
|
+
fold((i, x) => {
|
|
442
|
+
action(i, x);
|
|
443
|
+
return (i + 1) | 0;
|
|
444
|
+
}, 0, xs);
|
|
445
|
+
}
|
|
446
|
+
function iterateIndexed2(action, xs, ys) {
|
|
447
|
+
fold2((i, x, y) => {
|
|
448
|
+
action(i, x, y);
|
|
449
|
+
return (i + 1) | 0;
|
|
450
|
+
}, 0, xs, ys);
|
|
451
|
+
}
|
|
452
|
+
function toSeq(xs) {
|
|
453
|
+
return xs;
|
|
454
|
+
}
|
|
455
|
+
function ofArrayWithTail(xs, tail_1) {
|
|
456
|
+
let res = tail_1;
|
|
457
|
+
for (let i = xs.length - 1; i >= 0; i--) {
|
|
458
|
+
res = FSharpList_Cons_305B8EAC(item$1(i, xs), res);
|
|
459
|
+
}
|
|
460
|
+
return res;
|
|
461
|
+
}
|
|
462
|
+
function ofArray(xs) {
|
|
463
|
+
return ofArrayWithTail(xs, FSharpList_get_Empty());
|
|
464
|
+
}
|
|
465
|
+
function ofSeq(xs) {
|
|
466
|
+
let xs_3, t;
|
|
467
|
+
if (isArrayLike(xs)) {
|
|
468
|
+
return ofArray(xs);
|
|
469
|
+
}
|
|
470
|
+
else if (xs instanceof FSharpList) {
|
|
471
|
+
return xs;
|
|
472
|
+
}
|
|
473
|
+
else {
|
|
474
|
+
const root = FSharpList_get_Empty();
|
|
475
|
+
let node = root;
|
|
476
|
+
const enumerator = getEnumerator(xs);
|
|
477
|
+
try {
|
|
478
|
+
while (enumerator["System.Collections.IEnumerator.MoveNext"]()) {
|
|
479
|
+
const x = enumerator["System.Collections.Generic.IEnumerator`1.get_Current"]();
|
|
480
|
+
node = ((xs_3 = node, (t = (new FSharpList(x, undefined)), (xs_3.tail = t, t))));
|
|
481
|
+
}
|
|
482
|
+
}
|
|
483
|
+
finally {
|
|
484
|
+
disposeSafe(enumerator);
|
|
485
|
+
}
|
|
486
|
+
const xs_5 = node;
|
|
487
|
+
const t_2 = FSharpList_get_Empty();
|
|
488
|
+
xs_5.tail = t_2;
|
|
489
|
+
return FSharpList__get_Tail(root);
|
|
490
|
+
}
|
|
491
|
+
}
|
|
492
|
+
function concat(lists) {
|
|
493
|
+
const root = FSharpList_get_Empty();
|
|
494
|
+
let node = root;
|
|
495
|
+
const action = (xs) => {
|
|
496
|
+
node = fold((acc, x) => {
|
|
497
|
+
const t = new FSharpList(x, undefined);
|
|
498
|
+
acc.tail = t;
|
|
499
|
+
return t;
|
|
500
|
+
}, node, xs);
|
|
501
|
+
};
|
|
502
|
+
if (isArrayLike(lists)) {
|
|
503
|
+
const xs_3 = lists;
|
|
504
|
+
xs_3.forEach(action);
|
|
505
|
+
}
|
|
506
|
+
else if (lists instanceof FSharpList) {
|
|
507
|
+
iterate(action, lists);
|
|
508
|
+
}
|
|
509
|
+
else {
|
|
510
|
+
const enumerator = getEnumerator(lists);
|
|
511
|
+
try {
|
|
512
|
+
while (enumerator["System.Collections.IEnumerator.MoveNext"]()) {
|
|
513
|
+
action(enumerator["System.Collections.Generic.IEnumerator`1.get_Current"]());
|
|
514
|
+
}
|
|
515
|
+
}
|
|
516
|
+
finally {
|
|
517
|
+
disposeSafe(enumerator);
|
|
518
|
+
}
|
|
519
|
+
}
|
|
520
|
+
const xs_6 = node;
|
|
521
|
+
const t_2 = FSharpList_get_Empty();
|
|
522
|
+
xs_6.tail = t_2;
|
|
523
|
+
return FSharpList__get_Tail(root);
|
|
524
|
+
}
|
|
525
|
+
function scan(folder, state, xs) {
|
|
526
|
+
let xs_4, t_2;
|
|
527
|
+
const root = FSharpList_get_Empty();
|
|
528
|
+
let node;
|
|
529
|
+
const t = new FSharpList(state, undefined);
|
|
530
|
+
root.tail = t;
|
|
531
|
+
node = t;
|
|
532
|
+
let acc = state;
|
|
533
|
+
let xs_3 = xs;
|
|
534
|
+
while (!FSharpList__get_IsEmpty(xs_3)) {
|
|
535
|
+
acc = folder(acc, FSharpList__get_Head(xs_3));
|
|
536
|
+
node = ((xs_4 = node, (t_2 = (new FSharpList(acc, undefined)), (xs_4.tail = t_2, t_2))));
|
|
537
|
+
xs_3 = FSharpList__get_Tail(xs_3);
|
|
538
|
+
}
|
|
539
|
+
const xs_6 = node;
|
|
540
|
+
const t_4 = FSharpList_get_Empty();
|
|
541
|
+
xs_6.tail = t_4;
|
|
542
|
+
return FSharpList__get_Tail(root);
|
|
543
|
+
}
|
|
544
|
+
function scanBack(folder, xs, state) {
|
|
545
|
+
return ofArray(scanBack$1(folder, toArray(xs), state));
|
|
546
|
+
}
|
|
547
|
+
function append(xs, ys) {
|
|
548
|
+
return fold((acc, x) => FSharpList_Cons_305B8EAC(x, acc), ys, reverse(xs));
|
|
549
|
+
}
|
|
550
|
+
function collect(mapping, xs) {
|
|
551
|
+
let xs_1, t;
|
|
552
|
+
const root = FSharpList_get_Empty();
|
|
553
|
+
let node = root;
|
|
554
|
+
let ys = xs;
|
|
555
|
+
while (!FSharpList__get_IsEmpty(ys)) {
|
|
556
|
+
let zs = mapping(FSharpList__get_Head(ys));
|
|
557
|
+
while (!FSharpList__get_IsEmpty(zs)) {
|
|
558
|
+
node = ((xs_1 = node, (t = (new FSharpList(FSharpList__get_Head(zs), undefined)), (xs_1.tail = t, t))));
|
|
559
|
+
zs = FSharpList__get_Tail(zs);
|
|
560
|
+
}
|
|
561
|
+
ys = FSharpList__get_Tail(ys);
|
|
562
|
+
}
|
|
563
|
+
const xs_3 = node;
|
|
564
|
+
const t_2 = FSharpList_get_Empty();
|
|
565
|
+
xs_3.tail = t_2;
|
|
566
|
+
return FSharpList__get_Tail(root);
|
|
567
|
+
}
|
|
568
|
+
function mapIndexed(mapping, xs) {
|
|
569
|
+
const root = FSharpList_get_Empty();
|
|
570
|
+
const node = foldIndexed((i, acc, x) => {
|
|
571
|
+
const t = new FSharpList(mapping(i, x), undefined);
|
|
572
|
+
acc.tail = t;
|
|
573
|
+
return t;
|
|
574
|
+
}, root, xs);
|
|
575
|
+
const t_2 = FSharpList_get_Empty();
|
|
576
|
+
node.tail = t_2;
|
|
577
|
+
return FSharpList__get_Tail(root);
|
|
578
|
+
}
|
|
579
|
+
function map(mapping, xs) {
|
|
580
|
+
const root = FSharpList_get_Empty();
|
|
581
|
+
const node = fold((acc, x) => {
|
|
582
|
+
const t = new FSharpList(mapping(x), undefined);
|
|
583
|
+
acc.tail = t;
|
|
584
|
+
return t;
|
|
585
|
+
}, root, xs);
|
|
586
|
+
const t_2 = FSharpList_get_Empty();
|
|
587
|
+
node.tail = t_2;
|
|
588
|
+
return FSharpList__get_Tail(root);
|
|
589
|
+
}
|
|
590
|
+
function indexed(xs) {
|
|
591
|
+
return mapIndexed((i, x) => [i, x], xs);
|
|
592
|
+
}
|
|
593
|
+
function map2(mapping, xs, ys) {
|
|
594
|
+
const root = FSharpList_get_Empty();
|
|
595
|
+
const node = fold2((acc, x, y) => {
|
|
596
|
+
const t = new FSharpList(mapping(x, y), undefined);
|
|
597
|
+
acc.tail = t;
|
|
598
|
+
return t;
|
|
599
|
+
}, root, xs, ys);
|
|
600
|
+
const t_2 = FSharpList_get_Empty();
|
|
601
|
+
node.tail = t_2;
|
|
602
|
+
return FSharpList__get_Tail(root);
|
|
603
|
+
}
|
|
604
|
+
function mapIndexed2(mapping, xs, ys) {
|
|
605
|
+
const loop = (i_mut, acc_mut, xs_1_mut, ys_1_mut) => {
|
|
606
|
+
let t;
|
|
607
|
+
loop: while (true) {
|
|
608
|
+
const i = i_mut, acc = acc_mut, xs_1 = xs_1_mut, ys_1 = ys_1_mut;
|
|
609
|
+
if (FSharpList__get_IsEmpty(xs_1) ? true : FSharpList__get_IsEmpty(ys_1)) {
|
|
610
|
+
return acc;
|
|
611
|
+
}
|
|
612
|
+
else {
|
|
613
|
+
i_mut = (i + 1);
|
|
614
|
+
acc_mut = ((t = (new FSharpList(mapping(i, FSharpList__get_Head(xs_1), FSharpList__get_Head(ys_1)), undefined)), (acc.tail = t, t)));
|
|
615
|
+
xs_1_mut = FSharpList__get_Tail(xs_1);
|
|
616
|
+
ys_1_mut = FSharpList__get_Tail(ys_1);
|
|
617
|
+
continue loop;
|
|
618
|
+
}
|
|
619
|
+
break;
|
|
620
|
+
}
|
|
621
|
+
};
|
|
622
|
+
const root = FSharpList_get_Empty();
|
|
623
|
+
const node_1 = loop(0, root, xs, ys);
|
|
624
|
+
const t_2 = FSharpList_get_Empty();
|
|
625
|
+
node_1.tail = t_2;
|
|
626
|
+
return FSharpList__get_Tail(root);
|
|
627
|
+
}
|
|
628
|
+
function map3(mapping, xs, ys, zs) {
|
|
629
|
+
const loop = (acc_mut, xs_1_mut, ys_1_mut, zs_1_mut) => {
|
|
630
|
+
let t;
|
|
631
|
+
loop: while (true) {
|
|
632
|
+
const acc = acc_mut, xs_1 = xs_1_mut, ys_1 = ys_1_mut, zs_1 = zs_1_mut;
|
|
633
|
+
if ((FSharpList__get_IsEmpty(xs_1) ? true : FSharpList__get_IsEmpty(ys_1)) ? true : FSharpList__get_IsEmpty(zs_1)) {
|
|
634
|
+
return acc;
|
|
635
|
+
}
|
|
636
|
+
else {
|
|
637
|
+
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)));
|
|
638
|
+
xs_1_mut = FSharpList__get_Tail(xs_1);
|
|
639
|
+
ys_1_mut = FSharpList__get_Tail(ys_1);
|
|
640
|
+
zs_1_mut = FSharpList__get_Tail(zs_1);
|
|
641
|
+
continue loop;
|
|
642
|
+
}
|
|
643
|
+
break;
|
|
644
|
+
}
|
|
645
|
+
};
|
|
646
|
+
const root = FSharpList_get_Empty();
|
|
647
|
+
const node_1 = loop(root, xs, ys, zs);
|
|
648
|
+
const t_2 = FSharpList_get_Empty();
|
|
649
|
+
node_1.tail = t_2;
|
|
650
|
+
return FSharpList__get_Tail(root);
|
|
651
|
+
}
|
|
652
|
+
function mapFold(mapping, state, xs) {
|
|
653
|
+
const root = FSharpList_get_Empty();
|
|
654
|
+
const patternInput_1 = fold((tupledArg, x) => {
|
|
655
|
+
let t;
|
|
656
|
+
const patternInput = mapping(tupledArg[1], x);
|
|
657
|
+
return [(t = (new FSharpList(patternInput[0], undefined)), (tupledArg[0].tail = t, t)), patternInput[1]];
|
|
658
|
+
}, [root, state], xs);
|
|
659
|
+
const t_2 = FSharpList_get_Empty();
|
|
660
|
+
patternInput_1[0].tail = t_2;
|
|
661
|
+
return [FSharpList__get_Tail(root), patternInput_1[1]];
|
|
662
|
+
}
|
|
663
|
+
function mapFoldBack(mapping, xs, state) {
|
|
664
|
+
return mapFold((acc, x) => mapping(x, acc), state, reverse(xs));
|
|
665
|
+
}
|
|
666
|
+
function tryPick(f, xs) {
|
|
667
|
+
const loop = (xs_1_mut) => {
|
|
668
|
+
loop: while (true) {
|
|
669
|
+
const xs_1 = xs_1_mut;
|
|
670
|
+
if (FSharpList__get_IsEmpty(xs_1)) {
|
|
671
|
+
return undefined;
|
|
672
|
+
}
|
|
673
|
+
else {
|
|
674
|
+
const matchValue = f(FSharpList__get_Head(xs_1));
|
|
675
|
+
if (matchValue == null) {
|
|
676
|
+
xs_1_mut = FSharpList__get_Tail(xs_1);
|
|
677
|
+
continue loop;
|
|
678
|
+
}
|
|
679
|
+
else {
|
|
680
|
+
return matchValue;
|
|
681
|
+
}
|
|
682
|
+
}
|
|
683
|
+
break;
|
|
684
|
+
}
|
|
685
|
+
};
|
|
686
|
+
return loop(xs);
|
|
687
|
+
}
|
|
688
|
+
function pick(f, xs) {
|
|
689
|
+
const matchValue = tryPick(f, xs);
|
|
690
|
+
if (matchValue == null) {
|
|
691
|
+
return indexNotFound();
|
|
692
|
+
}
|
|
693
|
+
else {
|
|
694
|
+
return value(matchValue);
|
|
695
|
+
}
|
|
696
|
+
}
|
|
697
|
+
function tryFind(f, xs) {
|
|
698
|
+
return tryPick((x) => (f(x) ? some(x) : undefined), xs);
|
|
699
|
+
}
|
|
700
|
+
function find(f, xs) {
|
|
701
|
+
const matchValue = tryFind(f, xs);
|
|
702
|
+
if (matchValue == null) {
|
|
703
|
+
return indexNotFound();
|
|
704
|
+
}
|
|
705
|
+
else {
|
|
706
|
+
return value(matchValue);
|
|
707
|
+
}
|
|
708
|
+
}
|
|
709
|
+
function tryFindBack(f, xs) {
|
|
710
|
+
return tryFindBack$1(f, toArray(xs));
|
|
711
|
+
}
|
|
712
|
+
function findBack(f, xs) {
|
|
713
|
+
const matchValue = tryFindBack(f, xs);
|
|
714
|
+
if (matchValue == null) {
|
|
715
|
+
return indexNotFound();
|
|
716
|
+
}
|
|
717
|
+
else {
|
|
718
|
+
return value(matchValue);
|
|
719
|
+
}
|
|
720
|
+
}
|
|
721
|
+
function tryFindIndex(f, xs) {
|
|
722
|
+
const loop = (i_mut, xs_1_mut) => {
|
|
723
|
+
loop: while (true) {
|
|
724
|
+
const i = i_mut, xs_1 = xs_1_mut;
|
|
725
|
+
if (FSharpList__get_IsEmpty(xs_1)) {
|
|
726
|
+
return undefined;
|
|
727
|
+
}
|
|
728
|
+
else if (f(FSharpList__get_Head(xs_1))) {
|
|
729
|
+
return i;
|
|
730
|
+
}
|
|
731
|
+
else {
|
|
732
|
+
i_mut = (i + 1);
|
|
733
|
+
xs_1_mut = FSharpList__get_Tail(xs_1);
|
|
734
|
+
continue loop;
|
|
735
|
+
}
|
|
736
|
+
break;
|
|
737
|
+
}
|
|
738
|
+
};
|
|
739
|
+
return loop(0, xs);
|
|
740
|
+
}
|
|
741
|
+
function findIndex(f, xs) {
|
|
742
|
+
const matchValue = tryFindIndex(f, xs);
|
|
743
|
+
if (matchValue == null) {
|
|
744
|
+
indexNotFound();
|
|
745
|
+
return -1;
|
|
746
|
+
}
|
|
747
|
+
else {
|
|
748
|
+
return value(matchValue) | 0;
|
|
749
|
+
}
|
|
750
|
+
}
|
|
751
|
+
function tryFindIndexBack(f, xs) {
|
|
752
|
+
return tryFindIndexBack$1(f, toArray(xs));
|
|
753
|
+
}
|
|
754
|
+
function findIndexBack(f, xs) {
|
|
755
|
+
const matchValue = tryFindIndexBack(f, xs);
|
|
756
|
+
if (matchValue == null) {
|
|
757
|
+
indexNotFound();
|
|
758
|
+
return -1;
|
|
759
|
+
}
|
|
760
|
+
else {
|
|
761
|
+
return value(matchValue) | 0;
|
|
762
|
+
}
|
|
763
|
+
}
|
|
764
|
+
function tryItem(n, xs) {
|
|
765
|
+
const loop = (i_mut, xs_1_mut) => {
|
|
766
|
+
loop: while (true) {
|
|
767
|
+
const i = i_mut, xs_1 = xs_1_mut;
|
|
768
|
+
if (FSharpList__get_IsEmpty(xs_1)) {
|
|
769
|
+
return undefined;
|
|
770
|
+
}
|
|
771
|
+
else if (i === n) {
|
|
772
|
+
return some(FSharpList__get_Head(xs_1));
|
|
773
|
+
}
|
|
774
|
+
else {
|
|
775
|
+
i_mut = (i + 1);
|
|
776
|
+
xs_1_mut = FSharpList__get_Tail(xs_1);
|
|
777
|
+
continue loop;
|
|
778
|
+
}
|
|
779
|
+
break;
|
|
780
|
+
}
|
|
781
|
+
};
|
|
782
|
+
return loop(0, xs);
|
|
783
|
+
}
|
|
784
|
+
function item(n, xs) {
|
|
785
|
+
return FSharpList__get_Item_Z524259A4(xs, n);
|
|
786
|
+
}
|
|
787
|
+
function filter(f, xs) {
|
|
788
|
+
const root = FSharpList_get_Empty();
|
|
789
|
+
const node = fold((acc, x) => {
|
|
790
|
+
if (f(x)) {
|
|
791
|
+
const t = new FSharpList(x, undefined);
|
|
792
|
+
acc.tail = t;
|
|
793
|
+
return t;
|
|
794
|
+
}
|
|
795
|
+
else {
|
|
796
|
+
return acc;
|
|
797
|
+
}
|
|
798
|
+
}, root, xs);
|
|
799
|
+
const t_2 = FSharpList_get_Empty();
|
|
800
|
+
node.tail = t_2;
|
|
801
|
+
return FSharpList__get_Tail(root);
|
|
802
|
+
}
|
|
803
|
+
function partition(f, xs) {
|
|
804
|
+
const matchValue = FSharpList_get_Empty();
|
|
805
|
+
const root2 = FSharpList_get_Empty();
|
|
806
|
+
const root1 = matchValue;
|
|
807
|
+
const patternInput_1 = fold((tupledArg, x) => {
|
|
808
|
+
let t, t_2;
|
|
809
|
+
const lacc = tupledArg[0];
|
|
810
|
+
const racc = tupledArg[1];
|
|
811
|
+
if (f(x)) {
|
|
812
|
+
return [(t = (new FSharpList(x, undefined)), (lacc.tail = t, t)), racc];
|
|
813
|
+
}
|
|
814
|
+
else {
|
|
815
|
+
return [lacc, (t_2 = (new FSharpList(x, undefined)), (racc.tail = t_2, t_2))];
|
|
816
|
+
}
|
|
817
|
+
}, [root1, root2], xs);
|
|
818
|
+
const t_4 = FSharpList_get_Empty();
|
|
819
|
+
patternInput_1[0].tail = t_4;
|
|
820
|
+
const t_5 = FSharpList_get_Empty();
|
|
821
|
+
patternInput_1[1].tail = t_5;
|
|
822
|
+
return [FSharpList__get_Tail(root1), FSharpList__get_Tail(root2)];
|
|
823
|
+
}
|
|
824
|
+
function choose(f, xs) {
|
|
825
|
+
const root = FSharpList_get_Empty();
|
|
826
|
+
const node = fold((acc, x) => {
|
|
827
|
+
const matchValue = f(x);
|
|
828
|
+
if (matchValue == null) {
|
|
829
|
+
return acc;
|
|
830
|
+
}
|
|
831
|
+
else {
|
|
832
|
+
const t = new FSharpList(value(matchValue), undefined);
|
|
833
|
+
acc.tail = t;
|
|
834
|
+
return t;
|
|
835
|
+
}
|
|
836
|
+
}, root, xs);
|
|
837
|
+
const t_2 = FSharpList_get_Empty();
|
|
838
|
+
node.tail = t_2;
|
|
839
|
+
return FSharpList__get_Tail(root);
|
|
840
|
+
}
|
|
841
|
+
function contains(value, xs, eq) {
|
|
842
|
+
return tryFindIndex((v) => eq.Equals(value, v), xs) != null;
|
|
843
|
+
}
|
|
844
|
+
function initialize(n, f) {
|
|
845
|
+
let xs, t;
|
|
846
|
+
const root = FSharpList_get_Empty();
|
|
847
|
+
let node = root;
|
|
848
|
+
for (let i = 0; i <= (n - 1); i++) {
|
|
849
|
+
node = ((xs = node, (t = (new FSharpList(f(i), undefined)), (xs.tail = t, t))));
|
|
850
|
+
}
|
|
851
|
+
const xs_2 = node;
|
|
852
|
+
const t_2 = FSharpList_get_Empty();
|
|
853
|
+
xs_2.tail = t_2;
|
|
854
|
+
return FSharpList__get_Tail(root);
|
|
855
|
+
}
|
|
856
|
+
function replicate(n, x) {
|
|
857
|
+
return initialize(n, (_arg) => x);
|
|
858
|
+
}
|
|
859
|
+
function reduce(f, xs) {
|
|
860
|
+
if (FSharpList__get_IsEmpty(xs)) {
|
|
861
|
+
throw new Error(SR_inputWasEmpty);
|
|
862
|
+
}
|
|
863
|
+
else {
|
|
864
|
+
return fold(f, head(xs), tail(xs));
|
|
865
|
+
}
|
|
866
|
+
}
|
|
867
|
+
function reduceBack(f, xs) {
|
|
868
|
+
if (FSharpList__get_IsEmpty(xs)) {
|
|
869
|
+
throw new Error(SR_inputWasEmpty);
|
|
870
|
+
}
|
|
871
|
+
else {
|
|
872
|
+
return foldBack(f, tail(xs), head(xs));
|
|
873
|
+
}
|
|
874
|
+
}
|
|
875
|
+
function forAll(f, xs) {
|
|
876
|
+
return fold((acc, x) => (acc && f(x)), true, xs);
|
|
877
|
+
}
|
|
878
|
+
function forAll2(f, xs, ys) {
|
|
879
|
+
return fold2((acc, x, y) => (acc && f(x, y)), true, xs, ys);
|
|
880
|
+
}
|
|
881
|
+
function exists(f, xs) {
|
|
882
|
+
return tryFindIndex(f, xs) != null;
|
|
883
|
+
}
|
|
884
|
+
function exists2(f_mut, xs_mut, ys_mut) {
|
|
885
|
+
exists2: while (true) {
|
|
886
|
+
const f = f_mut, xs = xs_mut, ys = ys_mut;
|
|
887
|
+
const matchValue = FSharpList__get_IsEmpty(xs);
|
|
888
|
+
const matchValue_1 = FSharpList__get_IsEmpty(ys);
|
|
889
|
+
let matchResult;
|
|
890
|
+
if (matchValue) {
|
|
891
|
+
if (matchValue_1) {
|
|
892
|
+
matchResult = 0;
|
|
893
|
+
}
|
|
894
|
+
else {
|
|
895
|
+
matchResult = 2;
|
|
896
|
+
}
|
|
897
|
+
}
|
|
898
|
+
else if (matchValue_1) {
|
|
899
|
+
matchResult = 2;
|
|
900
|
+
}
|
|
901
|
+
else {
|
|
902
|
+
matchResult = 1;
|
|
903
|
+
}
|
|
904
|
+
switch (matchResult) {
|
|
905
|
+
case 0:
|
|
906
|
+
return false;
|
|
907
|
+
case 1:
|
|
908
|
+
if (f(FSharpList__get_Head(xs), FSharpList__get_Head(ys))) {
|
|
909
|
+
return true;
|
|
910
|
+
}
|
|
911
|
+
else {
|
|
912
|
+
f_mut = f;
|
|
913
|
+
xs_mut = FSharpList__get_Tail(xs);
|
|
914
|
+
ys_mut = FSharpList__get_Tail(ys);
|
|
915
|
+
continue exists2;
|
|
916
|
+
}
|
|
917
|
+
default:
|
|
918
|
+
throw new Error((SR_differentLengths + "\\nParameter name: ") + "list2");
|
|
919
|
+
}
|
|
920
|
+
break;
|
|
921
|
+
}
|
|
922
|
+
}
|
|
923
|
+
function unzip(xs) {
|
|
924
|
+
return foldBack((tupledArg, tupledArg_1) => [FSharpList_Cons_305B8EAC(tupledArg[0], tupledArg_1[0]), FSharpList_Cons_305B8EAC(tupledArg[1], tupledArg_1[1])], xs, [FSharpList_get_Empty(), FSharpList_get_Empty()]);
|
|
925
|
+
}
|
|
926
|
+
function unzip3(xs) {
|
|
927
|
+
return foldBack((tupledArg, tupledArg_1) => [FSharpList_Cons_305B8EAC(tupledArg[0], tupledArg_1[0]), FSharpList_Cons_305B8EAC(tupledArg[1], tupledArg_1[1]), FSharpList_Cons_305B8EAC(tupledArg[2], tupledArg_1[2])], xs, [FSharpList_get_Empty(), FSharpList_get_Empty(), FSharpList_get_Empty()]);
|
|
928
|
+
}
|
|
929
|
+
function zip(xs, ys) {
|
|
930
|
+
return map2((x, y) => [x, y], xs, ys);
|
|
931
|
+
}
|
|
932
|
+
function zip3(xs, ys, zs) {
|
|
933
|
+
return map3((x, y, z) => [x, y, z], xs, ys, zs);
|
|
934
|
+
}
|
|
935
|
+
function sortWith(comparer, xs) {
|
|
936
|
+
const arr = toArray(xs);
|
|
937
|
+
arr.sort(comparer);
|
|
938
|
+
return ofArray(arr);
|
|
939
|
+
}
|
|
940
|
+
function sort(xs, comparer) {
|
|
941
|
+
return sortWith((x, y) => comparer.Compare(x, y), xs);
|
|
942
|
+
}
|
|
943
|
+
function sortBy(projection, xs, comparer) {
|
|
944
|
+
return sortWith((x, y) => comparer.Compare(projection(x), projection(y)), xs);
|
|
945
|
+
}
|
|
946
|
+
function sortDescending(xs, comparer) {
|
|
947
|
+
return sortWith((x, y) => (comparer.Compare(x, y) * -1), xs);
|
|
948
|
+
}
|
|
949
|
+
function sortByDescending(projection, xs, comparer) {
|
|
950
|
+
return sortWith((x, y) => (comparer.Compare(projection(x), projection(y)) * -1), xs);
|
|
951
|
+
}
|
|
952
|
+
function sum(xs, adder) {
|
|
953
|
+
return fold((acc, x) => adder.Add(acc, x), adder.GetZero(), xs);
|
|
954
|
+
}
|
|
955
|
+
function sumBy(f, xs, adder) {
|
|
956
|
+
return fold((acc, x) => adder.Add(acc, f(x)), adder.GetZero(), xs);
|
|
957
|
+
}
|
|
958
|
+
function maxBy(projection, xs, comparer) {
|
|
959
|
+
return reduce((x, y) => ((comparer.Compare(projection(y), projection(x)) > 0) ? y : x), xs);
|
|
960
|
+
}
|
|
961
|
+
function max(xs, comparer) {
|
|
962
|
+
return reduce((x, y) => ((comparer.Compare(y, x) > 0) ? y : x), xs);
|
|
963
|
+
}
|
|
964
|
+
function minBy(projection, xs, comparer) {
|
|
965
|
+
return reduce((x, y) => ((comparer.Compare(projection(y), projection(x)) > 0) ? x : y), xs);
|
|
966
|
+
}
|
|
967
|
+
function min(xs, comparer) {
|
|
968
|
+
return reduce((x, y) => ((comparer.Compare(y, x) > 0) ? x : y), xs);
|
|
969
|
+
}
|
|
970
|
+
function average(xs, averager) {
|
|
971
|
+
let count = 0;
|
|
972
|
+
const total = fold((acc, x) => {
|
|
973
|
+
count = ((count + 1) | 0);
|
|
974
|
+
return averager.Add(acc, x);
|
|
975
|
+
}, averager.GetZero(), xs);
|
|
976
|
+
return averager.DivideByInt(total, count);
|
|
977
|
+
}
|
|
978
|
+
function averageBy(f, xs, averager) {
|
|
979
|
+
let count = 0;
|
|
980
|
+
const total = fold((acc, x) => {
|
|
981
|
+
count = ((count + 1) | 0);
|
|
982
|
+
return averager.Add(acc, f(x));
|
|
983
|
+
}, averager.GetZero(), xs);
|
|
984
|
+
return averager.DivideByInt(total, count);
|
|
985
|
+
}
|
|
986
|
+
function permute(f, xs) {
|
|
987
|
+
return ofArray(permute$1(f, toArray(xs)));
|
|
988
|
+
}
|
|
989
|
+
function chunkBySize(chunkSize, xs) {
|
|
990
|
+
return ofArray(map$1(ofArray, chunkBySize$1(chunkSize, toArray(xs))));
|
|
991
|
+
}
|
|
992
|
+
function allPairs(xs, ys) {
|
|
993
|
+
const root = FSharpList_get_Empty();
|
|
994
|
+
let node = root;
|
|
995
|
+
iterate((x) => {
|
|
996
|
+
iterate((y) => {
|
|
997
|
+
let xs_1, t;
|
|
998
|
+
node = ((xs_1 = node, (t = (new FSharpList([x, y], undefined)), (xs_1.tail = t, t))));
|
|
999
|
+
}, ys);
|
|
1000
|
+
}, xs);
|
|
1001
|
+
const xs_3 = node;
|
|
1002
|
+
const t_2 = FSharpList_get_Empty();
|
|
1003
|
+
xs_3.tail = t_2;
|
|
1004
|
+
return FSharpList__get_Tail(root);
|
|
1005
|
+
}
|
|
1006
|
+
function skip(count_mut, xs_mut) {
|
|
1007
|
+
skip: while (true) {
|
|
1008
|
+
const count = count_mut, xs = xs_mut;
|
|
1009
|
+
if (count <= 0) {
|
|
1010
|
+
return xs;
|
|
1011
|
+
}
|
|
1012
|
+
else if (FSharpList__get_IsEmpty(xs)) {
|
|
1013
|
+
throw new Error((SR_notEnoughElements + "\\nParameter name: ") + "list");
|
|
1014
|
+
}
|
|
1015
|
+
else {
|
|
1016
|
+
count_mut = (count - 1);
|
|
1017
|
+
xs_mut = FSharpList__get_Tail(xs);
|
|
1018
|
+
continue skip;
|
|
1019
|
+
}
|
|
1020
|
+
break;
|
|
1021
|
+
}
|
|
1022
|
+
}
|
|
1023
|
+
function skipWhile(predicate_mut, xs_mut) {
|
|
1024
|
+
skipWhile: while (true) {
|
|
1025
|
+
const predicate = predicate_mut, xs = xs_mut;
|
|
1026
|
+
if (FSharpList__get_IsEmpty(xs)) {
|
|
1027
|
+
return xs;
|
|
1028
|
+
}
|
|
1029
|
+
else if (!predicate(FSharpList__get_Head(xs))) {
|
|
1030
|
+
return xs;
|
|
1031
|
+
}
|
|
1032
|
+
else {
|
|
1033
|
+
predicate_mut = predicate;
|
|
1034
|
+
xs_mut = FSharpList__get_Tail(xs);
|
|
1035
|
+
continue skipWhile;
|
|
1036
|
+
}
|
|
1037
|
+
break;
|
|
1038
|
+
}
|
|
1039
|
+
}
|
|
1040
|
+
function take(count, xs) {
|
|
1041
|
+
if (count < 0) {
|
|
1042
|
+
throw new Error((SR_inputMustBeNonNegative + "\\nParameter name: ") + "count");
|
|
1043
|
+
}
|
|
1044
|
+
const loop = (i_mut, acc_mut, xs_1_mut) => {
|
|
1045
|
+
let t;
|
|
1046
|
+
loop: while (true) {
|
|
1047
|
+
const i = i_mut, acc = acc_mut, xs_1 = xs_1_mut;
|
|
1048
|
+
if (i <= 0) {
|
|
1049
|
+
return acc;
|
|
1050
|
+
}
|
|
1051
|
+
else if (FSharpList__get_IsEmpty(xs_1)) {
|
|
1052
|
+
throw new Error((SR_notEnoughElements + "\\nParameter name: ") + "list");
|
|
1053
|
+
}
|
|
1054
|
+
else {
|
|
1055
|
+
i_mut = (i - 1);
|
|
1056
|
+
acc_mut = ((t = (new FSharpList(FSharpList__get_Head(xs_1), undefined)), (acc.tail = t, t)));
|
|
1057
|
+
xs_1_mut = FSharpList__get_Tail(xs_1);
|
|
1058
|
+
continue loop;
|
|
1059
|
+
}
|
|
1060
|
+
break;
|
|
1061
|
+
}
|
|
1062
|
+
};
|
|
1063
|
+
const root = FSharpList_get_Empty();
|
|
1064
|
+
const node = loop(count, root, xs);
|
|
1065
|
+
const t_2 = FSharpList_get_Empty();
|
|
1066
|
+
node.tail = t_2;
|
|
1067
|
+
return FSharpList__get_Tail(root);
|
|
1068
|
+
}
|
|
1069
|
+
function takeWhile(predicate, xs) {
|
|
1070
|
+
const loop = (acc_mut, xs_1_mut) => {
|
|
1071
|
+
let t;
|
|
1072
|
+
loop: while (true) {
|
|
1073
|
+
const acc = acc_mut, xs_1 = xs_1_mut;
|
|
1074
|
+
if (FSharpList__get_IsEmpty(xs_1)) {
|
|
1075
|
+
return acc;
|
|
1076
|
+
}
|
|
1077
|
+
else if (!predicate(FSharpList__get_Head(xs_1))) {
|
|
1078
|
+
return acc;
|
|
1079
|
+
}
|
|
1080
|
+
else {
|
|
1081
|
+
acc_mut = ((t = (new FSharpList(FSharpList__get_Head(xs_1), undefined)), (acc.tail = t, t)));
|
|
1082
|
+
xs_1_mut = FSharpList__get_Tail(xs_1);
|
|
1083
|
+
continue loop;
|
|
1084
|
+
}
|
|
1085
|
+
break;
|
|
1086
|
+
}
|
|
1087
|
+
};
|
|
1088
|
+
const root = FSharpList_get_Empty();
|
|
1089
|
+
const node = loop(root, xs);
|
|
1090
|
+
const t_2 = FSharpList_get_Empty();
|
|
1091
|
+
node.tail = t_2;
|
|
1092
|
+
return FSharpList__get_Tail(root);
|
|
1093
|
+
}
|
|
1094
|
+
function truncate(count, xs) {
|
|
1095
|
+
const loop = (i_mut, acc_mut, xs_1_mut) => {
|
|
1096
|
+
let t;
|
|
1097
|
+
loop: while (true) {
|
|
1098
|
+
const i = i_mut, acc = acc_mut, xs_1 = xs_1_mut;
|
|
1099
|
+
if (i <= 0) {
|
|
1100
|
+
return acc;
|
|
1101
|
+
}
|
|
1102
|
+
else if (FSharpList__get_IsEmpty(xs_1)) {
|
|
1103
|
+
return acc;
|
|
1104
|
+
}
|
|
1105
|
+
else {
|
|
1106
|
+
i_mut = (i - 1);
|
|
1107
|
+
acc_mut = ((t = (new FSharpList(FSharpList__get_Head(xs_1), undefined)), (acc.tail = t, t)));
|
|
1108
|
+
xs_1_mut = FSharpList__get_Tail(xs_1);
|
|
1109
|
+
continue loop;
|
|
1110
|
+
}
|
|
1111
|
+
break;
|
|
1112
|
+
}
|
|
1113
|
+
};
|
|
1114
|
+
const root = FSharpList_get_Empty();
|
|
1115
|
+
const node = loop(count, root, xs);
|
|
1116
|
+
const t_2 = FSharpList_get_Empty();
|
|
1117
|
+
node.tail = t_2;
|
|
1118
|
+
return FSharpList__get_Tail(root);
|
|
1119
|
+
}
|
|
1120
|
+
function getSlice(startIndex, endIndex, xs) {
|
|
1121
|
+
const len = length(xs) | 0;
|
|
1122
|
+
let startIndex_1;
|
|
1123
|
+
const index = defaultArg(startIndex, 0) | 0;
|
|
1124
|
+
startIndex_1 = ((index < 0) ? 0 : index);
|
|
1125
|
+
let endIndex_1;
|
|
1126
|
+
const index_1 = defaultArg(endIndex, len - 1) | 0;
|
|
1127
|
+
endIndex_1 = ((index_1 >= len) ? (len - 1) : index_1);
|
|
1128
|
+
if (endIndex_1 < startIndex_1) {
|
|
1129
|
+
return FSharpList_get_Empty();
|
|
1130
|
+
}
|
|
1131
|
+
else {
|
|
1132
|
+
return take((endIndex_1 - startIndex_1) + 1, skip(startIndex_1, xs));
|
|
1133
|
+
}
|
|
1134
|
+
}
|
|
1135
|
+
function splitAt(index, xs) {
|
|
1136
|
+
if (index < 0) {
|
|
1137
|
+
throw new Error((SR_inputMustBeNonNegative + "\\nParameter name: ") + "index");
|
|
1138
|
+
}
|
|
1139
|
+
if (index > FSharpList__get_Length(xs)) {
|
|
1140
|
+
throw new Error((SR_notEnoughElements + "\\nParameter name: ") + "index");
|
|
1141
|
+
}
|
|
1142
|
+
return [take(index, xs), skip(index, xs)];
|
|
1143
|
+
}
|
|
1144
|
+
function exactlyOne(xs) {
|
|
1145
|
+
if (FSharpList__get_IsEmpty(xs)) {
|
|
1146
|
+
throw new Error((SR_inputSequenceEmpty + "\\nParameter name: ") + "list");
|
|
1147
|
+
}
|
|
1148
|
+
else if (FSharpList__get_IsEmpty(FSharpList__get_Tail(xs))) {
|
|
1149
|
+
return FSharpList__get_Head(xs);
|
|
1150
|
+
}
|
|
1151
|
+
else {
|
|
1152
|
+
throw new Error((SR_inputSequenceTooLong + "\\nParameter name: ") + "list");
|
|
1153
|
+
}
|
|
1154
|
+
}
|
|
1155
|
+
function tryExactlyOne(xs) {
|
|
1156
|
+
if (!FSharpList__get_IsEmpty(xs) && FSharpList__get_IsEmpty(FSharpList__get_Tail(xs))) {
|
|
1157
|
+
return some(FSharpList__get_Head(xs));
|
|
1158
|
+
}
|
|
1159
|
+
else {
|
|
1160
|
+
return undefined;
|
|
1161
|
+
}
|
|
1162
|
+
}
|
|
1163
|
+
function where(predicate, xs) {
|
|
1164
|
+
return filter(predicate, xs);
|
|
1165
|
+
}
|
|
1166
|
+
function pairwise(xs) {
|
|
1167
|
+
return ofArray(pairwise$1(toArray(xs)));
|
|
1168
|
+
}
|
|
1169
|
+
function windowed(windowSize, xs) {
|
|
1170
|
+
return ofArray(map$1(ofArray, windowed$1(windowSize, toArray(xs))));
|
|
1171
|
+
}
|
|
1172
|
+
function splitInto(chunks, xs) {
|
|
1173
|
+
return ofArray(map$1(ofArray, splitInto$1(chunks, toArray(xs))));
|
|
1174
|
+
}
|
|
1175
|
+
function transpose(lists) {
|
|
1176
|
+
return ofArray(map$1(ofArray, transpose$1(map$1(toArray, Array.from(lists)))));
|
|
1177
|
+
}
|
|
1178
|
+
function insertAt(index, y, xs) {
|
|
1179
|
+
let i = -1;
|
|
1180
|
+
let isDone = false;
|
|
1181
|
+
const result = fold((acc, x) => {
|
|
1182
|
+
i = ((i + 1) | 0);
|
|
1183
|
+
if (i === index) {
|
|
1184
|
+
isDone = true;
|
|
1185
|
+
return FSharpList_Cons_305B8EAC(x, FSharpList_Cons_305B8EAC(y, acc));
|
|
1186
|
+
}
|
|
1187
|
+
else {
|
|
1188
|
+
return FSharpList_Cons_305B8EAC(x, acc);
|
|
1189
|
+
}
|
|
1190
|
+
}, FSharpList_get_Empty(), xs);
|
|
1191
|
+
return reverse(isDone ? result : (((i + 1) === index) ? FSharpList_Cons_305B8EAC(y, result) : (() => {
|
|
1192
|
+
throw new Error((SR_indexOutOfBounds + "\\nParameter name: ") + "index");
|
|
1193
|
+
})()));
|
|
1194
|
+
}
|
|
1195
|
+
function insertManyAt(index, ys, xs) {
|
|
1196
|
+
let i = -1;
|
|
1197
|
+
let isDone = false;
|
|
1198
|
+
const ys_1 = ofSeq(ys);
|
|
1199
|
+
const result = fold((acc, x) => {
|
|
1200
|
+
i = ((i + 1) | 0);
|
|
1201
|
+
if (i === index) {
|
|
1202
|
+
isDone = true;
|
|
1203
|
+
return FSharpList_Cons_305B8EAC(x, append(ys_1, acc));
|
|
1204
|
+
}
|
|
1205
|
+
else {
|
|
1206
|
+
return FSharpList_Cons_305B8EAC(x, acc);
|
|
1207
|
+
}
|
|
1208
|
+
}, FSharpList_get_Empty(), xs);
|
|
1209
|
+
return reverse(isDone ? result : (((i + 1) === index) ? append(ys_1, result) : (() => {
|
|
1210
|
+
throw new Error((SR_indexOutOfBounds + "\\nParameter name: ") + "index");
|
|
1211
|
+
})()));
|
|
1212
|
+
}
|
|
1213
|
+
function removeAt(index, xs) {
|
|
1214
|
+
let i = -1;
|
|
1215
|
+
let isDone = false;
|
|
1216
|
+
const ys = filter((_arg) => {
|
|
1217
|
+
i = ((i + 1) | 0);
|
|
1218
|
+
if (i === index) {
|
|
1219
|
+
isDone = true;
|
|
1220
|
+
return false;
|
|
1221
|
+
}
|
|
1222
|
+
else {
|
|
1223
|
+
return true;
|
|
1224
|
+
}
|
|
1225
|
+
}, xs);
|
|
1226
|
+
if (!isDone) {
|
|
1227
|
+
throw new Error((SR_indexOutOfBounds + "\\nParameter name: ") + "index");
|
|
1228
|
+
}
|
|
1229
|
+
return ys;
|
|
1230
|
+
}
|
|
1231
|
+
function removeManyAt(index, count, xs) {
|
|
1232
|
+
let i = -1;
|
|
1233
|
+
let status = -1;
|
|
1234
|
+
const ys = filter((_arg) => {
|
|
1235
|
+
i = ((i + 1) | 0);
|
|
1236
|
+
if (i === index) {
|
|
1237
|
+
status = 0;
|
|
1238
|
+
return false;
|
|
1239
|
+
}
|
|
1240
|
+
else if (i > index) {
|
|
1241
|
+
if (i < (index + count)) {
|
|
1242
|
+
return false;
|
|
1243
|
+
}
|
|
1244
|
+
else {
|
|
1245
|
+
status = 1;
|
|
1246
|
+
return true;
|
|
1247
|
+
}
|
|
1248
|
+
}
|
|
1249
|
+
else {
|
|
1250
|
+
return true;
|
|
1251
|
+
}
|
|
1252
|
+
}, xs);
|
|
1253
|
+
const status_1 = (((status === 0) && ((i + 1) === (index + count))) ? 1 : status) | 0;
|
|
1254
|
+
if (status_1 < 1) {
|
|
1255
|
+
throw new Error((SR_indexOutOfBounds + "\\nParameter name: ") + ((status_1 < 0) ? "index" : "count"));
|
|
1256
|
+
}
|
|
1257
|
+
return ys;
|
|
1258
|
+
}
|
|
1259
|
+
function updateAt(index, y, xs) {
|
|
1260
|
+
let isDone = false;
|
|
1261
|
+
const ys = mapIndexed((i, x) => {
|
|
1262
|
+
if (i === index) {
|
|
1263
|
+
isDone = true;
|
|
1264
|
+
return y;
|
|
1265
|
+
}
|
|
1266
|
+
else {
|
|
1267
|
+
return x;
|
|
1268
|
+
}
|
|
1269
|
+
}, xs);
|
|
1270
|
+
if (!isDone) {
|
|
1271
|
+
throw new Error((SR_indexOutOfBounds + "\\nParameter name: ") + "index");
|
|
1272
|
+
}
|
|
1273
|
+
return ys;
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
export { FSharpList, FSharpList_$reflection, FSharpList_Cons_305B8EAC, FSharpList__get_Head, FSharpList__get_IsEmpty, FSharpList__get_Item_Z524259A4, FSharpList__get_Length, FSharpList__get_Tail, FSharpList_get_Empty, ListEnumerator$1, ListEnumerator$1_$ctor_3002E699, ListEnumerator$1_$reflection, allPairs, append, average, averageBy, choose, chunkBySize, collect, compareWith, concat, cons, contains, empty, exactlyOne, exists, exists2, filter, find, findBack, findIndex, findIndexBack, fold, fold2, foldBack, foldBack2, foldIndexed, forAll, forAll2, getSlice, head, indexNotFound, indexed, initialize, insertAt, insertManyAt, isEmpty, item, iterate, iterate2, iterateIndexed, iterateIndexed2, last, length, map, map2, map3, mapFold, mapFoldBack, mapIndexed, mapIndexed2, max, maxBy, min, minBy, ofArray, ofArrayWithTail, ofSeq, pairwise, partition, permute, pick, reduce, reduceBack, removeAt, removeManyAt, replicate, reverse, scan, scanBack, singleton, skip, skipWhile, sort, sortBy, sortByDescending, sortDescending, sortWith, splitAt, splitInto, sum, sumBy, tail, take, takeWhile, toArray, toSeq, transpose, truncate, tryExactlyOne, tryFind, tryFindBack, tryFindIndex, tryFindIndexBack, tryHead, tryItem, tryLast, tryPick, unfold, unzip, unzip3, updateAt, where, windowed, zip, zip3 };
|