@fncts/base 0.0.39 → 0.0.41
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/_cjs/collection/AsyncIterable/api.cjs +384 -0
- package/_cjs/collection/AsyncIterable/api.cjs.map +1 -0
- package/_cjs/collection/AsyncIterable/definition.cjs +2 -0
- package/_cjs/collection/AsyncIterable/definition.cjs.map +1 -0
- package/_cjs/collection/{compat/Array.cjs → AsyncIterable.cjs} +3 -3
- package/_cjs/collection/AsyncIterable.cjs.map +1 -0
- package/_cjs/collection/Iterable/api/traverseConc.cjs +1 -2
- package/_cjs/collection/Iterable/api/traverseConc.cjs.map +1 -1
- package/_cjs/collection/Iterable/api.cjs +180 -137
- package/_cjs/collection/Iterable/api.cjs.map +1 -1
- package/_cjs/collection/Iterable/constructors.cjs.map +1 -1
- package/_cjs/collection/compat/ArrayLike/api.cjs +1 -2
- package/_cjs/collection/compat/ArrayLike/api.cjs.map +1 -1
- package/_cjs/collection/compat/ArrayLike/definition.cjs +0 -4
- package/_cjs/collection/compat/Map/definition.cjs +0 -4
- package/_cjs/collection/compat/Set/definition.cjs +0 -4
- package/_cjs/collection/compat.cjs +0 -4
- package/_cjs/collection/immutable/Conc/api/makeBy.cjs +1 -2
- package/_cjs/collection/immutable/Conc/api/makeBy.cjs.map +1 -1
- package/_cjs/collection/immutable/Conc/api/replicate.cjs +1 -2
- package/_cjs/collection/immutable/Conc/api/replicate.cjs.map +1 -1
- package/_cjs/collection/immutable/Conc/api.cjs +1 -2
- package/_cjs/collection/immutable/Conc/api.cjs.map +1 -1
- package/_cjs/collection/immutable/Conc/constructors.cjs +3 -4
- package/_cjs/collection/immutable/Conc/constructors.cjs.map +1 -1
- package/_cjs/collection/immutable/Conc/definition.cjs +3 -3
- package/_cjs/collection/immutable/Conc/definition.cjs.map +1 -1
- package/_cjs/collection/immutable/Dictionary/api.cjs +1 -2
- package/_cjs/collection/immutable/Dictionary/api.cjs.map +1 -1
- package/_cjs/collection/immutable/Dictionary/definition.cjs +1 -2
- package/_cjs/collection/immutable/Dictionary/definition.cjs.map +1 -1
- package/_cjs/collection/immutable/HashMap/api.cjs +1 -2
- package/_cjs/collection/immutable/HashMap/api.cjs.map +1 -1
- package/_cjs/collection/immutable/HashMap/definition.cjs +1 -2
- package/_cjs/collection/immutable/HashMap/definition.cjs.map +1 -1
- package/_cjs/collection/immutable/HashMap/internal.cjs +1 -2
- package/_cjs/collection/immutable/HashMap/internal.cjs.map +1 -1
- package/_cjs/collection/immutable/HashSet/api.cjs +1 -2
- package/_cjs/collection/immutable/HashSet/api.cjs.map +1 -1
- package/_cjs/collection/immutable/HashSet/definition.cjs +1 -2
- package/_cjs/collection/immutable/HashSet/definition.cjs.map +1 -1
- package/_cjs/collection/immutable/List/api/foldLeft.cjs +1 -2
- package/_cjs/collection/immutable/List/api/foldLeft.cjs.map +1 -1
- package/_cjs/collection/immutable/List/api/unsafeTail.cjs +1 -2
- package/_cjs/collection/immutable/List/api/unsafeTail.cjs.map +1 -1
- package/_cjs/collection/immutable/List/api.cjs +3 -4
- package/_cjs/collection/immutable/List/api.cjs.map +1 -1
- package/_cjs/collection/immutable/List/constructors.cjs +1 -2
- package/_cjs/collection/immutable/List/constructors.cjs.map +1 -1
- package/_cjs/collection/immutable/List/definition.cjs +1 -2
- package/_cjs/collection/immutable/List/definition.cjs.map +1 -1
- package/_cjs/collection/immutable/Queue/api.cjs +1 -2
- package/_cjs/collection/immutable/Queue/api.cjs.map +1 -1
- package/_cjs/collection/immutable/Queue/constructors.cjs +1 -2
- package/_cjs/collection/immutable/Queue/constructors.cjs.map +1 -1
- package/_cjs/collection/immutable/Queue/definition.cjs +1 -2
- package/_cjs/collection/immutable/Queue/definition.cjs.map +1 -1
- package/_cjs/collection/immutable/Queue/guards.cjs +1 -2
- package/_cjs/collection/immutable/Queue/guards.cjs.map +1 -1
- package/_cjs/collection/immutable/ReadonlyArray/api/chunksOf.cjs +18 -0
- package/_cjs/collection/immutable/ReadonlyArray/api/chunksOf.cjs.map +1 -0
- package/_cjs/collection/immutable/ReadonlyArray/api/splitAt.cjs +15 -0
- package/_cjs/collection/immutable/ReadonlyArray/api/splitAt.cjs.map +1 -0
- package/_cjs/collection/immutable/ReadonlyArray/api/splitWhere.cjs +26 -0
- package/_cjs/collection/immutable/ReadonlyArray/api/splitWhere.cjs.map +1 -0
- package/_cjs/collection/immutable/{ImmutableArray → ReadonlyArray}/api.cjs +562 -538
- package/_cjs/collection/immutable/ReadonlyArray/api.cjs.map +1 -0
- package/_cjs/collection/immutable/ReadonlyArray/constructors.cjs +55 -0
- package/_cjs/collection/immutable/ReadonlyArray/constructors.cjs.map +1 -0
- package/_cjs/collection/immutable/ReadonlyArray/definition.cjs.map +1 -0
- package/_cjs/collection/immutable/{ImmutableArray → ReadonlyArray}/instances.cjs +5 -7
- package/_cjs/collection/immutable/ReadonlyArray/instances.cjs.map +1 -0
- package/_cjs/collection/immutable/{ImmutableArray.cjs → ReadonlyArray.cjs} +8 -19
- package/_cjs/collection/immutable/ReadonlyArray.cjs.map +1 -0
- package/_cjs/collection/immutable/ReadonlyNonEmptyArray/api.cjs +472 -0
- package/_cjs/collection/immutable/ReadonlyNonEmptyArray/api.cjs.map +1 -0
- package/_cjs/collection/immutable/ReadonlyNonEmptyArray/constructors.cjs +79 -0
- package/_cjs/collection/immutable/ReadonlyNonEmptyArray/constructors.cjs.map +1 -0
- package/_cjs/collection/immutable/ReadonlyNonEmptyArray/definition.cjs +2 -0
- package/_cjs/collection/immutable/ReadonlyNonEmptyArray/definition.cjs.map +1 -0
- package/_cjs/collection/immutable/ReadonlyNonEmptyArray/destructors.cjs +49 -0
- package/_cjs/collection/immutable/ReadonlyNonEmptyArray/destructors.cjs.map +1 -0
- package/_cjs/collection/immutable/{ImmutableNonEmptyArray → ReadonlyNonEmptyArray}/instances.cjs +3 -4
- package/_cjs/collection/immutable/ReadonlyNonEmptyArray/instances.cjs.map +1 -0
- package/_cjs/collection/immutable/{ImmutableNonEmptyArray.cjs → ReadonlyNonEmptyArray.cjs} +6 -6
- package/_cjs/collection/immutable/ReadonlyNonEmptyArray.cjs.map +1 -0
- package/_cjs/collection/immutable/RoseTree/api.cjs +1 -2
- package/_cjs/collection/immutable/RoseTree/api.cjs.map +1 -1
- package/_cjs/collection/immutable/RoseTree/definition.cjs +1 -2
- package/_cjs/collection/immutable/RoseTree/definition.cjs.map +1 -1
- package/_cjs/collection/immutable/SortedMap/api.cjs +1 -2
- package/_cjs/collection/immutable/SortedMap/api.cjs.map +1 -1
- package/_cjs/collection/immutable/SortedMap/iterator.cjs +1 -2
- package/_cjs/collection/immutable/SortedMap/iterator.cjs.map +1 -1
- package/_cjs/collection/immutable/Vector/api.cjs +229 -230
- package/_cjs/collection/immutable/Vector/api.cjs.map +1 -1
- package/_cjs/collection/immutable/Vector/definition.cjs +1 -2
- package/_cjs/collection/immutable/Vector/definition.cjs.map +1 -1
- package/_cjs/collection/immutable.cjs +0 -4
- package/_cjs/collection/internal.cjs +0 -4
- package/_cjs/collection/mutable/ArrayDeque.cjs +1 -2
- package/_cjs/collection/mutable/ArrayDeque.cjs.map +1 -1
- package/_cjs/collection/mutable/HashMap.cjs +1 -2
- package/_cjs/collection/mutable/HashMap.cjs.map +1 -1
- package/_cjs/collection/mutable/HashSet.cjs +1 -2
- package/_cjs/collection/mutable/HashSet.cjs.map +1 -1
- package/_cjs/collection/mutable/ListBuffer.cjs +1 -2
- package/_cjs/collection/mutable/ListBuffer.cjs.map +1 -1
- package/_cjs/collection/mutable.cjs +0 -4
- package/_cjs/collection/weak/IterableWeakMap.cjs +1 -2
- package/_cjs/collection/weak/IterableWeakMap.cjs.map +1 -1
- package/_cjs/collection/weak.cjs +0 -4
- package/_cjs/collection.cjs +0 -4
- package/_cjs/control/Eval/api.cjs +89 -41
- package/_cjs/control/Eval/api.cjs.map +1 -1
- package/_cjs/control/Eval/constructors.cjs +5 -1
- package/_cjs/control/Eval/constructors.cjs.map +1 -1
- package/_cjs/control/Eval/instance.cjs +1 -2
- package/_cjs/control/Eval/instance.cjs.map +1 -1
- package/_cjs/control/Eval/run.cjs +1 -2
- package/_cjs/control/Eval/run.cjs.map +1 -1
- package/_cjs/control/Pure/api.cjs +1 -2
- package/_cjs/control/Pure/api.cjs.map +1 -1
- package/_cjs/control/Pure/definition.cjs +1 -2
- package/_cjs/control/Pure/definition.cjs.map +1 -1
- package/_cjs/control/Pure/instances.cjs +1 -2
- package/_cjs/control/Pure/instances.cjs.map +1 -1
- package/_cjs/control/Pure/runtime.cjs +15 -10
- package/_cjs/control/Pure/runtime.cjs.map +1 -1
- package/_cjs/control.cjs +0 -4
- package/_cjs/data/Byte.cjs +0 -4
- package/_cjs/data/CaseClass.cjs +11 -14
- package/_cjs/data/CaseClass.cjs.map +1 -1
- package/_cjs/data/Cause/api/fold.cjs +33 -34
- package/_cjs/data/Cause/api/fold.cjs.map +1 -1
- package/_cjs/data/Cause/api/isEmpty.cjs +1 -2
- package/_cjs/data/Cause/api/isEmpty.cjs.map +1 -1
- package/_cjs/data/Cause/api/linearize.cjs +1 -2
- package/_cjs/data/Cause/api/linearize.cjs.map +1 -1
- package/_cjs/data/Cause/api/prettyPrint.cjs +1 -2
- package/_cjs/data/Cause/api/prettyPrint.cjs.map +1 -1
- package/_cjs/data/Cause/api/unified.cjs +1 -2
- package/_cjs/data/Cause/api/unified.cjs.map +1 -1
- package/_cjs/data/Cause/api.cjs +1 -2
- package/_cjs/data/Cause/api.cjs.map +1 -1
- package/_cjs/data/Cause/definition.cjs +1 -2
- package/_cjs/data/Cause/definition.cjs.map +1 -1
- package/_cjs/data/Const/api.cjs +7 -7
- package/_cjs/data/Const/api.cjs.map +1 -1
- package/_cjs/data/Const/instances.cjs +12 -13
- package/_cjs/data/Const/instances.cjs.map +1 -1
- package/_cjs/data/Data.cjs +1 -2
- package/_cjs/data/Data.cjs.map +1 -1
- package/_cjs/data/Date/definition.cjs +0 -4
- package/_cjs/data/Datum/api.cjs +110 -113
- package/_cjs/data/Datum/api.cjs.map +1 -1
- package/_cjs/data/Datum/definition.cjs +1 -2
- package/_cjs/data/Datum/definition.cjs.map +1 -1
- package/_cjs/data/Datum/instances.cjs +1 -2
- package/_cjs/data/Datum/instances.cjs.map +1 -1
- package/_cjs/data/Datum.cjs +39 -0
- package/_cjs/data/Datum.cjs.map +1 -0
- package/_cjs/data/DatumEither/api.cjs +56 -57
- package/_cjs/data/DatumEither/api.cjs.map +1 -1
- package/_cjs/data/Duration/api.cjs +1 -2
- package/_cjs/data/Duration/api.cjs.map +1 -1
- package/_cjs/data/Duration/definition.cjs +1 -2
- package/_cjs/data/Duration/definition.cjs.map +1 -1
- package/_cjs/data/Either/api/align.cjs +1 -2
- package/_cjs/data/Either/api/align.cjs.map +1 -1
- package/_cjs/data/Either/api/alignWith.cjs +1 -2
- package/_cjs/data/Either/api/alignWith.cjs.map +1 -1
- package/_cjs/data/Either/api.cjs +53 -55
- package/_cjs/data/Either/api.cjs.map +1 -1
- package/_cjs/data/Either/constructors.cjs +21 -22
- package/_cjs/data/Either/constructors.cjs.map +1 -1
- package/_cjs/data/Either/definition.cjs +1 -2
- package/_cjs/data/Either/definition.cjs.map +1 -1
- package/_cjs/data/Either/instances.cjs +1 -2
- package/_cjs/data/Either/instances.cjs.map +1 -1
- package/_cjs/data/EitherT/api.cjs +28 -29
- package/_cjs/data/EitherT/api.cjs.map +1 -1
- package/_cjs/data/Environment/api.cjs +1 -2
- package/_cjs/data/Environment/api.cjs.map +1 -1
- package/_cjs/data/Environment/definition.cjs +1 -2
- package/_cjs/data/Environment/definition.cjs.map +1 -1
- package/_cjs/data/EnvironmentPatch.cjs +2 -3
- package/_cjs/data/EnvironmentPatch.cjs.map +1 -1
- package/_cjs/data/Eq/api.cjs +189 -5
- package/_cjs/data/Eq/api.cjs.map +1 -1
- package/_cjs/data/Eq/derivations.cjs +10 -21
- package/_cjs/data/Eq/derivations.cjs.map +1 -1
- package/_cjs/data/Equatable/api.cjs +1 -2
- package/_cjs/data/Equatable/api.cjs.map +1 -1
- package/_cjs/data/Equatable/definition.cjs +1 -2
- package/_cjs/data/Equatable/definition.cjs.map +1 -1
- package/_cjs/data/Exit/api.cjs +90 -80
- package/_cjs/data/Exit/api.cjs.map +1 -1
- package/_cjs/data/Exit/constructors.cjs +1 -2
- package/_cjs/data/Exit/constructors.cjs.map +1 -1
- package/_cjs/data/Exit/definition.cjs +1 -2
- package/_cjs/data/Exit/definition.cjs.map +1 -1
- package/_cjs/data/FiberId/api.cjs +1 -2
- package/_cjs/data/FiberId/api.cjs.map +1 -1
- package/_cjs/data/FiberId/definition.cjs +1 -2
- package/_cjs/data/FiberId/definition.cjs.map +1 -1
- package/_cjs/data/Guard/api.cjs +13 -17
- package/_cjs/data/Guard/api.cjs.map +1 -1
- package/_cjs/data/HashEq.cjs +1 -2
- package/_cjs/data/HashEq.cjs.map +1 -1
- package/_cjs/data/Hashable/definition.cjs +1 -2
- package/_cjs/data/Hashable/definition.cjs.map +1 -1
- package/_cjs/data/Hashable/hash.cjs +1 -2
- package/_cjs/data/Hashable/hash.cjs.map +1 -1
- package/_cjs/data/Identity/api.cjs +1 -2
- package/_cjs/data/Identity/api.cjs.map +1 -1
- package/_cjs/data/Identity/definition.cjs +1 -2
- package/_cjs/data/Identity/definition.cjs.map +1 -1
- package/_cjs/data/Identity/instances.cjs +1 -2
- package/_cjs/data/Identity/instances.cjs.map +1 -1
- package/_cjs/data/Interval.cjs +1 -2
- package/_cjs/data/Interval.cjs.map +1 -1
- package/_cjs/data/Intervals.cjs +1 -2
- package/_cjs/data/Intervals.cjs.map +1 -1
- package/_cjs/data/Maybe/api.cjs +73 -60
- package/_cjs/data/Maybe/api.cjs.map +1 -1
- package/_cjs/data/Maybe/constructors.cjs +37 -38
- package/_cjs/data/Maybe/constructors.cjs.map +1 -1
- package/_cjs/data/Maybe/definition.cjs +1 -2
- package/_cjs/data/Maybe/definition.cjs.map +1 -1
- package/_cjs/data/Maybe/instances.cjs +1 -2
- package/_cjs/data/Maybe/instances.cjs.map +1 -1
- package/_cjs/data/Newtype.cjs +1 -2
- package/_cjs/data/Newtype.cjs.map +1 -1
- package/_cjs/data/Ord/api.cjs +1 -2
- package/_cjs/data/Ord/api.cjs.map +1 -1
- package/_cjs/data/Ord/definition.cjs +1 -2
- package/_cjs/data/Ord/definition.cjs.map +1 -1
- package/_cjs/data/Ord/instances.cjs +1 -2
- package/_cjs/data/Ord/instances.cjs.map +1 -1
- package/_cjs/data/Predicate/definition.cjs +0 -4
- package/_cjs/data/Predicate/match.cjs +0 -4
- package/_cjs/data/Refinement/definition.cjs +0 -4
- package/_cjs/data/Showable/definition.cjs +1 -2
- package/_cjs/data/Showable/definition.cjs.map +1 -1
- package/_cjs/data/Showable/show.cjs +1 -2
- package/_cjs/data/Showable/show.cjs.map +1 -1
- package/_cjs/data/Showable/styles.cjs +1 -2
- package/_cjs/data/Showable/styles.cjs.map +1 -1
- package/_cjs/data/Showable/util.cjs +1 -2
- package/_cjs/data/Showable/util.cjs.map +1 -1
- package/_cjs/data/Struct/api.cjs +5 -7
- package/_cjs/data/Struct/api.cjs.map +1 -1
- package/_cjs/data/Struct/definition.cjs +1 -2
- package/_cjs/data/Struct/definition.cjs.map +1 -1
- package/_cjs/data/Tag/constructors.cjs +1 -2
- package/_cjs/data/Tag/constructors.cjs.map +1 -1
- package/_cjs/data/Tag/definition.cjs +1 -2
- package/_cjs/data/Tag/definition.cjs.map +1 -1
- package/_cjs/data/These/api.cjs +86 -87
- package/_cjs/data/These/api.cjs.map +1 -1
- package/_cjs/data/These/constructors.cjs +1 -2
- package/_cjs/data/These/constructors.cjs.map +1 -1
- package/_cjs/data/These/definition.cjs +1 -2
- package/_cjs/data/These/definition.cjs.map +1 -1
- package/_cjs/data/These/destructors.cjs +1 -2
- package/_cjs/data/These/destructors.cjs.map +1 -1
- package/_cjs/data/These/instances.cjs +1 -2
- package/_cjs/data/These/instances.cjs.map +1 -1
- package/_cjs/data/Trace/api.cjs +1 -2
- package/_cjs/data/Trace/api.cjs.map +1 -1
- package/_cjs/data/Trace/constructors.cjs +1 -2
- package/_cjs/data/Trace/constructors.cjs.map +1 -1
- package/_cjs/data/Zipped.cjs +1 -2
- package/_cjs/data/Zipped.cjs.map +1 -1
- package/_cjs/data/bigint/definition.cjs +0 -4
- package/_cjs/data/bigint/instances.cjs +1 -2
- package/_cjs/data/bigint/instances.cjs.map +1 -1
- package/_cjs/data/boolean/definition.cjs +0 -4
- package/_cjs/data/boolean/instances.cjs +1 -2
- package/_cjs/data/boolean/instances.cjs.map +1 -1
- package/_cjs/data/exceptions/IOError.cjs +1 -2
- package/_cjs/data/exceptions/IOError.cjs.map +1 -1
- package/_cjs/data/exceptions/InterruptedException.cjs +1 -2
- package/_cjs/data/exceptions/InterruptedException.cjs.map +1 -1
- package/_cjs/data/exceptions/RuntimeError.cjs +0 -4
- package/_cjs/data/function/definition.cjs +0 -4
- package/_cjs/data/number/definition.cjs +0 -4
- package/_cjs/data/number/instances.cjs +1 -2
- package/_cjs/data/number/instances.cjs.map +1 -1
- package/_cjs/data/object/definition.cjs +0 -4
- package/_cjs/data/object/instances.cjs +1 -2
- package/_cjs/data/object/instances.cjs.map +1 -1
- package/_cjs/data/string/api.cjs +1 -2
- package/_cjs/data/string/api.cjs.map +1 -1
- package/_cjs/data/string/definition.cjs +0 -4
- package/_cjs/data/string/instances.cjs +1 -2
- package/_cjs/data/string/instances.cjs.map +1 -1
- package/_cjs/data.cjs +0 -4
- package/_cjs/global.cjs +0 -4
- package/_cjs/index.cjs +0 -4
- package/_cjs/internal/Stack.cjs +7 -2
- package/_cjs/internal/Stack.cjs.map +1 -1
- package/_cjs/json.cjs +0 -4
- package/_cjs/optics/At/api.cjs +1 -2
- package/_cjs/optics/At/api.cjs.map +1 -1
- package/_cjs/optics/At/definition.cjs +1 -2
- package/_cjs/optics/At/definition.cjs.map +1 -1
- package/_cjs/optics/Index/api.cjs +3 -4
- package/_cjs/optics/Index/api.cjs.map +1 -1
- package/_cjs/optics/Iso/api.cjs +1 -2
- package/_cjs/optics/Iso/api.cjs.map +1 -1
- package/_cjs/optics/Iso/definition.cjs +1 -2
- package/_cjs/optics/Iso/definition.cjs.map +1 -1
- package/_cjs/optics/Lens/api.cjs +2 -3
- package/_cjs/optics/Lens/api.cjs.map +1 -1
- package/_cjs/optics/Lens/definition.cjs +1 -2
- package/_cjs/optics/Lens/definition.cjs.map +1 -1
- package/_cjs/optics/Optional/api/compose.cjs +1 -2
- package/_cjs/optics/Optional/api/compose.cjs.map +1 -1
- package/_cjs/optics/Optional/api/focus.cjs +1 -2
- package/_cjs/optics/Optional/api/focus.cjs.map +1 -1
- package/_cjs/optics/Optional/api.cjs +1 -2
- package/_cjs/optics/Optional/api.cjs.map +1 -1
- package/_cjs/optics/Optional/definition.cjs +1 -2
- package/_cjs/optics/Optional/definition.cjs.map +1 -1
- package/_cjs/optics/Prism/api/compose.cjs +1 -2
- package/_cjs/optics/Prism/api/compose.cjs.map +1 -1
- package/_cjs/optics/Prism/api/focus.cjs +1 -2
- package/_cjs/optics/Prism/api/focus.cjs.map +1 -1
- package/_cjs/optics/Prism/api/fromNullable.cjs +1 -2
- package/_cjs/optics/Prism/api/fromNullable.cjs.map +1 -1
- package/_cjs/optics/Prism/api/just.cjs +1 -2
- package/_cjs/optics/Prism/api/just.cjs.map +1 -1
- package/_cjs/optics/Prism/definition.cjs +1 -2
- package/_cjs/optics/Prism/definition.cjs.map +1 -1
- package/_cjs/optics/Traversal/api/compose.cjs +1 -2
- package/_cjs/optics/Traversal/api/compose.cjs.map +1 -1
- package/_cjs/optics/Traversal/api/focus.cjs +1 -2
- package/_cjs/optics/Traversal/api/focus.cjs.map +1 -1
- package/_cjs/optics/Traversal/api/fromTraversable.cjs +1 -2
- package/_cjs/optics/Traversal/api/fromTraversable.cjs.map +1 -1
- package/_cjs/optics/Traversal/definition.cjs +1 -2
- package/_cjs/optics/Traversal/definition.cjs.map +1 -1
- package/_cjs/optics.cjs +0 -4
- package/_cjs/typeclass/ApplicativeExcept.cjs +1 -2
- package/_cjs/typeclass/ApplicativeExcept.cjs.map +1 -1
- package/_cjs/typeclass/Apply.cjs +1 -14
- package/_cjs/typeclass/Apply.cjs.map +1 -1
- package/_cjs/typeclass/Chain.cjs +1 -2
- package/_cjs/typeclass/Chain.cjs.map +1 -1
- package/_cjs/typeclass/Fail.cjs +0 -4
- package/_cjs/typeclass/MonadExcept.cjs +1 -2
- package/_cjs/typeclass/MonadExcept.cjs.map +1 -1
- package/_cjs/typeclass/Monoid.cjs +1 -2
- package/_cjs/typeclass/Monoid.cjs.map +1 -1
- package/_cjs/typeclass/Nil.cjs +0 -4
- package/_cjs/typeclass/Semialign.cjs +1 -2
- package/_cjs/typeclass/Semialign.cjs.map +1 -1
- package/_cjs/typeclass/Semigroup/api.cjs +1 -2
- package/_cjs/typeclass/Semigroup/api.cjs.map +1 -1
- package/_cjs/typeclass/Semigroup/derivations.cjs +1 -2
- package/_cjs/typeclass/Semigroup/derivations.cjs.map +1 -1
- package/_cjs/typeclass/Witherable.cjs +1 -2
- package/_cjs/typeclass/Witherable.cjs.map +1 -1
- package/_cjs/typeclass/WitherableWithIndex.cjs +1 -2
- package/_cjs/typeclass/WitherableWithIndex.cjs.map +1 -1
- package/_cjs/typeclass/builtin/Symbol.cjs +0 -4
- package/_cjs/types/extractions.cjs +0 -4
- package/_cjs/types/utility.cjs +0 -4
- package/_cjs/util/AnsiFormat.cjs +1 -2
- package/_cjs/util/AnsiFormat.cjs.map +1 -1
- package/_cjs/util/assert.cjs +1 -1
- package/_cjs/util/assert.cjs.map +1 -1
- package/_cjs/util/pattern.cjs.map +1 -1
- package/_cjs/util/rand/distribution/Distribution.cjs +0 -4
- package/_cjs/util/rand/generator/RandomGenerator.cjs.map +1 -1
- package/_cjs/util.cjs +0 -4
- package/_mjs/collection/AsyncIterable/api.mjs +366 -0
- package/_mjs/collection/AsyncIterable/api.mjs.map +1 -0
- package/_mjs/collection/AsyncIterable/definition.mjs +2 -0
- package/_mjs/collection/AsyncIterable/definition.mjs.map +1 -0
- package/_mjs/collection/AsyncIterable.mjs +4 -0
- package/_mjs/collection/AsyncIterable.mjs.map +1 -0
- package/_mjs/collection/Iterable/api.mjs +175 -134
- package/_mjs/collection/Iterable/api.mjs.map +1 -1
- package/_mjs/collection/Iterable/constructors.mjs.map +1 -1
- package/_mjs/collection/compat/ArrayLike/definition.mjs +1 -1
- package/_mjs/collection/compat/Map/definition.mjs +1 -1
- package/_mjs/collection/compat/Set/definition.mjs +1 -1
- package/_mjs/collection/compat.mjs +1 -1
- package/_mjs/collection/immutable/Conc/constructors.mjs +2 -2
- package/_mjs/collection/immutable/Conc/constructors.mjs.map +1 -1
- package/_mjs/collection/immutable/Conc/definition.mjs +1 -1
- package/_mjs/collection/immutable/Conc/definition.mjs.map +1 -1
- package/_mjs/collection/immutable/List/api.mjs +2 -2
- package/_mjs/collection/immutable/List/api.mjs.map +1 -1
- package/_mjs/collection/immutable/{ImmutableArray → ReadonlyArray}/api/chunksOf.mjs +3 -3
- package/_mjs/collection/immutable/ReadonlyArray/api/chunksOf.mjs.map +1 -0
- package/_mjs/collection/immutable/ReadonlyArray/api/splitAt.mjs +9 -0
- package/_mjs/collection/immutable/ReadonlyArray/api/splitAt.mjs.map +1 -0
- package/_mjs/collection/immutable/ReadonlyArray/api/splitWhere.mjs +19 -0
- package/_mjs/collection/immutable/ReadonlyArray/api/splitWhere.mjs.map +1 -0
- package/_mjs/collection/immutable/ReadonlyArray/api.mjs +1302 -0
- package/_mjs/collection/immutable/ReadonlyArray/api.mjs.map +1 -0
- package/_mjs/collection/immutable/ReadonlyArray/constructors.mjs +44 -0
- package/_mjs/collection/immutable/ReadonlyArray/constructors.mjs.map +1 -0
- package/_mjs/collection/immutable/ReadonlyArray/definition.mjs.map +1 -0
- package/_mjs/collection/immutable/{ImmutableArray → ReadonlyArray}/instances.mjs +4 -5
- package/_mjs/collection/immutable/ReadonlyArray/instances.mjs.map +1 -0
- package/_mjs/collection/immutable/ReadonlyArray.mjs +11 -0
- package/_mjs/collection/immutable/ReadonlyArray.mjs.map +1 -0
- package/_mjs/collection/immutable/ReadonlyNonEmptyArray/api.mjs +433 -0
- package/_mjs/collection/immutable/ReadonlyNonEmptyArray/api.mjs.map +1 -0
- package/_mjs/collection/immutable/{ImmutableNonEmptyArray → ReadonlyNonEmptyArray}/constructors.mjs +16 -15
- package/_mjs/collection/immutable/ReadonlyNonEmptyArray/constructors.mjs.map +1 -0
- package/_mjs/collection/immutable/ReadonlyNonEmptyArray/definition.mjs +2 -0
- package/_mjs/collection/immutable/ReadonlyNonEmptyArray/definition.mjs.map +1 -0
- package/_mjs/collection/immutable/ReadonlyNonEmptyArray/destructors.mjs +41 -0
- package/_mjs/collection/immutable/ReadonlyNonEmptyArray/destructors.mjs.map +1 -0
- package/_mjs/collection/immutable/{ImmutableNonEmptyArray → ReadonlyNonEmptyArray}/instances.mjs +2 -2
- package/_mjs/collection/immutable/ReadonlyNonEmptyArray/instances.mjs.map +1 -0
- package/_mjs/collection/immutable/ReadonlyNonEmptyArray.mjs +7 -0
- package/_mjs/collection/immutable/ReadonlyNonEmptyArray.mjs.map +1 -0
- package/_mjs/collection/immutable/Vector/api.mjs +224 -224
- package/_mjs/collection/immutable/Vector/api.mjs.map +1 -1
- package/_mjs/collection/immutable.mjs +1 -1
- package/_mjs/collection/internal.mjs +1 -1
- package/_mjs/collection/mutable.mjs +1 -1
- package/_mjs/collection/weak.mjs +1 -1
- package/_mjs/collection.mjs +1 -1
- package/_mjs/control/Eval/api.mjs +83 -15
- package/_mjs/control/Eval/api.mjs.map +1 -1
- package/_mjs/control/Eval/constructors.mjs +4 -0
- package/_mjs/control/Eval/constructors.mjs.map +1 -1
- package/_mjs/control/Pure/runtime.mjs +14 -8
- package/_mjs/control/Pure/runtime.mjs.map +1 -1
- package/_mjs/control.mjs +1 -1
- package/_mjs/data/Byte.mjs +1 -1
- package/_mjs/data/CaseClass.mjs +10 -12
- package/_mjs/data/CaseClass.mjs.map +1 -1
- package/_mjs/data/Cause/api/fold.mjs +32 -32
- package/_mjs/data/Cause/api/fold.mjs.map +1 -1
- package/_mjs/data/Const/api.mjs +7 -7
- package/_mjs/data/Const/api.mjs.map +1 -1
- package/_mjs/data/Const/instances.mjs +11 -11
- package/_mjs/data/Const/instances.mjs.map +1 -1
- package/_mjs/data/Date/definition.mjs +1 -1
- package/_mjs/data/Datum/api.mjs +107 -108
- package/_mjs/data/Datum/api.mjs.map +1 -1
- package/_mjs/data/Datum.mjs +5 -0
- package/_mjs/data/Datum.mjs.map +1 -0
- package/_mjs/data/DatumEither/api.mjs +53 -53
- package/_mjs/data/DatumEither/api.mjs.map +1 -1
- package/_mjs/data/Either/api.mjs +42 -42
- package/_mjs/data/Either/api.mjs.map +1 -1
- package/_mjs/data/Either/constructors.mjs +20 -20
- package/_mjs/data/Either/constructors.mjs.map +1 -1
- package/_mjs/data/EitherT/api.mjs +27 -27
- package/_mjs/data/EitherT/api.mjs.map +1 -1
- package/_mjs/data/Environment/api.mjs.map +1 -1
- package/_mjs/data/EnvironmentPatch.mjs +1 -1
- package/_mjs/data/Eq/api.mjs +175 -3
- package/_mjs/data/Eq/api.mjs.map +1 -1
- package/_mjs/data/Eq/derivations.mjs +8 -19
- package/_mjs/data/Eq/derivations.mjs.map +1 -1
- package/_mjs/data/Exit/api.mjs +88 -78
- package/_mjs/data/Exit/api.mjs.map +1 -1
- package/_mjs/data/Guard/api.mjs +12 -15
- package/_mjs/data/Guard/api.mjs.map +1 -1
- package/_mjs/data/Maybe/api.mjs +71 -58
- package/_mjs/data/Maybe/api.mjs.map +1 -1
- package/_mjs/data/Maybe/constructors.mjs +36 -36
- package/_mjs/data/Maybe/constructors.mjs.map +1 -1
- package/_mjs/data/Predicate/definition.mjs +1 -1
- package/_mjs/data/Predicate/match.mjs +1 -1
- package/_mjs/data/Refinement/definition.mjs +1 -1
- package/_mjs/data/Showable/util.mjs.map +1 -1
- package/_mjs/data/Struct/api.mjs +4 -5
- package/_mjs/data/Struct/api.mjs.map +1 -1
- package/_mjs/data/These/api.mjs +85 -85
- package/_mjs/data/These/api.mjs.map +1 -1
- package/_mjs/data/bigint/definition.mjs +1 -1
- package/_mjs/data/boolean/definition.mjs +1 -1
- package/_mjs/data/exceptions/RuntimeError.mjs +1 -1
- package/_mjs/data/function/definition.mjs +1 -1
- package/_mjs/data/number/definition.mjs +1 -1
- package/_mjs/data/object/definition.mjs +1 -1
- package/_mjs/data/string/definition.mjs +1 -1
- package/_mjs/data.mjs +1 -1
- package/_mjs/global.mjs +1 -1
- package/_mjs/index.mjs +1 -1
- package/_mjs/internal/Stack.mjs +7 -2
- package/_mjs/internal/Stack.mjs.map +1 -1
- package/_mjs/json.mjs +1 -1
- package/_mjs/optics/Index/api.mjs +2 -2
- package/_mjs/optics/Index/api.mjs.map +1 -1
- package/_mjs/optics/Lens/api.mjs +1 -1
- package/_mjs/optics.mjs +1 -1
- package/_mjs/typeclass/Apply.mjs +0 -12
- package/_mjs/typeclass/Apply.mjs.map +1 -1
- package/_mjs/typeclass/Fail.mjs +1 -1
- package/_mjs/typeclass/Nil.mjs +1 -1
- package/_mjs/typeclass/builtin/Symbol.mjs +1 -1
- package/_mjs/types/extractions.mjs +1 -1
- package/_mjs/types/utility.mjs +1 -1
- package/_mjs/util/assert.mjs +1 -1
- package/_mjs/util/assert.mjs.map +1 -1
- package/_mjs/util/pattern.mjs.map +1 -1
- package/_mjs/util/rand/distribution/Distribution.mjs +1 -1
- package/_mjs/util/rand/generator/RandomGenerator.mjs.map +1 -1
- package/_mjs/util.mjs +1 -1
- package/_src/collection/AsyncIterable/api.ts +369 -0
- package/_src/collection/AsyncIterable/definition.ts +7 -0
- package/_src/collection/AsyncIterable.ts +4 -0
- package/_src/collection/Iterable/api.ts +215 -162
- package/_src/collection/Iterable/constructors.ts +0 -2
- package/_src/collection/compat/ArrayLike/definition.ts +2 -2
- package/_src/collection/compat.ts +0 -1
- package/_src/collection/immutable/Conc/constructors.ts +1 -2
- package/_src/collection/immutable/Conc/definition.ts +7 -6
- package/_src/collection/immutable/List/api.ts +2 -2
- package/_src/collection/immutable/ReadonlyArray/api/chunksOf.ts +8 -0
- package/_src/collection/immutable/ReadonlyArray/api/splitAt.ts +8 -0
- package/_src/collection/immutable/{ImmutableArray → ReadonlyArray}/api/splitWhere.ts +3 -3
- package/_src/collection/immutable/ReadonlyArray/api.ts +1536 -0
- package/_src/collection/immutable/ReadonlyArray/constructors.ts +47 -0
- package/_src/collection/{compat/Array → immutable/ReadonlyArray}/definition.ts +8 -0
- package/_src/collection/immutable/{ImmutableArray → ReadonlyArray}/instances.ts +22 -22
- package/_src/collection/immutable/ReadonlyArray.ts +12 -0
- package/_src/collection/immutable/ReadonlyNonEmptyArray/api.ts +481 -0
- package/_src/collection/immutable/ReadonlyNonEmptyArray/constructors.ts +76 -0
- package/_src/collection/immutable/ReadonlyNonEmptyArray/definition.ts +22 -0
- package/_src/collection/immutable/ReadonlyNonEmptyArray/destructors.ts +41 -0
- package/_src/collection/immutable/{ImmutableNonEmptyArray → ReadonlyNonEmptyArray}/instances.ts +13 -13
- package/_src/collection/immutable/ReadonlyNonEmptyArray.ts +7 -0
- package/_src/collection/immutable/Vector/api.ts +310 -309
- package/_src/collection/immutable.ts +11 -11
- package/_src/collection.ts +6 -5
- package/_src/control/Eval/api.ts +109 -16
- package/_src/control/Eval/constructors.ts +5 -0
- package/_src/control/Pure/runtime.ts +8 -2
- package/_src/data/CaseClass.ts +5 -5
- package/_src/data/Cause/api/fold.ts +2 -2
- package/_src/data/Const/api.ts +8 -8
- package/_src/data/Const/instances.ts +10 -10
- package/_src/data/Datum/api.ts +113 -113
- package/_src/data/Datum.ts +5 -0
- package/_src/data/DatumEither/api.ts +41 -43
- package/_src/data/Either/api.ts +47 -47
- package/_src/data/Either/constructors.ts +14 -16
- package/_src/data/EitherT/api.ts +111 -110
- package/_src/data/Environment/api.ts +6 -3
- package/_src/data/Eq/api.ts +193 -4
- package/_src/data/Eq/derivations.ts +12 -19
- package/_src/data/Exit/api.ts +89 -77
- package/_src/data/Guard/api.ts +11 -11
- package/_src/data/Maybe/api.ts +82 -73
- package/_src/data/Maybe/constructors.ts +34 -36
- package/_src/data/Showable/util.ts +1 -1
- package/_src/data/Struct/api.ts +1 -1
- package/_src/data/These/api.ts +93 -92
- package/_src/data.ts +1 -0
- package/_src/global.ts +7 -12
- package/_src/internal/Stack.ts +6 -2
- package/_src/optics/Index/api.ts +1 -1
- package/_src/typeclass/Apply.ts +6 -18
- package/_src/util/assert.ts +2 -2
- package/_src/util/pattern.ts +8 -90
- package/_src/util/rand/generator/RandomGenerator.ts +1 -0
- package/collection/AsyncIterable/api.d.ts +71 -0
- package/collection/AsyncIterable/definition.d.ts +9 -0
- package/collection/AsyncIterable.d.ts +2 -0
- package/collection/Iterable/api/traverseConc.d.ts +1 -1
- package/collection/Iterable/api.d.ts +40 -25
- package/collection/compat/ArrayLike/definition.d.ts +2 -2
- package/collection/compat.d.ts +0 -1
- package/collection/immutable/Conc/definition.d.ts +1 -1
- package/collection/immutable/ReadonlyArray/api/chunksOf.d.ts +5 -0
- package/collection/immutable/ReadonlyArray/api/splitAt.d.ts +5 -0
- package/collection/immutable/ReadonlyArray/api/splitWhere.d.ts +6 -0
- package/collection/immutable/ReadonlyArray/api.d.ts +614 -0
- package/collection/immutable/ReadonlyArray/constructors.d.ts +30 -0
- package/collection/{compat/Array → immutable/ReadonlyArray}/definition.d.ts +8 -0
- package/collection/immutable/ReadonlyArray/instances.d.ts +87 -0
- package/collection/immutable/ReadonlyArray.d.ts +7 -0
- package/collection/immutable/ReadonlyNonEmptyArray/api.d.ts +186 -0
- package/collection/immutable/ReadonlyNonEmptyArray/constructors.d.ts +45 -0
- package/collection/immutable/ReadonlyNonEmptyArray/definition.d.ts +21 -0
- package/collection/immutable/ReadonlyNonEmptyArray/destructors.d.ts +31 -0
- package/collection/immutable/ReadonlyNonEmptyArray/instances.d.ts +52 -0
- package/collection/immutable/ReadonlyNonEmptyArray.d.ts +5 -0
- package/collection/immutable/Vector/api.d.ts +93 -93
- package/collection/immutable.d.ts +2 -2
- package/collection.d.ts +1 -0
- package/control/Eval/api.d.ts +27 -5
- package/control/Eval/constructors.d.ts +5 -0
- package/data/CaseClass.d.ts +2 -3
- package/data/Const/api.d.ts +5 -5
- package/data/Const/instances.d.ts +4 -4
- package/data/Datum/api.d.ts +64 -64
- package/data/Datum.d.ts +3 -0
- package/data/DatumEither/api.d.ts +25 -25
- package/data/Either/api.d.ts +24 -24
- package/data/Either/constructors.d.ts +12 -12
- package/data/EitherT/api.d.ts +16 -16
- package/data/Environment/api.d.ts +4 -2
- package/data/Eq/api.d.ts +89 -2
- package/data/Eq/derivations.d.ts +7 -0
- package/data/Exit/api.d.ts +43 -37
- package/data/Guard/api.d.ts +7 -8
- package/data/Maybe/api.d.ts +38 -33
- package/data/Maybe/constructors.d.ts +16 -16
- package/data/Showable/util.d.ts +1 -1
- package/data/These/api.d.ts +26 -26
- package/data.d.ts +1 -0
- package/global.d.ts +4 -8
- package/internal/Stack.d.ts +2 -0
- package/optics/Lens/api.d.ts +1 -1
- package/optics/Traversal/api/fromTraversable.d.ts +1 -1
- package/package.json +3 -3
- package/typeclass/Apply.d.ts +0 -6
- package/util/assert.d.ts +1 -1
- package/_cjs/collection/compat/Array/api.cjs +0 -142
- package/_cjs/collection/compat/Array/api.cjs.map +0 -1
- package/_cjs/collection/compat/Array/definition.cjs.map +0 -1
- package/_cjs/collection/compat/Array.cjs.map +0 -1
- package/_cjs/collection/immutable/ImmutableArray/api/chunksOf.cjs +0 -19
- package/_cjs/collection/immutable/ImmutableArray/api/chunksOf.cjs.map +0 -1
- package/_cjs/collection/immutable/ImmutableArray/api/slice.cjs +0 -18
- package/_cjs/collection/immutable/ImmutableArray/api/slice.cjs.map +0 -1
- package/_cjs/collection/immutable/ImmutableArray/api/splitAt.cjs +0 -18
- package/_cjs/collection/immutable/ImmutableArray/api/splitAt.cjs.map +0 -1
- package/_cjs/collection/immutable/ImmutableArray/api/splitWhere.cjs +0 -28
- package/_cjs/collection/immutable/ImmutableArray/api/splitWhere.cjs.map +0 -1
- package/_cjs/collection/immutable/ImmutableArray/api.cjs.map +0 -1
- package/_cjs/collection/immutable/ImmutableArray/constructors.cjs +0 -59
- package/_cjs/collection/immutable/ImmutableArray/constructors.cjs.map +0 -1
- package/_cjs/collection/immutable/ImmutableArray/definition.cjs +0 -44
- package/_cjs/collection/immutable/ImmutableArray/definition.cjs.map +0 -1
- package/_cjs/collection/immutable/ImmutableArray/instances.cjs.map +0 -1
- package/_cjs/collection/immutable/ImmutableArray.cjs.map +0 -1
- package/_cjs/collection/immutable/ImmutableNonEmptyArray/api.cjs +0 -474
- package/_cjs/collection/immutable/ImmutableNonEmptyArray/api.cjs.map +0 -1
- package/_cjs/collection/immutable/ImmutableNonEmptyArray/constructors.cjs +0 -79
- package/_cjs/collection/immutable/ImmutableNonEmptyArray/constructors.cjs.map +0 -1
- package/_cjs/collection/immutable/ImmutableNonEmptyArray/definition.cjs +0 -36
- package/_cjs/collection/immutable/ImmutableNonEmptyArray/definition.cjs.map +0 -1
- package/_cjs/collection/immutable/ImmutableNonEmptyArray/destructors.cjs +0 -53
- package/_cjs/collection/immutable/ImmutableNonEmptyArray/destructors.cjs.map +0 -1
- package/_cjs/collection/immutable/ImmutableNonEmptyArray/instances.cjs.map +0 -1
- package/_cjs/collection/immutable/ImmutableNonEmptyArray.cjs.map +0 -1
- package/_cjs/control/Eval/api/sequenceArray.cjs +0 -17
- package/_cjs/control/Eval/api/sequenceArray.cjs.map +0 -1
- package/_mjs/collection/compat/Array/api.mjs +0 -125
- package/_mjs/collection/compat/Array/api.mjs.map +0 -1
- package/_mjs/collection/compat/Array/definition.mjs.map +0 -1
- package/_mjs/collection/compat/Array.mjs +0 -4
- package/_mjs/collection/compat/Array.mjs.map +0 -1
- package/_mjs/collection/immutable/ImmutableArray/api/chunksOf.mjs.map +0 -1
- package/_mjs/collection/immutable/ImmutableArray/api/slice.mjs +0 -10
- package/_mjs/collection/immutable/ImmutableArray/api/slice.mjs.map +0 -1
- package/_mjs/collection/immutable/ImmutableArray/api/splitAt.mjs +0 -10
- package/_mjs/collection/immutable/ImmutableArray/api/splitAt.mjs.map +0 -1
- package/_mjs/collection/immutable/ImmutableArray/api/splitWhere.mjs +0 -20
- package/_mjs/collection/immutable/ImmutableArray/api/splitWhere.mjs.map +0 -1
- package/_mjs/collection/immutable/ImmutableArray/api.mjs +0 -1284
- package/_mjs/collection/immutable/ImmutableArray/api.mjs.map +0 -1
- package/_mjs/collection/immutable/ImmutableArray/constructors.mjs +0 -46
- package/_mjs/collection/immutable/ImmutableArray/constructors.mjs.map +0 -1
- package/_mjs/collection/immutable/ImmutableArray/definition.mjs +0 -35
- package/_mjs/collection/immutable/ImmutableArray/definition.mjs.map +0 -1
- package/_mjs/collection/immutable/ImmutableArray/instances.mjs.map +0 -1
- package/_mjs/collection/immutable/ImmutableArray.mjs +0 -12
- package/_mjs/collection/immutable/ImmutableArray.mjs.map +0 -1
- package/_mjs/collection/immutable/ImmutableNonEmptyArray/api.mjs +0 -437
- package/_mjs/collection/immutable/ImmutableNonEmptyArray/api.mjs.map +0 -1
- package/_mjs/collection/immutable/ImmutableNonEmptyArray/constructors.mjs.map +0 -1
- package/_mjs/collection/immutable/ImmutableNonEmptyArray/definition.mjs +0 -25
- package/_mjs/collection/immutable/ImmutableNonEmptyArray/definition.mjs.map +0 -1
- package/_mjs/collection/immutable/ImmutableNonEmptyArray/destructors.mjs +0 -43
- package/_mjs/collection/immutable/ImmutableNonEmptyArray/destructors.mjs.map +0 -1
- package/_mjs/collection/immutable/ImmutableNonEmptyArray/instances.mjs.map +0 -1
- package/_mjs/collection/immutable/ImmutableNonEmptyArray.mjs +0 -7
- package/_mjs/collection/immutable/ImmutableNonEmptyArray.mjs.map +0 -1
- package/_mjs/control/Eval/api/sequenceArray.mjs +0 -9
- package/_mjs/control/Eval/api/sequenceArray.mjs.map +0 -1
- package/_src/collection/compat/Array/api.ts +0 -134
- package/_src/collection/compat/Array.ts +0 -4
- package/_src/collection/immutable/ImmutableArray/api/chunksOf.ts +0 -8
- package/_src/collection/immutable/ImmutableArray/api/slice.ts +0 -8
- package/_src/collection/immutable/ImmutableArray/api/splitAt.ts +0 -8
- package/_src/collection/immutable/ImmutableArray/api.ts +0 -1526
- package/_src/collection/immutable/ImmutableArray/constructors.ts +0 -47
- package/_src/collection/immutable/ImmutableArray/definition.ts +0 -48
- package/_src/collection/immutable/ImmutableArray.ts +0 -13
- package/_src/collection/immutable/ImmutableNonEmptyArray/api.ts +0 -483
- package/_src/collection/immutable/ImmutableNonEmptyArray/constructors.ts +0 -83
- package/_src/collection/immutable/ImmutableNonEmptyArray/definition.ts +0 -47
- package/_src/collection/immutable/ImmutableNonEmptyArray/destructors.ts +0 -41
- package/_src/collection/immutable/ImmutableNonEmptyArray.ts +0 -7
- package/_src/control/Eval/api/sequenceArray.ts +0 -6
- package/collection/compat/Array/api.d.ts +0 -62
- package/collection/compat/Array.d.ts +0 -2
- package/collection/immutable/ImmutableArray/api/chunksOf.d.ts +0 -6
- package/collection/immutable/ImmutableArray/api/slice.d.ts +0 -6
- package/collection/immutable/ImmutableArray/api/splitAt.d.ts +0 -6
- package/collection/immutable/ImmutableArray/api/splitWhere.d.ts +0 -7
- package/collection/immutable/ImmutableArray/api.d.ts +0 -602
- package/collection/immutable/ImmutableArray/constructors.d.ts +0 -32
- package/collection/immutable/ImmutableArray/definition.d.ts +0 -34
- package/collection/immutable/ImmutableArray/instances.d.ts +0 -87
- package/collection/immutable/ImmutableArray.d.ts +0 -8
- package/collection/immutable/ImmutableNonEmptyArray/api.d.ts +0 -186
- package/collection/immutable/ImmutableNonEmptyArray/constructors.d.ts +0 -46
- package/collection/immutable/ImmutableNonEmptyArray/definition.d.ts +0 -40
- package/collection/immutable/ImmutableNonEmptyArray/destructors.d.ts +0 -32
- package/collection/immutable/ImmutableNonEmptyArray/instances.d.ts +0 -52
- package/collection/immutable/ImmutableNonEmptyArray.d.ts +0 -5
- package/control/Eval/api/sequenceArray.d.ts +0 -6
- /package/_cjs/collection/{compat/Array → immutable/ReadonlyArray}/definition.cjs +0 -0
- /package/_mjs/collection/{compat/Array → immutable/ReadonlyArray}/definition.mjs +0 -0
package/_cjs/data/These/api.cjs
CHANGED
@@ -17,20 +17,83 @@ exports.mapLeft = mapLeft;
|
|
17
17
|
exports.zip = zip;
|
18
18
|
exports.zipWith = void 0;
|
19
19
|
var tsplus_module_1 = /*#__PURE__*/_interopRequireWildcard(/*#__PURE__*/require("@fncts/base/data/These/constructors"));
|
20
|
-
function
|
21
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
20
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
22
21
|
const zipWith = exports.zipWith = zipWith_1;
|
23
22
|
/**
|
24
|
-
* @tsplus
|
23
|
+
* @tsplus pipeable fncts.These ap
|
25
24
|
*/
|
26
|
-
function
|
27
|
-
return self
|
25
|
+
function ap(that, /** @tsplus auto */S) {
|
26
|
+
return self => {
|
27
|
+
return zipWith_1(that, (f, a) => f(a), S)(self);
|
28
|
+
};
|
28
29
|
}
|
29
30
|
/**
|
30
|
-
* @tsplus
|
31
|
+
* @tsplus pipeable fncts.These bimap
|
31
32
|
*/
|
32
|
-
function
|
33
|
-
return self
|
33
|
+
function bimap(f, g) {
|
34
|
+
return self => {
|
35
|
+
switch (self._tag) {
|
36
|
+
case "Left" /* TheseTag.Left */:
|
37
|
+
return tsplus_module_1.left(f(self.left));
|
38
|
+
case "Right" /* TheseTag.Right */:
|
39
|
+
return tsplus_module_1.right(g(self.right));
|
40
|
+
case "Both" /* TheseTag.Both */:
|
41
|
+
return tsplus_module_1.both(f(self.left), g(self.right));
|
42
|
+
}
|
43
|
+
};
|
44
|
+
}
|
45
|
+
/**
|
46
|
+
* @tsplus pipeable fncts.These catchAll
|
47
|
+
*/
|
48
|
+
function catchAll(f) {
|
49
|
+
return self => {
|
50
|
+
if (self._tag === "Left" /* TheseTag.Left */) {
|
51
|
+
return f(self.left);
|
52
|
+
}
|
53
|
+
return self;
|
54
|
+
};
|
55
|
+
}
|
56
|
+
/**
|
57
|
+
* @tsplus getter fncts.These condemn
|
58
|
+
*/
|
59
|
+
function condemn(self) {
|
60
|
+
if (self._tag === "Both" /* TheseTag.Both */) {
|
61
|
+
return tsplus_module_1.left(self.left);
|
62
|
+
}
|
63
|
+
return self;
|
64
|
+
}
|
65
|
+
/**
|
66
|
+
* @tsplus pipeable fncts.These condemnWhen
|
67
|
+
*/
|
68
|
+
function condemnWhen(p) {
|
69
|
+
return self => {
|
70
|
+
if (self._tag === "Both" /* TheseTag.Both */ && p(self.left)) {
|
71
|
+
return tsplus_module_1.left(self.left);
|
72
|
+
}
|
73
|
+
return self;
|
74
|
+
};
|
75
|
+
}
|
76
|
+
/**
|
77
|
+
* @tsplus pipeable fncts.These flatMap
|
78
|
+
*/
|
79
|
+
function flatMap(f, /** @tsplus auto */S) {
|
80
|
+
return self => {
|
81
|
+
if (self._tag === "Left" /* TheseTag.Left */) {
|
82
|
+
return self;
|
83
|
+
}
|
84
|
+
if (self._tag === "Right" /* TheseTag.Right */) {
|
85
|
+
return f(self.right);
|
86
|
+
}
|
87
|
+
const that = f(self.right);
|
88
|
+
switch (that._tag) {
|
89
|
+
case "Left" /* TheseTag.Left */:
|
90
|
+
return tsplus_module_1.left(S.combine(that.left)(self.left));
|
91
|
+
case "Right" /* TheseTag.Right */:
|
92
|
+
return tsplus_module_1.both(self.left, that.right);
|
93
|
+
case "Both" /* TheseTag.Both */:
|
94
|
+
return tsplus_module_1.both(S.combine(that.left)(self.left), that.right);
|
95
|
+
}
|
96
|
+
};
|
34
97
|
}
|
35
98
|
/**
|
36
99
|
* @tsplus fluent fncts.These isBoth
|
@@ -38,6 +101,18 @@ function isRight(self) {
|
|
38
101
|
function isBoth(self) {
|
39
102
|
return self._tag === "Both" /* TheseTag.Both */;
|
40
103
|
}
|
104
|
+
/**
|
105
|
+
* @tsplus fluent fncts.These isLeft
|
106
|
+
*/
|
107
|
+
function isLeft(self) {
|
108
|
+
return self._tag === "Left" /* TheseTag.Left */;
|
109
|
+
}
|
110
|
+
/**
|
111
|
+
* @tsplus fluent fncts.These isRight
|
112
|
+
*/
|
113
|
+
function isRight(self) {
|
114
|
+
return self._tag === "Right" /* TheseTag.Right */;
|
115
|
+
}
|
41
116
|
/**
|
42
117
|
* @tsplus pipeable fncts.These map
|
43
118
|
*/
|
@@ -69,18 +144,11 @@ function mapLeft(f) {
|
|
69
144
|
};
|
70
145
|
}
|
71
146
|
/**
|
72
|
-
* @tsplus pipeable fncts.These
|
147
|
+
* @tsplus pipeable fncts.These zip
|
73
148
|
*/
|
74
|
-
function
|
149
|
+
function zip(that, /** @tsplus auto */S) {
|
75
150
|
return self => {
|
76
|
-
|
77
|
-
case "Left" /* TheseTag.Left */:
|
78
|
-
return tsplus_module_1.left(f(self.left));
|
79
|
-
case "Right" /* TheseTag.Right */:
|
80
|
-
return tsplus_module_1.right(g(self.right));
|
81
|
-
case "Both" /* TheseTag.Both */:
|
82
|
-
return tsplus_module_1.both(f(self.left), g(self.right));
|
83
|
-
}
|
151
|
+
return zipWith_1(that, (a, b) => [a, b], S)(self);
|
84
152
|
};
|
85
153
|
}
|
86
154
|
/**
|
@@ -119,73 +187,4 @@ function zipWith_1(that, f, /** @tsplus auto */S) {
|
|
119
187
|
}
|
120
188
|
};
|
121
189
|
}
|
122
|
-
/**
|
123
|
-
* @tsplus pipeable fncts.These zip
|
124
|
-
*/
|
125
|
-
function zip(that, /** @tsplus auto */S) {
|
126
|
-
return self => {
|
127
|
-
return zipWith_1(that, (a, b) => [a, b], S)(self);
|
128
|
-
};
|
129
|
-
}
|
130
|
-
/**
|
131
|
-
* @tsplus pipeable fncts.These ap
|
132
|
-
*/
|
133
|
-
function ap(that, /** @tsplus auto */S) {
|
134
|
-
return self => {
|
135
|
-
return zipWith_1(that, (f, a) => f(a), S)(self);
|
136
|
-
};
|
137
|
-
}
|
138
|
-
/**
|
139
|
-
* @tsplus pipeable fncts.These flatMap
|
140
|
-
*/
|
141
|
-
function flatMap(f, /** @tsplus auto */S) {
|
142
|
-
return self => {
|
143
|
-
if (self._tag === "Left" /* TheseTag.Left */) {
|
144
|
-
return self;
|
145
|
-
}
|
146
|
-
if (self._tag === "Right" /* TheseTag.Right */) {
|
147
|
-
return f(self.right);
|
148
|
-
}
|
149
|
-
const that = f(self.right);
|
150
|
-
switch (that._tag) {
|
151
|
-
case "Left" /* TheseTag.Left */:
|
152
|
-
return tsplus_module_1.left(S.combine(that.left)(self.left));
|
153
|
-
case "Right" /* TheseTag.Right */:
|
154
|
-
return tsplus_module_1.both(self.left, that.right);
|
155
|
-
case "Both" /* TheseTag.Both */:
|
156
|
-
return tsplus_module_1.both(S.combine(that.left)(self.left), that.right);
|
157
|
-
}
|
158
|
-
};
|
159
|
-
}
|
160
|
-
/**
|
161
|
-
* @tsplus pipeable fncts.These catchAll
|
162
|
-
*/
|
163
|
-
function catchAll(f) {
|
164
|
-
return self => {
|
165
|
-
if (self._tag === "Left" /* TheseTag.Left */) {
|
166
|
-
return f(self.left);
|
167
|
-
}
|
168
|
-
return self;
|
169
|
-
};
|
170
|
-
}
|
171
|
-
/**
|
172
|
-
* @tsplus getter fncts.These condemn
|
173
|
-
*/
|
174
|
-
function condemn(self) {
|
175
|
-
if (self._tag === "Both" /* TheseTag.Both */) {
|
176
|
-
return tsplus_module_1.left(self.left);
|
177
|
-
}
|
178
|
-
return self;
|
179
|
-
}
|
180
|
-
/**
|
181
|
-
* @tsplus pipeable fncts.These condemnWhen
|
182
|
-
*/
|
183
|
-
function condemnWhen(p) {
|
184
|
-
return self => {
|
185
|
-
if (self._tag === "Both" /* TheseTag.Both */ && p(self.left)) {
|
186
|
-
return tsplus_module_1.left(self.left);
|
187
|
-
}
|
188
|
-
return self;
|
189
|
-
};
|
190
|
-
}
|
191
190
|
//# sourceMappingURL=api.cjs.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"api.cjs","names":["zipWith","exports","zipWith_1","
|
1
|
+
{"version":3,"file":"api.cjs","names":["zipWith","exports","zipWith_1","ap","that","S","self","f","a","bimap","g","_tag","tsplus_module_1","left","right","both","catchAll","condemn","condemnWhen","p","flatMap","combine","isBoth","isLeft","isRight","map","mapLeft","zip","b"],"sources":["../../../_src/data/These/api.ts"],"sourcesContent":[null],"mappings":"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","ignoreList":[]}
|
@@ -9,8 +9,7 @@ exports.right = void 0;
|
|
9
9
|
exports.rightOrBoth = rightOrBoth;
|
10
10
|
var tsplus_module_1 = /*#__PURE__*/_interopRequireWildcard(/*#__PURE__*/require("@fncts/base/data/Maybe/destructors"));
|
11
11
|
var _definition = /*#__PURE__*/require("./definition.cjs");
|
12
|
-
function
|
13
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
12
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
14
13
|
const right = exports.right = right_1;
|
15
14
|
const both = exports.both = both_1;
|
16
15
|
/**
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"constructors.cjs","names":["_definition","require","
|
1
|
+
{"version":3,"file":"constructors.cjs","names":["_definition","require","_interopRequireWildcard","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","right","exports","right_1","both","both_1","left","Left","a","Right","Both","rightOrBoth","tsplus_module_1","match"],"sources":["../../../_src/data/These/constructors.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;AAAA,IAAAA,WAAA,gBAAAC,OAAA;AAAoD,SAAAC,wBAAAC,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAH,uBAAA,YAAAA,CAAAC,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAC,OAAA,EAAAV,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,gBAAAP,CAAA,IAAAD,CAAA,gBAAAC,CAAA,OAAAa,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAC,CAAA,OAAAM,CAAA,IAAAD,CAAA,GAAAU,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAlB,CAAA,EAAAC,CAAA,OAAAM,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAP,CAAA,EAAAM,CAAA,IAAAC,CAAA,CAAAP,CAAA,IAAAD,CAAA,CAAAC,CAAA,WAAAO,CAAA,KAAAR,CAAA,EAAAC,CAAA;MAcpCkB,KAAK,GAAAC,OAAA,CAAAD,KAAA,GAAAE,OAAA;MAQLC,IAAI,GAAAF,OAAA,CAAAE,IAAA,GAAAC,MAAA;AApBpB;;;;AAIM,SAAUC,IAAIA,CAAuBxB,CAAI;EAC7C,OAAO,IAAIyB,gBAAI,CAACzB,CAAC,CAAC;AACpB;AAEA;;;;AAIA,SAAAqB,QAA4CK,CAAI;EAC9C,OAAO,IAAIC,iBAAK,CAACD,CAAC,CAAC;AACrB;AAEA;;;;AAIA,SAAAH,OAA2CvB,CAAI,EAAE0B,CAAI;EACnD,OAAO,IAAIE,gBAAI,CAAC5B,CAAC,EAAE0B,CAAC,CAAC;AACvB;AAEA;;;AAGM,SAAUG,WAAWA,CAAuB7B,CAAW,EAAE0B,CAAI;EACjE,OAAOI,eAAA,CAAAC,KAAA,CACL,MAAMV,OAAA,CAAYK,CAAC,CAAC,EACnB1B,CAAC,IAAKuB,MAAA,CAAWvB,CAAC,EAAE0B,CAAC,CAAC,EAFlB1B,CAAC,CAGP;AACH","ignoreList":[]}
|
@@ -6,8 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
6
6
|
exports.TheseTypeId = exports.These = exports.Right = exports.Left = exports.Both = void 0;
|
7
7
|
exports.isThese = isThese;
|
8
8
|
var tsplus_module_1 = /*#__PURE__*/_interopRequireWildcard(/*#__PURE__*/require("@fncts/base/util/predicates"));
|
9
|
-
function
|
10
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
9
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
11
10
|
var _a, _b, _c;
|
12
11
|
const TheseTypeId = exports.TheseTypeId = /*#__PURE__*/Symbol.for("fncts.data.These");
|
13
12
|
/**
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"definition.cjs","names":["TheseTypeId","exports","Symbol","for","Left","constructor","left","_a","_tag","Right","right","_b","Both","_c","These","isThese","u","tsplus_module_1","isObject"],"sources":["../../../_src/data/These/definition.ts"],"sourcesContent":[null],"mappings":"
|
1
|
+
{"version":3,"file":"definition.cjs","names":["TheseTypeId","exports","Symbol","for","Left","constructor","left","_a","_tag","Right","right","_b","Both","_c","These","isThese","u","tsplus_module_1","isObject"],"sources":["../../../_src/data/These/definition.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;AAMO,MAAMA,WAAW,GAAAC,OAAA,CAAAD,WAAA,gBAAGE,MAAM,CAACC,GAAG,CAAC,kBAAkB,CAAC;AAGzD;;;AAGM,MAAOC,IAAI;EAGfC,YAAqBC,IAAO;IAAP,KAAAA,IAAI,GAAJA,IAAI;IAFhB,KAAAC,EAAA,CAAa,GAAgBP,WAAW;IACxC,KAAAQ,IAAI;EACkB;;AAChCP,OAAA,CAAAG,IAAA,GAAAA,IAAA;KAHWJ,WAAW;AAKvB;;;AAGM,MAAOS,KAAK;EAGhBJ,YAAqBK,KAAQ;IAAR,KAAAA,KAAK,GAALA,KAAK;IAFjB,KAAAC,EAAA,CAAa,GAAgBX,WAAW;IACxC,KAAAQ,IAAI;EACmB;;AACjCP,OAAA,CAAAQ,KAAA,GAAAA,KAAA;KAHWT,WAAW;AAKvB;;;AAGM,MAAOY,IAAI;EAGfP,YACWC,IAAO,EACPI,KAAQ;IADR,KAAAJ,IAAI,GAAJA,IAAI;IACJ,KAAAI,KAAK,GAALA,KAAK;IAJP,KAAAG,EAAA,CAAa,GAAgBb,WAAW;IACxC,KAAAQ,IAAI;EAIV;;AACJP,OAAA,CAAAW,IAAA,GAAAA,IAAA;KANWZ,WAAW;AAkBhB,MAAMc,KAAK,GAAAb,OAAA,CAAAa,KAAA,GAAa,EAAE;AAEjC;;;AAGM,SAAUC,OAAOA,CAACC,CAAU;EAChC,OAAOC,eAAA,CAAAC,QAAQ,CAACF,CAAC,CAAC,IAAIhB,WAAW,IAAIgB,CAAC;AACxC","ignoreList":[]}
|
@@ -11,8 +11,7 @@ exports.unsafeGetLeft = unsafeGetLeft;
|
|
11
11
|
exports.unsafeGetRight = unsafeGetRight;
|
12
12
|
var tsplus_module_1 = /*#__PURE__*/_interopRequireWildcard(/*#__PURE__*/require("@fncts/base/data/These/api"));
|
13
13
|
var tsplus_module_2 = /*#__PURE__*/_interopRequireWildcard(/*#__PURE__*/require("@fncts/base/data/Maybe/constructors"));
|
14
|
-
function
|
15
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
14
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
16
15
|
const fileName_1 = "(@fncts/base) src/data/These/destructors.ts";
|
17
16
|
const leftMaybe = exports.leftMaybe = leftMaybe_1;
|
18
17
|
/**
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"destructors.cjs","names":["leftMaybe","exports","leftMaybe_1","unsafeGetRight","self","tsplus_module_1","isRight","isBoth","right","undefined","unsafeGetLeft","isLeft","left","rightMaybe","tsplus_module_2","just","fileName_1","nothing","match","both","_tag","match2"],"sources":["../../../_src/data/These/destructors.ts"],"sourcesContent":[null],"mappings":"
|
1
|
+
{"version":3,"file":"destructors.cjs","names":["leftMaybe","exports","leftMaybe_1","unsafeGetRight","self","tsplus_module_1","isRight","isBoth","right","undefined","unsafeGetLeft","isLeft","left","rightMaybe","tsplus_module_2","just","fileName_1","nothing","match","both","_tag","match2"],"sources":["../../../_src/data/These/destructors.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;MA0BgBA,SAAS,GAAAC,OAAA,CAAAD,SAAA,GAAAE,WAAA;AAxBzB;;;AAGM,SAAUC,cAAcA,CAAOC,IAAiB;EACpD,OAAOC,eAAA,CAAAC,OAAA,CAAAF,IAAI,CAAU,IAAIC,eAAA,CAAAE,MAAA,CAAAH,IAAI,CAAS,GAAGA,IAAI,CAACI,KAAK,GAAGC,SAAS;AACjE;AAEA;;;AAGM,SAAUC,aAAaA,CAAON,IAAiB;EACnD,OAAOC,eAAA,CAAAM,MAAA,CAAAP,IAAI,CAAS,GAAGA,IAAI,CAACQ,IAAI,GAAGH,SAAS;AAC9C;AAEA;;;AAGM,SAAUI,UAAUA,CAAOT,IAAiB;EAChD,OAAOC,eAAA,CAAAC,OAAA,CAAAF,IAAI,CAAU,IAAIC,eAAA,CAAAE,MAAA,CAAAH,IAAI,CAAS,GAAGU,eAAA,CAAAC,IAAA,CAAKX,IAAI,CAACI,KAAK,EAAAQ,UAAA,YAAC,GAAGF,eAAA,CAAAG,OAAA,CAAAD,UAAA,YAAS;AACvE;AAEA;;;AAGA,SAAAd,YAAgCE,IAAiB;EAC/C,OAAOC,eAAA,CAAAM,MAAA,CAAAP,IAAI,CAAS,GAAGU,eAAA,CAAAC,IAAA,CAAKX,IAAI,CAACQ,IAAI,EAAAI,UAAA,YAAC,GAAGF,eAAA,CAAAG,OAAA,CAAAD,UAAA,YAAS;AACpD;AAEA;;;AAGM,SAAUE,KAAKA,CAAgBN,IAAiB,EAAEJ,KAAkB,EAAEW,IAAuB;EACjG,OAAQf,IAAiB,IAAe;IACtC,QAAQA,IAAI,CAACgB,IAAI;MACf;QACE,OAAOR,IAAI,CAACR,IAAI,CAACQ,IAAI,CAAC;MACxB;QACE,OAAOJ,KAAK,CAACJ,IAAI,CAACI,KAAK,CAAC;MAC1B;QACE,OAAOW,IAAI,CAACf,IAAI,CAACQ,IAAI,EAAER,IAAI,CAACI,KAAK,CAAC;IACtC;EACF,CAAC;AACH;AAEA;;;AAGM,SAAUa,MAAMA,CAAaT,IAAiB,EAAEJ,KAA+B;EACnF,OAAQJ,IAAiB,IAAW;IAClC,QAAQA,IAAI,CAACgB,IAAI;MACf;QACE,OAAOR,IAAI,CAACR,IAAI,CAACQ,IAAI,CAAC;MACxB;MACA;QACE,OAAOJ,KAAK,CAAAN,WAAA,CAACE,IAAI,GAAYA,IAAI,CAACI,KAAK,CAAC;IAC5C;EACF,CAAC;AACH","ignoreList":[]}
|
@@ -7,8 +7,7 @@ exports.deriveGuard = deriveGuard;
|
|
7
7
|
var tsplus_module_1 = /*#__PURE__*/_interopRequireWildcard(/*#__PURE__*/require("@fncts/base/data/These/definition"));
|
8
8
|
var tsplus_module_2 = /*#__PURE__*/_interopRequireWildcard(/*#__PURE__*/require("@fncts/base/data/These/api"));
|
9
9
|
var tsplus_module_3 = /*#__PURE__*/_interopRequireWildcard(/*#__PURE__*/require("@fncts/base/data/Guard/definition"));
|
10
|
-
function
|
11
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
10
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
12
11
|
/**
|
13
12
|
* @tsplus derive fncts.Guard[fncts.These]<_> 10
|
14
13
|
*/
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"instances.cjs","names":["deriveGuard","left","right","tsplus_module_3","makeGuard","u","tsplus_module_1","isThese","tsplus_module_2","isLeft","is","isRight"],"sources":["../../../_src/data/These/instances.ts"],"sourcesContent":[null],"mappings":"
|
1
|
+
{"version":3,"file":"instances.cjs","names":["deriveGuard","left","right","tsplus_module_3","makeGuard","u","tsplus_module_1","isThese","tsplus_module_2","isLeft","is","isRight"],"sources":["../../../_src/data/These/instances.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;AAEA;;;AAGM,SAAUA,WAAWA,CACzB,GAAG,CAACC,IAAI,EAAEC,KAAK,CAAoF;EAEnG,OAAOC,eAAA,CAAAC,SAAA,CAAOC,CAAC,IAAY;IACzB,IAAIC,eAAA,CAAAC,OAAA,CAAcF,CAAC,CAAC,EAAE;MACpB,IAAIG,eAAA,CAAAC,MAAA,CAAAJ,CAAC,CAAS,EAAE;QACd,OAAOJ,IAAI,CAACS,EAAE,CAACL,CAAC,CAACJ,IAAI,CAAC;MACxB;MACA,IAAIO,eAAA,CAAAG,OAAA,CAAAN,CAAC,CAAU,EAAE;QACf,OAAOH,KAAK,CAACQ,EAAE,CAACL,CAAC,CAACH,KAAK,CAAC;MAC1B;MACA,OAAOA,KAAK,CAACQ,EAAE,CAACL,CAAC,CAACH,KAAK,CAAC,IAAID,IAAI,CAACS,EAAE,CAACL,CAAC,CAACJ,IAAI,CAAC;IAC7C;IACA,OAAO,KAAK;EACd,CAAC,CAAC;AACJ","ignoreList":[]}
|
package/_cjs/data/Trace/api.cjs
CHANGED
@@ -9,8 +9,7 @@ var tsplus_module_1 = /*#__PURE__*/_interopRequireWildcard(/*#__PURE__*/require(
|
|
9
9
|
var tsplus_module_2 = /*#__PURE__*/_interopRequireWildcard(/*#__PURE__*/require("@fncts/base/data/FiberId/api"));
|
10
10
|
var tsplus_module_3 = /*#__PURE__*/_interopRequireWildcard(/*#__PURE__*/require("@fncts/base/collection/immutable/Conc/api"));
|
11
11
|
var tsplus_module_4 = /*#__PURE__*/_interopRequireWildcard(/*#__PURE__*/require("@fncts/base/data/TraceElement/definition"));
|
12
|
-
function
|
13
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
12
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
14
13
|
/**
|
15
14
|
* @tsplus pipeable fncts.Trace combine
|
16
15
|
*/
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"api.cjs","names":["combine","that","self","tsplus_module_1","Trace","tsplus_module_2","fiberId","tsplus_module_3","concat","stackTrace","toJS","map","el","tsplus_module_4","show"],"sources":["../../../_src/data/Trace/api.ts"],"sourcesContent":[null],"mappings":"
|
1
|
+
{"version":3,"file":"api.cjs","names":["combine","that","self","tsplus_module_1","Trace","tsplus_module_2","fiberId","tsplus_module_3","concat","stackTrace","toJS","map","el","tsplus_module_4","show"],"sources":["../../../_src/data/Trace/api.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;AAAA;;;AAGM,SAAUA,OAAOA,CAACC,IAAW;EACjC,OAAQC,IAAW,IAAW;IAC5B,OAAO,IAAAC,eAAA,CAAIC,KAAK,CAACC,eAAA,CAAAL,OAAA,CAAqBC,IAAI,CAACK,OAAO,EAAjCJ,IAAI,CAACI,OAAO,CAAsB,EAAEC,eAAA,CAAAC,MAAA,CAAuBP,IAAI,CAACQ,UAAU,EAAtCP,IAAI,CAACO,UAAU,CAAwB,CAAC;EAC/F,CAAC;AACH;AAEA;;;AAGM,SAAUC,IAAIA,CAACR,IAAW;EAC9B,OAAOK,eAAA,CAAAI,GAAA,CAAqBC,EAAE,IAAIC,eAAA,CAAAC,IAAA,CAACF,EAAE,CAAK,EAAnCV,IAAI,CAACO,UAAU,CAAqB;AAC7C","ignoreList":[]}
|
@@ -8,8 +8,7 @@ exports.none = void 0;
|
|
8
8
|
var tsplus_module_1 = /*#__PURE__*/_interopRequireWildcard(/*#__PURE__*/require("@fncts/base/data/Trace/definition"));
|
9
9
|
var tsplus_module_2 = /*#__PURE__*/_interopRequireWildcard(/*#__PURE__*/require("@fncts/base/data/FiberId/constructors"));
|
10
10
|
var tsplus_module_3 = /*#__PURE__*/_interopRequireWildcard(/*#__PURE__*/require("@fncts/base/collection/immutable/Conc/api/empty"));
|
11
|
-
function
|
12
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
11
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
13
12
|
/**
|
14
13
|
* @tsplus static fncts.TraceOps __call
|
15
14
|
*/
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"constructors.cjs","names":["make","fiberId","stackTrace","tsplus_module_1","Trace","none","exports","tsplus_module_2","tsplus_module_3","empty"],"sources":["../../../_src/data/Trace/constructors.ts"],"sourcesContent":[null],"mappings":"
|
1
|
+
{"version":3,"file":"constructors.cjs","names":["make","fiberId","stackTrace","tsplus_module_1","Trace","none","exports","tsplus_module_2","tsplus_module_3","empty"],"sources":["../../../_src/data/Trace/constructors.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;AAEA;;;AAGM,SAAUA,IAAIA,CAACC,OAAgB,EAAEC,UAA8B;EACnE,OAAO,IAAAC,eAAA,CAAIC,KAAK,CAACH,OAAO,EAAEC,UAAU,CAAC;AACvC;AAEA;;;AAGO,MAAMG,IAAI,GAAAC,OAAA,CAAAD,IAAA,gBAAU,IAAAF,eAAA,CAAIC,KAAK,CAAAG,eAAA,CAAAF,IAAA,eAAeG,eAAA,CAAAC,KAAA,EAAY,CAAC","ignoreList":[]}
|
package/_cjs/data/Zipped.cjs
CHANGED
@@ -7,8 +7,7 @@ exports.isZipped = exports.ZippedTypeId = exports.Zipped = void 0;
|
|
7
7
|
exports.make = make;
|
8
8
|
var tsplus_module_1 = /*#__PURE__*/_interopRequireWildcard(/*#__PURE__*/require("@fncts/base/data/function/api"));
|
9
9
|
var _predicates = /*#__PURE__*/require("@fncts/base/util/predicates");
|
10
|
-
function
|
11
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
10
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
12
11
|
const isZipped = exports.isZipped = isZipped_1;
|
13
12
|
const ZippedTypeId = exports.ZippedTypeId = /*#__PURE__*/Symbol.for("fncts.Zipped");
|
14
13
|
const Zipped = exports.Zipped = {};
|
package/_cjs/data/Zipped.cjs.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Zipped.cjs","names":["_predicates","require","
|
1
|
+
{"version":3,"file":"Zipped.cjs","names":["_predicates","require","_interopRequireWildcard","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","isZipped","exports","isZipped_1","ZippedTypeId","Symbol","for","Zipped","a","isArray","make","b","zipped"],"sources":["../../_src/data/Zipped.ts"],"sourcesContent":[null],"mappings":";;;;;;;;AAAA,IAAAA,WAAA,gBAAAC,OAAA;AAAsD,SAAAC,wBAAAC,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAH,uBAAA,YAAAA,CAAAC,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAC,OAAA,EAAAV,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,gBAAAP,CAAA,IAAAD,CAAA,gBAAAC,CAAA,OAAAa,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAC,CAAA,OAAAM,CAAA,IAAAD,CAAA,GAAAU,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAlB,CAAA,EAAAC,CAAA,OAAAM,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAP,CAAA,EAAAM,CAAA,IAAAC,CAAA,CAAAP,CAAA,IAAAD,CAAA,CAAAC,CAAA,WAAAO,CAAA,KAAAR,CAAA,EAAAC,CAAA;MA2BtCkB,QAAQ,GAAAC,OAAA,CAAAD,QAAA,GAAAE,UAAA;AAzBjB,MAAMC,YAAY,GAAAF,OAAA,CAAAE,YAAA,gBAAGC,MAAM,CAACC,GAAG,CAAC,cAAc,CAAC;AAoB/C,MAAMC,MAAM,GAAAL,OAAA,CAAAK,MAAA,GAAc,EAAE;AAEnC;;;AAGA,SAAAJ,WAAyBK,CAAU;EACjC,OAAO,IAAAC,mBAAO,EAACD,CAAC,CAAC,IAAIJ,YAAY,IAAII,CAAC;AACxC;AAEA;;;AAGM,SAAUE,IAAIA,CAAOF,CAAI,EAAEG,CAAI;EACnC,IAAIC,MAAmB;EACvB,IAAIT,UAAA,CAASK,CAAC,CAAC,EAAE;IACf,IAAIL,UAAA,CAASQ,CAAC,CAAC,EAAE;MACfC,MAAM,GAAgB,CAAC,GAAGJ,CAAC,EAAE,GAAGG,CAAC,CAAE;IACrC,CAAC,MAAM;MACLC,MAAM,GAAgB,CAAC,GAAGJ,CAAC,EAAEG,CAAC,CAAE;IAClC;EACF,CAAC,MAAM,IAAIR,UAAA,CAASQ,CAAC,CAAC,EAAE;IACtBC,MAAM,GAAgB,CAACJ,CAAC,EAAE,GAAGG,CAAC,CAAE;EAClC,CAAC,MAAM;IACLC,MAAM,GAAgB,CAACJ,CAAC,EAAEG,CAAC,CAAE;EAC/B;EACA;EACAC,MAAM,CAACR,YAAY,CAAC,GAAGA,YAAY;EACnC,OAAoBQ,MAAM;AAC5B","ignoreList":[]}
|
@@ -7,8 +7,7 @@ exports.Guard = void 0;
|
|
7
7
|
var tsplus_module_1 = /*#__PURE__*/_interopRequireWildcard(/*#__PURE__*/require("@fncts/base/data/Guard/definition"));
|
8
8
|
var P = /*#__PURE__*/_interopRequireWildcard(/*#__PURE__*/require("@fncts/base/typeclass"));
|
9
9
|
var _predicates = /*#__PURE__*/require("@fncts/base/util/predicates");
|
10
|
-
function
|
11
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
10
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
12
11
|
/**
|
13
12
|
* @tsplus static fncts.BigIntOps Guard
|
14
13
|
* @tsplus static fncts.GuardOps bigint
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"instances.cjs","names":["P","_interopRequireWildcard","require","_predicates","
|
1
|
+
{"version":3,"file":"instances.cjs","names":["P","_interopRequireWildcard","require","_predicates","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","Guard","exports","tsplus_module_1","makeGuard","isBigInt"],"sources":["../../../_src/data/bigint/instances.ts"],"sourcesContent":[null],"mappings":";;;;;;;AAAA,IAAAA,CAAA,gBAAAC,uBAAA,cAAAC,OAAA;AACA,IAAAC,WAAA,gBAAAD,OAAA;AAAuD,SAAAD,wBAAAG,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAL,uBAAA,YAAAA,CAAAG,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAC,OAAA,EAAAV,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,gBAAAP,CAAA,IAAAD,CAAA,gBAAAC,CAAA,OAAAa,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAC,CAAA,OAAAM,CAAA,IAAAD,CAAA,GAAAU,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAlB,CAAA,EAAAC,CAAA,OAAAM,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAP,CAAA,EAAAM,CAAA,IAAAC,CAAA,CAAAP,CAAA,IAAAD,CAAA,CAAAC,CAAA,WAAAO,CAAA,KAAAR,CAAA,EAAAC,CAAA;AAEvD;;;;;AAKO,MAAMkB,KAAK,GAAAC,OAAA,CAAAD,KAAA,gBAAoBE,eAAA,CAAAC,SAAA,CAAQC,oBAAQ,CAAC","ignoreList":[]}
|
@@ -7,8 +7,7 @@ exports.Guard = void 0;
|
|
7
7
|
var tsplus_module_1 = /*#__PURE__*/_interopRequireWildcard(/*#__PURE__*/require("@fncts/base/data/Guard/definition"));
|
8
8
|
var P = /*#__PURE__*/_interopRequireWildcard(/*#__PURE__*/require("@fncts/base/typeclass"));
|
9
9
|
var _predicates = /*#__PURE__*/require("@fncts/base/util/predicates");
|
10
|
-
function
|
11
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
10
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
12
11
|
/**
|
13
12
|
* @tsplus static fncts.BooleanOps Guard
|
14
13
|
* @tsplus static fncts.GuardOps boolean
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"instances.cjs","names":["P","_interopRequireWildcard","require","_predicates","
|
1
|
+
{"version":3,"file":"instances.cjs","names":["P","_interopRequireWildcard","require","_predicates","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","Guard","exports","tsplus_module_1","makeGuard","isBoolean"],"sources":["../../../_src/data/boolean/instances.ts"],"sourcesContent":[null],"mappings":";;;;;;;AAAA,IAAAA,CAAA,gBAAAC,uBAAA,cAAAC,OAAA;AACA,IAAAC,WAAA,gBAAAD,OAAA;AAAwD,SAAAD,wBAAAG,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAL,uBAAA,YAAAA,CAAAG,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAC,OAAA,EAAAV,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,gBAAAP,CAAA,IAAAD,CAAA,gBAAAC,CAAA,OAAAa,cAAA,CAAAC,IAAA,CAAAf,CAAA,EAAAC,CAAA,OAAAM,CAAA,IAAAD,CAAA,GAAAU,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAlB,CAAA,EAAAC,CAAA,OAAAM,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAP,CAAA,EAAAM,CAAA,IAAAC,CAAA,CAAAP,CAAA,IAAAD,CAAA,CAAAC,CAAA,WAAAO,CAAA,KAAAR,CAAA,EAAAC,CAAA;AAExD;;;;;AAKO,MAAMkB,KAAK,GAAAC,OAAA,CAAAD,KAAA,gBAAqBE,eAAA,CAAAC,SAAA,CAAQC,qBAAS,CAAC","ignoreList":[]}
|
@@ -6,8 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
6
6
|
exports.IOErrorTypeId = exports.IOError = void 0;
|
7
7
|
exports.isIOError = isIOError;
|
8
8
|
var tsplus_module_1 = /*#__PURE__*/_interopRequireWildcard(/*#__PURE__*/require("@fncts/base/util/predicates"));
|
9
|
-
function
|
10
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
9
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
11
10
|
var _a;
|
12
11
|
const IOErrorTypeId = exports.IOErrorTypeId = /*#__PURE__*/Symbol.for("fncts.base.exceptions.IOError");
|
13
12
|
class IOError {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"IOError.cjs","names":["IOErrorTypeId","exports","Symbol","for","IOError","constructor","cause","_a","isIOError","u","tsplus_module_1","isObject"],"sources":["../../../_src/data/exceptions/IOError.ts"],"sourcesContent":[null],"mappings":"
|
1
|
+
{"version":3,"file":"IOError.cjs","names":["IOErrorTypeId","exports","Symbol","for","IOError","constructor","cause","_a","isIOError","u","tsplus_module_1","isObject"],"sources":["../../../_src/data/exceptions/IOError.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;AAAO,MAAMA,aAAa,GAAAC,OAAA,CAAAD,aAAA,gBAAGE,MAAM,CAACC,GAAG,CAAC,+BAA+B,CAAC;AAGlE,MAAOC,OAAO;EAElBC,YAAqBC,KAAe;IAAf,KAAAA,KAAK,GAALA,KAAK;IADjB,KAAAC,EAAA,CAAe,GAAkBP,aAAa;EAChB;;AACxCC,OAAA,CAAAG,OAAA,GAAAA,OAAA;KAFWJ,aAAa;AAInB,SAAUQ,SAASA,CAACC,CAAU;EAClC,OAAOC,eAAA,CAAAC,QAAQ,CAACF,CAAC,CAAC,IAAIT,aAAa,IAAIS,CAAC;AAC1C","ignoreList":[]}
|
@@ -6,8 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
6
6
|
exports.InterruptedExceptionTypeId = exports.InterruptedException = void 0;
|
7
7
|
exports.isInterruptedException = isInterruptedException;
|
8
8
|
var tsplus_module_1 = /*#__PURE__*/_interopRequireWildcard(/*#__PURE__*/require("@fncts/base/util/predicates"));
|
9
|
-
function
|
10
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
9
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
11
10
|
var _a;
|
12
11
|
const InterruptedExceptionTypeId = exports.InterruptedExceptionTypeId = /*#__PURE__*/Symbol.for("fncts.InterruptedException");
|
13
12
|
class InterruptedException {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"InterruptedException.cjs","names":["InterruptedExceptionTypeId","exports","Symbol","for","InterruptedException","constructor","message","_a","isInterruptedException","u","tsplus_module_1","isObject"],"sources":["../../../_src/data/exceptions/InterruptedException.ts"],"sourcesContent":[null],"mappings":"
|
1
|
+
{"version":3,"file":"InterruptedException.cjs","names":["InterruptedExceptionTypeId","exports","Symbol","for","InterruptedException","constructor","message","_a","isInterruptedException","u","tsplus_module_1","isObject"],"sources":["../../../_src/data/exceptions/InterruptedException.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;AAAO,MAAMA,0BAA0B,GAAAC,OAAA,CAAAD,0BAAA,gBAAGE,MAAM,CAACC,GAAG,CAAC,4BAA4B,CAAC;AAG5E,MAAOC,oBAAoB;EAE/BC,YAAqBC,OAAgB;IAAhB,KAAAA,OAAO,GAAPA,OAAO;IADnB,KAAAC,EAAA,CAA4B,GAA+BP,0BAA0B;EACtD;;AACzCC,OAAA,CAAAG,oBAAA,GAAAA,oBAAA;KAFWJ,0BAA0B;AAIhC,SAAUQ,sBAAsBA,CAACC,CAAU;EAC/C,OAAOC,eAAA,CAAAC,QAAQ,CAACF,CAAC,CAAC,IAAIT,0BAA0B,IAAIS,CAAC;AACvD","ignoreList":[]}
|
@@ -10,8 +10,7 @@ var tsplus_module_3 = /*#__PURE__*/_interopRequireWildcard(/*#__PURE__*/require(
|
|
10
10
|
var _Ordering = /*#__PURE__*/require("@fncts/base/data/Ordering");
|
11
11
|
var _predicates = /*#__PURE__*/require("@fncts/base/util/predicates");
|
12
12
|
var P = /*#__PURE__*/_interopRequireWildcard(/*#__PURE__*/require("../../typeclass.cjs"));
|
13
|
-
function
|
14
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
13
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
15
14
|
/**
|
16
15
|
* @tsplus static fncts.NumberOps Eq
|
17
16
|
* @tsplus implicit
|