diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu-void.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu-void.html deleted file mode 100644 index 7d7f0d3e..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu-void.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - allOfCffuVoid - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

allOfCffuVoid

-
-
fun Collection<Cffu<*>>.allOfCffuVoid(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is completed when all the given Cffus complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given Cffus are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no Cffus are provided, returns a Cffu completed with the value null.

Same as CffuFactory.allOf, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun Array<out Cffu<*>>.allOfCffuVoid(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is completed when all the given Cffus complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given Cffus are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no Cffus are provided, returns a Cffu completed with the value null.

Same as CffuFactory.allOf, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allOfCffuVoidCf")
fun Collection<CompletableFuture<*>>.allOfCffuVoid(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is completed when all the given CompletableFutures complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given CompletableFutures are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no CompletableFutures are provided, returns a Cffu completed with the value null.

Same as CffuFactory.allOf, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html deleted file mode 100644 index 699fe040..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - allOfCffu - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

allOfCffu

-
-
fun <T> Collection<Cffu<T>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results of all the given Cffus, the new Cffu is completed when all the given Cffus complete. If any of the given Cffus complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value emptyList.

Same as allOfCffuVoid, but the returned Cffu contains the results of input Cffus. Same as CffuFactory.cffuAllOf, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<Cffu<T>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results of all the given Cffus, the new Cffu is completed when all the given Cffus complete. If any of the given Cffus complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value emptyList.

Same as allOfCffuVoid, but the returned Cffu contains the results of input Cffus. Same as CffuFactory.cffuAllOf, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allOfCffuCf")
fun <T> Collection<CompletableFuture<T>>.allOfCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results of all the given CompletableFutures, the new Cffu is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value emptyList.

Same as allOfCffuVoid, but the returned Cffu contains the results of input CompletableFutures. Same as CffuFactory.cffuAllOf, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future-void.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future-void.html deleted file mode 100644 index dc45a57b..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future-void.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - allOfCompletableFutureVoid - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

allOfCompletableFutureVoid

-
-

Returns a new CompletableFuture that is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given CompletableFutures are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If no CompletableFutures are provided, returns a CompletableFuture completed with the value null.

Among the applications of this method is to await completion of a set of independent CompletableFutures before continuing a program, as in: CompletableFuture.allOf(c1, c2, c3).join();. Returns a new CompletableFuture that is completed when all the given CompletableFutures complete.

Same as CompletableFuture.allOf, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html deleted file mode 100644 index 56d0abbc..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - allOfCompletableFuture - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

allOfCompletableFuture

-
-

Returns a new CompletableFuture with the results of all the given CompletableFutures, the returned new CompletableFuture is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value emptyList.

Same as allOfCompletableFutureVoid, but the returned CompletableFuture contains the results of input CompletableFutures. Same as CompletableFutureUtils.allOfWithResult, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu-void.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu-void.html deleted file mode 100644 index b91be6ff..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu-void.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - allOfFastFailCffuVoid - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

allOfFastFailCffuVoid

-
-
fun Collection<Cffu<*>>.allOfFastFailCffuVoid(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is successful when all the given Cffus success, the results(Cffu<Void>) of the given Cffus are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value null.

Same as CffuFactory.allOfFastFail, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun Array<out Cffu<*>>.allOfFastFailCffuVoid(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is successful when all the given Cffus success, the results(Cffu<Void>) of the given Cffus are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value null.

Same as CffuFactory.allOfFastFail, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allOfFastFailCffuVoidCf")
fun Collection<CompletableFuture<*>>.allOfFastFailCffuVoid(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is successful when all the given CompletableFutures success, the results(Cffu<Void>) of the given CompletableFutures are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value null.

Same as CffuFactory.allOfFastFail, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html deleted file mode 100644 index 0989aaaf..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - allOfFastFailCffu - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

allOfFastFailCffu

-
-
fun <T> Collection<Cffu<T>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results of all the given Cffus, the new Cffu success when all the given Cffus success. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value emptyList.

Same as allOfFastFailCffuVoid, but the returned Cffu contains the results of input Cffus. Same as CffuFactory.cffuAllOfFastFail, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<Cffu<T>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results of all the given Cffus, the new Cffu success when all the given Cffus success. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value emptyList.

Same as allOfFastFailCffuVoid, but the returned Cffu contains the results of input Cffus. Same as CffuFactory.cffuAllOfFastFail, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allOfFastFailCffuCf")
fun <T> Collection<CompletableFuture<T>>.allOfFastFailCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results of all the given CompletableFutures, the new Cffu success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value emptyList.

Same as allOfFastFailCffuVoid, but the returned Cffu contains the results of input Cffus. Same as CffuFactory.cffuAllOfFastFail, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future-void.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future-void.html deleted file mode 100644 index 0d5dd3aa..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future-void.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - allOfFastFailCompletableFutureVoid - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

allOfFastFailCompletableFutureVoid

-
-

Returns a new CompletableFuture that is successful when all the given CompletableFutures success, the results(CompletableFuture<Void>) of the given CompletableFutures are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value null.

Same as CompletableFutureUtils.allOfFastFail, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html deleted file mode 100644 index 80c1c896..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - allOfFastFailCompletableFuture - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

allOfFastFailCompletableFuture

-
-

Returns a new CompletableFuture with the results of all the given CompletableFutures, the new CompletableFuture success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value emptyList.

Same as allOfFastFailCompletableFutureVoid, but the returned CompletableFuture contains the results of input CompletableFutures. Same as CompletableFutureUtils.allOfFastFailWithResult, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu-any.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu-any.html deleted file mode 100644 index 9bc72e05..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu-any.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - anyOfCffuAny - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

anyOfCffuAny

-
-
fun Collection<Cffu<*>>.anyOfCffuAny(cffuFactory: CffuFactory = ABSENT): Cffu<Any>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

Same as CffuFactory.anyOf, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun Array<out Cffu<*>>.anyOfCffuAny(cffuFactory: CffuFactory = ABSENT): Cffu<Any>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

Same as CffuFactory.anyOf, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "anyOfCffuAnyCf")
fun Collection<CompletableFuture<*>>.anyOfCffuAny(cffuFactory: CffuFactory): Cffu<Any>

Returns a new Cffu that is completed when any of the given CompletableFutures complete, with the same result.

Same as CffuFactory.anyOf, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html deleted file mode 100644 index b6473819..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - anyOfCffu - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

anyOfCffu

-
-
fun <T> Collection<Cffu<T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

Same as anyOfCffuAny, but return result type is specified type instead of type Any. Same as CffuFactory.cffuAnyOf, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<Cffu<T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

Same as anyOfCffuAny, but return result type is specified type instead of type Any. Same as CffuFactory.cffuAnyOf, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "anyOfCffuCf")
fun <T> Collection<CompletableFuture<T>>.anyOfCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is completed when any of the given CompletableFutures complete, with the same result.

Same as anyOfCffuAny, but return result type is specified type instead of type Any. Same as CffuFactory.cffuAnyOf, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future-any.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future-any.html deleted file mode 100644 index 74b3e968..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future-any.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - anyOfCompletableFutureAny - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

anyOfCompletableFutureAny

-
-

Returns a new CompletableFuture that is completed when any of the given CompletableFutures complete, with the same result. Otherwise, if it completed exceptionally, the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns an incomplete CompletableFuture.

Same as CompletableFuture.anyOf, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html deleted file mode 100644 index 84a78707..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - anyOfCompletableFuture - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

anyOfCompletableFuture

-
-

Returns a new CompletableFuture that is completed when any of the given CompletableFutures complete, with the same result. Otherwise, if it completed exceptionally, the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns an incomplete CompletableFuture.

Same as anyOfCompletableFutureAny, but return result type is specified type instead of type Any. Same as CompletableFutureUtils.anyOfWithType, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu-any.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu-any.html deleted file mode 100644 index 904ea399..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu-any.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - anyOfSuccessCffuAny - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

anyOfSuccessCffuAny

-
-
fun Collection<Cffu<*>>.anyOfSuccessCffuAny(cffuFactory: CffuFactory = ABSENT): Cffu<Any>

Returns a new Cffu that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

Same as CffuFactory.anyOfSuccess, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun Array<out Cffu<*>>.anyOfSuccessCffuAny(cffuFactory: CffuFactory = ABSENT): Cffu<Any>

Returns a new Cffu that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

Same as CffuFactory.anyOfSuccess, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "anyOfSuccessCffuAnyCf")
fun Collection<CompletableFuture<*>>.anyOfSuccessCffuAny(cffuFactory: CffuFactory): Cffu<Any>

Returns a new Cffu that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

Same as CffuFactory.anyOfSuccess, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html deleted file mode 100644 index 266214bb..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - anyOfSuccessCffu - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

anyOfSuccessCffu

-
-
fun <T> Collection<Cffu<T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is successful when any of the given Cffus success, with the same result. Otherwise, all the given Cffus complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given Cffus as its cause. If no Cffus are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

Same as CffuFactory.cffuAnyOfSuccess, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<Cffu<T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is successful when any of the given Cffus success, with the same result. Otherwise, all the given Cffus complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given Cffus as its cause. If no Cffus are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

Same as CffuFactory.cffuAnyOfSuccess, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "anyOfSuccessCffuCf")
fun <T> Collection<CompletableFuture<T>>.anyOfSuccessCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

Same as CffuFactory.cffuAnyOfSuccess, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future-any.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future-any.html deleted file mode 100644 index 82a38db8..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future-any.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - anyOfSuccessCompletableFutureAny - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

anyOfSuccessCompletableFutureAny

-
-

Returns a new CompletableFuture that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new CompletableFuture that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

Same as CompletableFutureUtils.anyOfSuccess, providing this method is convenient for method chaining.

See also


Returns a new CompletableFuture that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception CompletableFuture any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

Same as CompletableFutureUtils.anyOfSuccess, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html deleted file mode 100644 index 8df02fd4..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - anyOfSuccessCompletableFuture - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

anyOfSuccessCompletableFuture

-
-

Returns a new CompletableFuture that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new CompletableFuture that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

Same as anyOfSuccessCompletableFutureAny, but return result type is specified type instead of type Any. Same as CompletableFutureUtils.anyOfSuccessWithType, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/as-cffu.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/as-cffu.html deleted file mode 100644 index 2e618a1b..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/as-cffu.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - asCffu - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

asCffu

-
-
fun <T> CompletionStage<T>.asCffu(cffuFactory: CffuFactory): Cffu<T>

Wrap an existed CompletableFuture/CompletionStage to Cffu.

Same as CffuFactory.asCffu, providing this method is convenient for method chaining.

See also


Wrap input CompletableFuture/CompletionStage collection elements to Cffu by CffuFactory.asCffu.

Same as CffuFactory.asCffuArray, providing this method is convenient for method chaining.

See also


fun <T> Array<out CompletionStage<T>>.asCffu(cffuFactory: CffuFactory): Array<Cffu<T>>

Wrap input CompletableFuture/CompletionStage array elements to Cffu by CffuFactory.asCffu.

Same as CffuFactory.asCffuArray, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-complete-async.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-complete-async.html deleted file mode 100644 index b10a05fb..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-complete-async.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - cffuCompleteAsync - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuCompleteAsync

-
-

Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the default executor.

Return

given CompletableFuture

Parameters

supplier

a function returning the value to be used to complete given CompletableFuture


fun <T> CompletableFuture<T>.cffuCompleteAsync(supplier: () -> T, executor: Executor): CompletableFuture<T>

Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the given executor.

Return

given CompletableFuture

Parameters

supplier

a function returning the value to be used to complete given CompletableFuture

executor

the executor to use for asynchronous execution

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-complete-on-timeout.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-complete-on-timeout.html deleted file mode 100644 index 39bf4192..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-complete-on-timeout.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - cffuCompleteOnTimeout - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuCompleteOnTimeout

-
-

Completes given CompletableFuture with the given value if not otherwise completed before the given timeout.

Return

given CompletableFuture

Parameters

value

the value to use upon timeout

timeout

how long to wait before completing normally with the given value, in units of unit

unit

a TimeUnit determining how to interpret the timeout parameter

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-copy.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-copy.html deleted file mode 100644 index 4983e563..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-copy.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - cffuCopy - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuCopy

-
-

Returns a new CompletableFuture that is completed normally with the same value as this CompletableFuture when it completes normally. If this CompletableFuture completes exceptionally, then the returned CompletableFuture completes exceptionally with a CompletionException with this exception as cause. The behavior is equivalent to thenApply(x -> x). This method may be useful as a form of "defensive copying", to prevent clients from completing, while still being able to arrange dependent actions.

Return

the new CompletableFuture

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exception-now.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exception-now.html deleted file mode 100644 index 9596ec71..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exception-now.html +++ /dev/null @@ -1,73 +0,0 @@ - - - - - cffuExceptionNow - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuExceptionNow

-
-

Returns the exception thrown by the task, without waiting.

-This method is for cases where the caller knows that the task has already completed with an exception.

Return

the exception thrown by the task

See also

#resultNow()

Throws

if the task has not completed, the task completed normally, or the task was cancelled

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-async.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-async.html deleted file mode 100644 index 0fece7a7..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-async.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - cffuExceptionallyAsync - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuExceptionallyAsync

-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using given stage's default asynchronous execution facility. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the value of the returned CompletionStage if given CompletionStage completed exceptionally


Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using the supplied Executor. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the value of the returned CompletionStage if given CompletionStage completed exceptionally

executor

the executor to use for asynchronous execution

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-compose-async.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-compose-async.html deleted file mode 100644 index b8c9e80b..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-compose-async.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - cffuExceptionallyComposeAsync - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuExceptionallyComposeAsync

-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using given stage's default asynchronous execution facility.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the returned CompletionStage if given CompletionStage completed exceptionally


Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using the supplied Executor.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the returned CompletionStage if given CompletionStage completed exceptionally

executor

the executor to use for asynchronous execution

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-compose.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-compose.html deleted file mode 100644 index f254b211..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-compose.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - cffuExceptionallyCompose - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuExceptionallyCompose

-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the returned CompletionStage if given CompletionStage completed exceptionally

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-join.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-join.html deleted file mode 100644 index a6640796..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-join.html +++ /dev/null @@ -1,74 +0,0 @@ - - - - - cffuJoin - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuJoin

-
-
fun <T> CompletableFuture<T>.cffuJoin(timeout: Long, unit: TimeUnit): T

Waits if necessary for at most the given time for the computation to complete, and then retrieves its result value when complete, or throws an (unchecked) exception if completed exceptionally.

-NOTE:
-call this method

result = CompletableFutureUtils.cffuJoin(cf, timeout, unit);

is same as:

result = cf.copy() // defensive copy to avoid writing this cf unexpectedly
.orTimeout(timeout, unit)
.join();
}

CAUTION:
if the wait timed out, this method throws an (unchecked) CompletionException with the TimeoutException as its cause; NOT throws a (checked) TimeoutException like CompletableFuture.get.

Return

the result value

Parameters

timeout

the maximum time to wait

unit

the time unit of the timeout argument

See also

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-minimal-completion-stage.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-minimal-completion-stage.html deleted file mode 100644 index 37c13528..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-minimal-completion-stage.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - cffuMinimalCompletionStage - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuMinimalCompletionStage

-
-

Returns a new CompletionStage that is completed normally with the same value as given CompletableFuture when it completes normally, and cannot be independently completed or otherwise used in ways not defined by the methods of interface CompletionStage. If given CompletableFuture completes exceptionally, then the returned CompletionStage completes exceptionally with a CompletionException with given exception as cause.

CAUTION: if run on old Java 8, just return a normal CompletableFuture which is NOT with a minimal CompletionStage.

Return

the new CompletionStage

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-new-incomplete-future.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-new-incomplete-future.html deleted file mode 100644 index 85bf94b0..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-new-incomplete-future.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - cffuNewIncompleteFuture - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuNewIncompleteFuture

-
-

Returns a new incomplete CompletableFuture of the type to be returned by a CompletionStage method.

Return

a new CompletableFuture

Parameters

the type of the value
-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-or-timeout.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-or-timeout.html deleted file mode 100644 index 7e3c3a93..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-or-timeout.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - cffuOrTimeout - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuOrTimeout

-
-

Exceptionally completes this CompletableFuture with a TimeoutException if not otherwise completed before the given timeout.

Return

this CompletableFuture

Parameters

timeout

how long to wait before completing exceptionally with a TimeoutException, in units of unit

unit

a TimeUnit determining how to interpret the timeout parameter

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-result-now.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-result-now.html deleted file mode 100644 index 5c70d033..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-result-now.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - cffuResultNow - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuResultNow

-
-

Returns the computed result, without waiting.

-This method is for cases where the caller knows that the task has already completed successfully, -for example when filtering a stream of Future objects for the successful tasks -and using a mapping operation to obtain a stream of results.

results = futures.stream()
.filter(f -> f.state() == Future.State.SUCCESS)
.map(Future::resultNow)
.toList();
}
-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html deleted file mode 100644 index 7c0af731..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - cffuState - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuState

-
-

Returns the computation state(CffuState), this method has java version compatibility logic, so you can invoke in old java 18-.

Return

the computation state

See also

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html deleted file mode 100644 index 8924e8fc..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - cffuUnwrap - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuUnwrap

-
-

Unwrap input Cffu collection elements by Cffu.cffuUnwrap.

Same as CffuFactory.cffuArrayUnwrap, providing this method is convenient for method chaining.

See also


Unwrap input Cffu array elements by Cffu.cffuUnwrap.

Same as CffuFactory.cffuArrayUnwrap, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/combine.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/combine.html deleted file mode 100644 index 414017e3..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/combine.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - combine - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

combine

-
-

Returns a new CompletableFuture that is completed when the given two CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 2 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null


Returns a new CompletableFuture that is completed when the given three CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 3 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null


Returns a new CompletableFuture that is completed when the given 4 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 4 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null


Returns a new CompletableFuture that is completed when the given 5 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 5 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/component1.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/component1.html deleted file mode 100644 index f77a4eb9..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/component1.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - component1 - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

component1

-
-
operator fun <T1, T2> Tuple2<T1, T2>.component1(): T1
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component1(): T1
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component1(): T1
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component1(): T1
-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/component2.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/component2.html deleted file mode 100644 index aa481d6f..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/component2.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - component2 - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

component2

-
-
operator fun <T1, T2> Tuple2<T1, T2>.component2(): T2
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component2(): T2
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component2(): T2
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component2(): T2
-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/component3.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/component3.html deleted file mode 100644 index 83290d69..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/component3.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - component3 - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

component3

-
-
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component3(): T3
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component3(): T3
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component3(): T3
-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/component4.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/component4.html deleted file mode 100644 index 6fbb4792..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/component4.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - component4 - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

component4

-
-
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component4(): T4
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component4(): T4
-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/component5.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/component5.html deleted file mode 100644 index 57935876..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/component5.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - component5 - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

component5

-
-
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component5(): T5
-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/index.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/index.html deleted file mode 100644 index eccdbd74..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/index.html +++ /dev/null @@ -1,650 +0,0 @@ - - - - - io.foldright.cffu.kotlin - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Package-level declarations

-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<Cffu<T>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>
fun <T> Collection<Cffu<T>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results of all the given Cffus, the new Cffu is completed when all the given Cffus complete. If any of the given Cffus complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value emptyList.

@JvmName(name = "allOfCffuCf")
fun <T> Collection<CompletableFuture<T>>.allOfCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results of all the given CompletableFutures, the new Cffu is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value emptyList.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun Array<out Cffu<*>>.allOfCffuVoid(cffuFactory: CffuFactory = ABSENT): Cffu<Void>
fun Collection<Cffu<*>>.allOfCffuVoid(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is completed when all the given Cffus complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given Cffus are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no Cffus are provided, returns a Cffu completed with the value null.

@JvmName(name = "allOfCffuVoidCf")
fun Collection<CompletableFuture<*>>.allOfCffuVoid(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is completed when all the given CompletableFutures complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given CompletableFutures are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no CompletableFutures are provided, returns a Cffu completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture with the results of all the given CompletableFutures, the returned new CompletableFuture is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value emptyList.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given CompletableFutures are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If no CompletableFutures are provided, returns a CompletableFuture completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<Cffu<T>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>
fun <T> Collection<Cffu<T>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results of all the given Cffus, the new Cffu success when all the given Cffus success. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value emptyList.

@JvmName(name = "allOfFastFailCffuCf")
fun <T> Collection<CompletableFuture<T>>.allOfFastFailCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results of all the given CompletableFutures, the new Cffu success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value emptyList.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun Array<out Cffu<*>>.allOfFastFailCffuVoid(cffuFactory: CffuFactory = ABSENT): Cffu<Void>
fun Collection<Cffu<*>>.allOfFastFailCffuVoid(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is successful when all the given Cffus success, the results(Cffu<Void>) of the given Cffus are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value null.

@JvmName(name = "allOfFastFailCffuVoidCf")
fun Collection<CompletableFuture<*>>.allOfFastFailCffuVoid(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is successful when all the given CompletableFutures success, the results(Cffu<Void>) of the given CompletableFutures are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture with the results of all the given CompletableFutures, the new CompletableFuture success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value emptyList.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is successful when all the given CompletableFutures success, the results(CompletableFuture<Void>) of the given CompletableFutures are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<Cffu<T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>
fun <T> Collection<Cffu<T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

@JvmName(name = "anyOfCffuCf")
fun <T> Collection<CompletableFuture<T>>.anyOfCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is completed when any of the given CompletableFutures complete, with the same result.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun Array<out Cffu<*>>.anyOfCffuAny(cffuFactory: CffuFactory = ABSENT): Cffu<Any>
fun Collection<Cffu<*>>.anyOfCffuAny(cffuFactory: CffuFactory = ABSENT): Cffu<Any>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

@JvmName(name = "anyOfCffuAnyCf")
fun Collection<CompletableFuture<*>>.anyOfCffuAny(cffuFactory: CffuFactory): Cffu<Any>

Returns a new Cffu that is completed when any of the given CompletableFutures complete, with the same result.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed when any of the given CompletableFutures complete, with the same result. Otherwise, if it completed exceptionally, the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns an incomplete CompletableFuture.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed when any of the given CompletableFutures complete, with the same result. Otherwise, if it completed exceptionally, the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns an incomplete CompletableFuture.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<Cffu<T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>
fun <T> Collection<Cffu<T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is successful when any of the given Cffus success, with the same result. Otherwise, all the given Cffus complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given Cffus as its cause. If no Cffus are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

@JvmName(name = "anyOfSuccessCffuCf")
fun <T> Collection<CompletableFuture<T>>.anyOfSuccessCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun Array<out Cffu<*>>.anyOfSuccessCffuAny(cffuFactory: CffuFactory = ABSENT): Cffu<Any>
fun Collection<Cffu<*>>.anyOfSuccessCffuAny(cffuFactory: CffuFactory = ABSENT): Cffu<Any>
@JvmName(name = "anyOfSuccessCffuAnyCf")
fun Collection<CompletableFuture<*>>.anyOfSuccessCffuAny(cffuFactory: CffuFactory): Cffu<Any>

Returns a new Cffu that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new CompletableFuture that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception CompletableFuture any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

Returns a new CompletableFuture that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new CompletableFuture that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> CompletionStage<T>.asCffu(cffuFactory: CffuFactory): Cffu<T>
fun <T> Array<out CompletionStage<T>>.asCffu(cffuFactory: CffuFactory): Array<Cffu<T>>

Wrap input CompletableFuture/CompletionStage array elements to Cffu by CffuFactory.asCffu.

Wrap input CompletableFuture/CompletionStage collection elements to Cffu by CffuFactory.asCffu.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the default executor.

fun <T> CompletableFuture<T>.cffuCompleteAsync(supplier: () -> T, executor: Executor): CompletableFuture<T>

Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the given executor.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Completes given CompletableFuture with the given value if not otherwise completed before the given timeout.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed normally with the same value as this CompletableFuture when it completes normally. If this CompletableFuture completes exceptionally, then the returned CompletableFuture completes exceptionally with a CompletionException with this exception as cause. The behavior is equivalent to thenApply(x -> x). This method may be useful as a form of "defensive copying", to prevent clients from completing, while still being able to arrange dependent actions.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using given stage's default asynchronous execution facility. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using the supplied Executor. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using given stage's default asynchronous execution facility.

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using the supplied Executor.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the exception thrown by the task, without waiting.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> CompletableFuture<T>.cffuJoin(timeout: Long, unit: TimeUnit): T

Waits if necessary for at most the given time for the computation to complete, and then retrieves its result value when complete, or throws an (unchecked) exception if completed exceptionally.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that is completed normally with the same value as given CompletableFuture when it completes normally, and cannot be independently completed or otherwise used in ways not defined by the methods of interface CompletionStage. If given CompletableFuture completes exceptionally, then the returned CompletionStage completes exceptionally with a CompletionException with given exception as cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new incomplete CompletableFuture of the type to be returned by a CompletionStage method.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Exceptionally completes this CompletableFuture with a TimeoutException if not otherwise completed before the given timeout.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the computed result, without waiting.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the computation state(CffuState), this method has java version compatibility logic, so you can invoke in old java 18-.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Unwrap input Cffu array elements by Cffu.cffuUnwrap.

Unwrap input Cffu collection elements by Cffu.cffuUnwrap.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed when the given two CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is completed when the given three CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is completed when the given 4 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is completed when the given 5 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2> Tuple2<T1, T2>.component1(): T1
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component1(): T1
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component1(): T1
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component1(): T1
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2> Tuple2<T1, T2>.component2(): T2
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component2(): T2
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component2(): T2
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component2(): T2
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component3(): T3
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component3(): T3
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component3(): T3
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component4(): T4
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component4(): T4
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component5(): T5
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
-
-
-
-
-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html b/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html deleted file mode 100644 index 836877e4..00000000 --- a/dokka/0.9.7/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - toCompletableFuture - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

toCompletableFuture

-
-

Convert Cffu collection elements to CompletableFuture by Cffu.toCompletableFuture.

Same as CffuFactory.cffuAnyOf, providing this method is convenient for method chaining.

See also


Convert Cffu array elements to CompletableFuture by Cffu.toCompletableFuture.

Same as CffuFactory.cffuAnyOf, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.7/cffu-kotlin/package-list b/dokka/0.9.7/cffu-kotlin/package-list deleted file mode 100644 index f1a82ae2..00000000 --- a/dokka/0.9.7/cffu-kotlin/package-list +++ /dev/null @@ -1,94 +0,0 @@ -$dokka.format:html-v1 -$dokka.linkExtension:html -$dokka.location:io.foldright.cffu.kotlin////PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/index.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffuVoid/kotlin.Array[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu-void.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffuVoid/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu-void.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffuVoid/kotlin.collections.Collection[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu-void.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffuVoid/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu-void.html -$dokka.location:io.foldright.cffu.kotlin//allOfCompletableFuture/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allOfCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allOfCompletableFutureVoid/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future-void.html -$dokka.location:io.foldright.cffu.kotlin//allOfCompletableFutureVoid/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future-void.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffuVoid/kotlin.Array[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu-void.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffuVoid/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu-void.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffuVoid/kotlin.collections.Collection[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu-void.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffuVoid/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu-void.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCompletableFuture/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCompletableFutureVoid/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future-void.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCompletableFutureVoid/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future-void.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffuAny/kotlin.Array[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu-any.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffuAny/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu-any.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffuAny/kotlin.collections.Collection[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu-any.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffuAny/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu-any.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCompletableFuture/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCompletableFutureAny/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future-any.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCompletableFutureAny/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future-any.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffuAny/kotlin.Array[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu-any.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffuAny/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu-any.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffuAny/kotlin.collections.Collection[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu-any.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffuAny/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu-any.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCompletableFuture/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCompletableFutureAny/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future-any.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCompletableFutureAny/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future-any.html -$dokka.location:io.foldright.cffu.kotlin//asCffu/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/as-cffu.html -$dokka.location:io.foldright.cffu.kotlin//asCffu/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/as-cffu.html -$dokka.location:io.foldright.cffu.kotlin//asCffu/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/as-cffu.html -$dokka.location:io.foldright.cffu.kotlin//cffuCompleteAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#kotlin.Function0[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-complete-async.html -$dokka.location:io.foldright.cffu.kotlin//cffuCompleteAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#kotlin.Function0[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-complete-async.html -$dokka.location:io.foldright.cffu.kotlin//cffuCompleteOnTimeout/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#TypeParam(bounds=[kotlin.Any?])#kotlin.Long#java.util.concurrent.TimeUnit/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-complete-on-timeout.html -$dokka.location:io.foldright.cffu.kotlin//cffuCopy/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-copy.html -$dokka.location:io.foldright.cffu.kotlin//cffuExceptionNow/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exception-now.html -$dokka.location:io.foldright.cffu.kotlin//cffuExceptionallyAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#kotlin.Function1[kotlin.Throwable,TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-async.html -$dokka.location:io.foldright.cffu.kotlin//cffuExceptionallyAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#kotlin.Function1[kotlin.Throwable,TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-async.html -$dokka.location:io.foldright.cffu.kotlin//cffuExceptionallyCompose/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#kotlin.Function1[kotlin.Throwable,java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-compose.html -$dokka.location:io.foldright.cffu.kotlin//cffuExceptionallyComposeAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#kotlin.Function1[kotlin.Throwable,java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-compose-async.html -$dokka.location:io.foldright.cffu.kotlin//cffuExceptionallyComposeAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#kotlin.Function1[kotlin.Throwable,java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-compose-async.html -$dokka.location:io.foldright.cffu.kotlin//cffuJoin/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#kotlin.Long#java.util.concurrent.TimeUnit/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-join.html -$dokka.location:io.foldright.cffu.kotlin//cffuMinimalCompletionStage/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-minimal-completion-stage.html -$dokka.location:io.foldright.cffu.kotlin//cffuNewIncompleteFuture/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-new-incomplete-future.html -$dokka.location:io.foldright.cffu.kotlin//cffuOrTimeout/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#kotlin.Long#java.util.concurrent.TimeUnit/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-or-timeout.html -$dokka.location:io.foldright.cffu.kotlin//cffuResultNow/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-result-now.html -$dokka.location:io.foldright.cffu.kotlin//cffuState/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html -$dokka.location:io.foldright.cffu.kotlin//cffuUnwrap/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html -$dokka.location:io.foldright.cffu.kotlin//cffuUnwrap/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html -$dokka.location:io.foldright.cffu.kotlin//combine/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/combine.html -$dokka.location:io.foldright.cffu.kotlin//combine/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/combine.html -$dokka.location:io.foldright.cffu.kotlin//combine/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/combine.html -$dokka.location:io.foldright.cffu.kotlin//combine/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/combine.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple2[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple3[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple2[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple3[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component3/io.foldright.cffu.tuple.Tuple3[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component3.html -$dokka.location:io.foldright.cffu.kotlin//component3/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component3.html -$dokka.location:io.foldright.cffu.kotlin//component3/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component3.html -$dokka.location:io.foldright.cffu.kotlin//component4/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component4.html -$dokka.location:io.foldright.cffu.kotlin//component4/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component4.html -$dokka.location:io.foldright.cffu.kotlin//component5/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component5.html -$dokka.location:io.foldright.cffu.kotlin//toCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//toCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html -io.foldright.cffu.kotlin - diff --git a/dokka/0.9.7/images/anchor-copy-button.svg b/dokka/0.9.7/images/anchor-copy-button.svg deleted file mode 100644 index bab9d747..00000000 --- a/dokka/0.9.7/images/anchor-copy-button.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/dokka/0.9.7/images/arrow_down.svg b/dokka/0.9.7/images/arrow_down.svg deleted file mode 100644 index c0388dee..00000000 --- a/dokka/0.9.7/images/arrow_down.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/dokka/0.9.7/images/copy-icon.svg b/dokka/0.9.7/images/copy-icon.svg deleted file mode 100644 index 61440f0a..00000000 --- a/dokka/0.9.7/images/copy-icon.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/dokka/0.9.7/images/copy-successful-icon.svg b/dokka/0.9.7/images/copy-successful-icon.svg deleted file mode 100644 index 1865f739..00000000 --- a/dokka/0.9.7/images/copy-successful-icon.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/dokka/0.9.7/images/footer-go-to-link.svg b/dokka/0.9.7/images/footer-go-to-link.svg deleted file mode 100644 index 0137e223..00000000 --- a/dokka/0.9.7/images/footer-go-to-link.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/dokka/0.9.7/images/go-to-top-icon.svg b/dokka/0.9.7/images/go-to-top-icon.svg deleted file mode 100644 index d987f3ea..00000000 --- a/dokka/0.9.7/images/go-to-top-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/dokka/0.9.7/images/logo-icon.svg b/dokka/0.9.7/images/logo-icon.svg deleted file mode 100644 index 1fea0877..00000000 --- a/dokka/0.9.7/images/logo-icon.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/dokka/0.9.7/images/nav-icons/abstract-class-kotlin.svg b/dokka/0.9.7/images/nav-icons/abstract-class-kotlin.svg deleted file mode 100644 index a2069b8f..00000000 --- a/dokka/0.9.7/images/nav-icons/abstract-class-kotlin.svg +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/dokka/0.9.7/images/nav-icons/abstract-class.svg b/dokka/0.9.7/images/nav-icons/abstract-class.svg deleted file mode 100644 index 60182030..00000000 --- a/dokka/0.9.7/images/nav-icons/abstract-class.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/dokka/0.9.7/images/nav-icons/annotation-kotlin.svg b/dokka/0.9.7/images/nav-icons/annotation-kotlin.svg deleted file mode 100644 index 932f1d3d..00000000 --- a/dokka/0.9.7/images/nav-icons/annotation-kotlin.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/dokka/0.9.7/images/nav-icons/annotation.svg b/dokka/0.9.7/images/nav-icons/annotation.svg deleted file mode 100644 index b80c54b4..00000000 --- a/dokka/0.9.7/images/nav-icons/annotation.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/0.9.7/images/nav-icons/class-kotlin.svg b/dokka/0.9.7/images/nav-icons/class-kotlin.svg deleted file mode 100644 index 46a21f65..00000000 --- a/dokka/0.9.7/images/nav-icons/class-kotlin.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/dokka/0.9.7/images/nav-icons/class.svg b/dokka/0.9.7/images/nav-icons/class.svg deleted file mode 100644 index 3f1ad167..00000000 --- a/dokka/0.9.7/images/nav-icons/class.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/0.9.7/images/nav-icons/enum-kotlin.svg b/dokka/0.9.7/images/nav-icons/enum-kotlin.svg deleted file mode 100644 index 4a854596..00000000 --- a/dokka/0.9.7/images/nav-icons/enum-kotlin.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/dokka/0.9.7/images/nav-icons/enum.svg b/dokka/0.9.7/images/nav-icons/enum.svg deleted file mode 100644 index fa7f2476..00000000 --- a/dokka/0.9.7/images/nav-icons/enum.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/0.9.7/images/nav-icons/exception-class.svg b/dokka/0.9.7/images/nav-icons/exception-class.svg deleted file mode 100644 index c0b2bdeb..00000000 --- a/dokka/0.9.7/images/nav-icons/exception-class.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/0.9.7/images/nav-icons/field-value.svg b/dokka/0.9.7/images/nav-icons/field-value.svg deleted file mode 100644 index 20449c94..00000000 --- a/dokka/0.9.7/images/nav-icons/field-value.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/dokka/0.9.7/images/nav-icons/field-variable.svg b/dokka/0.9.7/images/nav-icons/field-variable.svg deleted file mode 100644 index 3b074500..00000000 --- a/dokka/0.9.7/images/nav-icons/field-variable.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/dokka/0.9.7/images/nav-icons/function.svg b/dokka/0.9.7/images/nav-icons/function.svg deleted file mode 100644 index f0da64a0..00000000 --- a/dokka/0.9.7/images/nav-icons/function.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/0.9.7/images/nav-icons/interface-kotlin.svg b/dokka/0.9.7/images/nav-icons/interface-kotlin.svg deleted file mode 100644 index bf07a148..00000000 --- a/dokka/0.9.7/images/nav-icons/interface-kotlin.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/dokka/0.9.7/images/nav-icons/interface.svg b/dokka/0.9.7/images/nav-icons/interface.svg deleted file mode 100644 index 32063ba2..00000000 --- a/dokka/0.9.7/images/nav-icons/interface.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/0.9.7/images/nav-icons/object.svg b/dokka/0.9.7/images/nav-icons/object.svg deleted file mode 100644 index 9f427de4..00000000 --- a/dokka/0.9.7/images/nav-icons/object.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/dokka/0.9.7/images/theme-toggle.svg b/dokka/0.9.7/images/theme-toggle.svg deleted file mode 100644 index 2a8d750e..00000000 --- a/dokka/0.9.7/images/theme-toggle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - \ No newline at end of file diff --git a/dokka/0.9.7/index.html b/dokka/0.9.7/index.html index 889e7a26..a1d360aa 100644 --- a/dokka/0.9.7/index.html +++ b/dokka/0.9.7/index.html @@ -1,91 +1,8 @@ - - - - cffu-kotlin - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffu-kotlin

-
-

Packages

-
-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
- -
-
- + + + + diff --git a/dokka/0.9.7/navigation.html b/dokka/0.9.7/navigation.html deleted file mode 100644 index aa56819e..00000000 --- a/dokka/0.9.7/navigation.html +++ /dev/null @@ -1,121 +0,0 @@ -
-
cffu-kotlin
-
- - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - - - - -
- -
- - - - - - -
-
- diff --git a/dokka/0.9.7/scripts/clipboard.js b/dokka/0.9.7/scripts/clipboard.js deleted file mode 100644 index b00ce246..00000000 --- a/dokka/0.9.7/scripts/clipboard.js +++ /dev/null @@ -1,52 +0,0 @@ -window.addEventListener('load', () => { - document.querySelectorAll('span.copy-icon').forEach(element => { - element.addEventListener('click', (el) => copyElementsContentToClipboard(element)); - }) - - document.querySelectorAll('span.anchor-icon').forEach(element => { - element.addEventListener('click', (el) => { - if(element.hasAttribute('pointing-to')){ - const location = hrefWithoutCurrentlyUsedAnchor() + '#' + element.getAttribute('pointing-to') - copyTextToClipboard(element, location) - } - }); - }) -}) - -const copyElementsContentToClipboard = (element) => { - const selection = window.getSelection(); - const range = document.createRange(); - range.selectNodeContents(element.parentNode.parentNode); - selection.removeAllRanges(); - selection.addRange(range); - - copyAndShowPopup(element, () => selection.removeAllRanges()) -} - -const copyTextToClipboard = (element, text) => { - var textarea = document.createElement("textarea"); - textarea.textContent = text; - textarea.style.position = "fixed"; - document.body.appendChild(textarea); - textarea.select(); - - copyAndShowPopup(element, () => document.body.removeChild(textarea)) -} - -const copyAndShowPopup = (element, after) => { - try { - document.execCommand('copy'); - element.nextElementSibling.classList.add('active-popup'); - setTimeout(() => { - element.nextElementSibling.classList.remove('active-popup'); - }, 1200); - } catch (e) { - console.error('Failed to write to clipboard:', e) - } - finally { - if(after) after() - } -} - -const hrefWithoutCurrentlyUsedAnchor = () => window.location.href.split('#')[0] - diff --git a/dokka/0.9.7/scripts/main.js b/dokka/0.9.7/scripts/main.js deleted file mode 100644 index ca7ae018..00000000 --- a/dokka/0.9.7/scripts/main.js +++ /dev/null @@ -1,44 +0,0 @@ -(()=>{var e={8527:e=>{e.exports=''},5570:e=>{e.exports=''},107:e=>{e.exports=''},7224:e=>{e.exports=''},538:e=>{e.exports=''},1924:(e,n,t)=>{"use strict";var r=t(210),o=t(5559),i=o(r("String.prototype.indexOf"));e.exports=function(e,n){var t=r(e,!!n);return"function"==typeof t&&i(e,".prototype.")>-1?o(t):t}},5559:(e,n,t)=>{"use strict";var r=t(8612),o=t(210),i=o("%Function.prototype.apply%"),a=o("%Function.prototype.call%"),l=o("%Reflect.apply%",!0)||r.call(a,i),c=o("%Object.getOwnPropertyDescriptor%",!0),u=o("%Object.defineProperty%",!0),s=o("%Math.max%");if(u)try{u({},"a",{value:1})}catch(e){u=null}e.exports=function(e){var n=l(r,a,arguments);if(c&&u){var t=c(n,"length");t.configurable&&u(n,"length",{value:1+s(0,e.length-(arguments.length-1))})}return n};var f=function(){return l(r,i,arguments)};u?u(e.exports,"apply",{value:f}):e.exports.apply=f},4184:(e,n)=>{var t; -/*! - Copyright (c) 2018 Jed Watson. - Licensed under the MIT License (MIT), see - http://jedwatson.github.io/classnames -*/!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],n=0;n{"use strict";e.exports=function(e,n){var t=this,r=t.constructor;return t.options=Object.assign({storeInstancesGlobally:!0},n||{}),t.callbacks={},t.directMap={},t.sequenceLevels={},t.resetTimer=null,t.ignoreNextKeyup=!1,t.ignoreNextKeypress=!1,t.nextExpectedAction=!1,t.element=e,t.addEvents(),t.options.storeInstancesGlobally&&r.instances.push(t),t},e.exports.prototype.bind=t(2207),e.exports.prototype.bindMultiple=t(3396),e.exports.prototype.unbind=t(9208),e.exports.prototype.trigger=t(9855),e.exports.prototype.reset=t(6214),e.exports.prototype.stopCallback=t(3450),e.exports.prototype.handleKey=t(3067),e.exports.prototype.addEvents=t(718),e.exports.prototype.bindSingle=t(8763),e.exports.prototype.getKeyInfo=t(5825),e.exports.prototype.pickBestAction=t(8608),e.exports.prototype.getReverseMap=t(3956),e.exports.prototype.getMatches=t(3373),e.exports.prototype.resetSequences=t(3346),e.exports.prototype.fireCallback=t(2684),e.exports.prototype.bindSequence=t(7103),e.exports.prototype.resetSequenceTimer=t(7309),e.exports.prototype.detach=t(7554),e.exports.instances=[],e.exports.reset=t(1822),e.exports.REVERSE_MAP=null},718:(e,n,t)=>{"use strict";e.exports=function(){var e=this,n=t(4323),r=e.element;e.eventHandler=t(9646).bind(e),n(r,"keypress",e.eventHandler),n(r,"keydown",e.eventHandler),n(r,"keyup",e.eventHandler)}},2207:e=>{"use strict";e.exports=function(e,n,t){return e=e instanceof Array?e:[e],this.bindMultiple(e,n,t),this}},3396:e=>{"use strict";e.exports=function(e,n,t){for(var r=0;r{"use strict";e.exports=function(e,n,r,o){var i=this;function a(n){return function(){i.nextExpectedAction=n,++i.sequenceLevels[e],i.resetSequenceTimer()}}function l(n){var a;i.fireCallback(r,n,e),"keyup"!==o&&(a=t(6770),i.ignoreNextKeyup=a(n)),setTimeout((function(){i.resetSequences()}),10)}i.sequenceLevels[e]=0;for(var c=0;c{"use strict";e.exports=function(e,n,t,r,o){var i=this;i.directMap[e+":"+t]=n;var a,l=(e=e.replace(/\s+/g," ")).split(" ");l.length>1?i.bindSequence(e,l,n,t):(a=i.getKeyInfo(e,t),i.callbacks[a.key]=i.callbacks[a.key]||[],i.getMatches(a.key,a.modifiers,{type:a.action},r,e,o),i.callbacks[a.key][r?"unshift":"push"]({callback:n,modifiers:a.modifiers,action:a.action,seq:r,level:o,combo:e}))}},7554:(e,n,t)=>{var r=t(4323).off;e.exports=function(){var e=this,n=e.element;r(n,"keypress",e.eventHandler),r(n,"keydown",e.eventHandler),r(n,"keyup",e.eventHandler)}},4323:e=>{function n(e,n,t,r){return!e.addEventListener&&(n="on"+n),(e.addEventListener||e.attachEvent).call(e,n,t,r),t}e.exports=n,e.exports.on=n,e.exports.off=function(e,n,t,r){return!e.removeEventListener&&(n="on"+n),(e.removeEventListener||e.detachEvent).call(e,n,t,r),t}},2684:(e,n,t)=>{"use strict";e.exports=function(e,n,r,o){this.stopCallback(n,n.target||n.srcElement,r,o)||!1===e(n,r)&&(t(1350)(n),t(6103)(n))}},5825:(e,n,t)=>{"use strict";e.exports=function(e,n){var r,o,i,a,l,c,u=[];for(r=t(4520)(e),a=t(7549),l=t(5355),c=t(8581),i=0;i{"use strict";e.exports=function(e,n,r,o,i,a){var l,c,u,s,f=this,p=[],d=r.type;"keypress"!==d||r.code&&"Arrow"===r.code.slice(0,5)||(f.callbacks["any-character"]||[]).forEach((function(e){p.push(e)}));if(!f.callbacks[e])return p;for(u=t(8581),"keyup"===d&&u(e)&&(n=[e]),l=0;l{"use strict";e.exports=function(){var e,n=this.constructor;if(!n.REVERSE_MAP)for(var r in n.REVERSE_MAP={},e=t(4766))r>95&&r<112||e.hasOwnProperty(r)&&(n.REVERSE_MAP[e[r]]=r);return n.REVERSE_MAP}},3067:(e,n,t)=>{"use strict";e.exports=function(e,n,r){var o,i,a,l,c=this,u={},s=0,f=!1;for(o=c.getMatches(e,n,r),i=0;i{"use strict";e.exports=function(e){var n,r=this;"number"!=typeof e.which&&(e.which=e.keyCode);var o=t(6770)(e);void 0!==o&&("keyup"!==e.type||r.ignoreNextKeyup!==o?(n=t(4610),r.handleKey(o,n(e),e)):r.ignoreNextKeyup=!1)}},5532:e=>{"use strict";e.exports=function(e,n){return e.sort().join(",")===n.sort().join(",")}},8608:e=>{"use strict";e.exports=function(e,n,t){return t||(t=this.getReverseMap()[e]?"keydown":"keypress"),"keypress"===t&&n.length&&(t="keydown"),t}},6214:e=>{"use strict";e.exports=function(){return this.callbacks={},this.directMap={},this}},7309:e=>{"use strict";e.exports=function(){var e=this;clearTimeout(e.resetTimer),e.resetTimer=setTimeout((function(){e.resetSequences()}),1e3)}},3346:e=>{"use strict";e.exports=function(e){var n=this;e=e||{};var t,r=!1;for(t in n.sequenceLevels)e[t]?r=!0:n.sequenceLevels[t]=0;r||(n.nextExpectedAction=!1)}},3450:e=>{"use strict";e.exports=function(e,n){if((" "+n.className+" ").indexOf(" combokeys ")>-1)return!1;var t=n.tagName.toLowerCase();return"input"===t||"select"===t||"textarea"===t||n.isContentEditable}},9855:e=>{"use strict";e.exports=function(e,n){return this.directMap[e+":"+n]&&this.directMap[e+":"+n]({},e),this}},9208:e=>{"use strict";e.exports=function(e,n){return this.bind(e,(function(){}),n)}},1822:e=>{"use strict";e.exports=function(){this.instances.forEach((function(e){e.reset()}))}},6770:(e,n,t)=>{"use strict";e.exports=function(e){var n,r;if(n=t(4766),r=t(5295),"keypress"===e.type){var o=String.fromCharCode(e.which);return e.shiftKey||(o=o.toLowerCase()),o}return void 0!==n[e.which]?n[e.which]:void 0!==r[e.which]?r[e.which]:String.fromCharCode(e.which).toLowerCase()}},4610:e=>{"use strict";e.exports=function(e){var n=[];return e.shiftKey&&n.push("shift"),e.altKey&&n.push("alt"),e.ctrlKey&&n.push("ctrl"),e.metaKey&&n.push("meta"),n}},8581:e=>{"use strict";e.exports=function(e){return"shift"===e||"ctrl"===e||"alt"===e||"meta"===e}},4520:e=>{"use strict";e.exports=function(e){return"+"===e?["+"]:e.split("+")}},1350:e=>{"use strict";e.exports=function(e){e.preventDefault?e.preventDefault():e.returnValue=!1}},5355:e=>{"use strict";e.exports={"~":"`","!":"1","@":"2","#":"3",$:"4","%":"5","^":"6","&":"7","*":"8","(":"9",")":"0",_:"-","+":"=",":":";",'"':"'","<":",",">":".","?":"/","|":"\\"}},7549:e=>{"use strict";e.exports={option:"alt",command:"meta",return:"enter",escape:"esc",mod:/Mac|iPod|iPhone|iPad/.test(navigator.platform)?"meta":"ctrl"}},5295:e=>{"use strict";e.exports={106:"*",107:"plus",109:"minus",110:".",111:"/",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"}},4766:e=>{"use strict";e.exports={8:"backspace",9:"tab",13:"enter",16:"shift",17:"ctrl",18:"alt",20:"capslock",27:"esc",32:"space",33:"pageup",34:"pagedown",35:"end",36:"home",37:"left",38:"up",39:"right",40:"down",45:"ins",46:"del",91:"meta",93:"meta",173:"minus",187:"plus",189:"minus",224:"meta"};for(var n=1;n<20;++n)e.exports[111+n]="f"+n;for(n=0;n<=9;++n)e.exports[n+96]=n},6103:e=>{"use strict";e.exports=function(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0}},3362:()=>{var e;!function(){var e=Math.PI,n=2*e,t=e/180,r=document.createElement("div");document.head.appendChild(r);var o=self.ConicGradient=function(e){o.all.push(this),e=e||{},this.canvas=document.createElement("canvas"),this.context=this.canvas.getContext("2d"),this.repeating=!!e.repeating,this.size=e.size||Math.max(innerWidth,innerHeight),this.canvas.width=this.canvas.height=this.size;var n=e.stops;this.stops=(n||"").split(/\s*,(?![^(]*\))\s*/),this.from=0;for(var t=0;t0){var i=this.stops[0].clone();i.pos=0,this.stops.unshift(i)}if(void 0===this.stops[this.stops.length-1].pos)this.stops[this.stops.length-1].pos=1;else if(!this.repeating&&this.stops[this.stops.length-1].pos<1){var a=this.stops[this.stops.length-1].clone();a.pos=1,this.stops.push(a)}if(this.stops.forEach((function(e,n){if(void 0===e.pos){for(var t=n+1;this[t];t++)if(void 0!==this[t].pos){e.pos=this[n-1].pos+(this[t].pos-this[n-1].pos)/(t-n+1);break}}else n>0&&(e.pos=Math.max(e.pos,this[n-1].pos))}),this.stops),this.repeating){var l=(n=this.stops.slice())[n.length-1].pos-n[0].pos;for(t=0;this.stops[this.stops.length-1].pos<1&&t<1e4;t++)for(var c=0;c'},get png(){return this.canvas.toDataURL()},get r(){return Math.sqrt(2)*this.size/2},paint:function(){var e,n,r,o=this.context,i=this.r,a=this.size/2,l=0,c=this.stops[l];o.translate(this.size/2,this.size/2),o.rotate(-90*t),o.rotate(this.from*t),o.translate(-this.size/2,-this.size/2);for(var u=0;u<360;){if(u/360+1e-5>=c.pos){do{e=c,l++,c=this.stops[l]}while(c&&c!=e&&c.pos===e.pos);if(!c)break;var s=e.color+""==c.color+""&&e!=c;n=e.color.map((function(e,n){return c.color[n]-e}))}r=(u/360-e.pos)/(c.pos-e.pos);var f=s?c.color:n.map((function(n,t){var o=n*r+e.color[t];return t<3?255&o:o}));if(o.fillStyle="rgba("+f.join(",")+")",o.beginPath(),o.moveTo(a,a),s)var p=360*(c.pos-e.pos);else p=.5;var d=u*t,h=(d=Math.min(360*t,d))+p*t;h=Math.min(360*t,h+.02),o.arc(a,a,i,d,h),o.closePath(),o.fill(),u+=p}}},o.ColorStop=function(e,t){if(this.gradient=e,t){var r=t.match(/^(.+?)(?:\s+([\d.]+)(%|deg|turn|grad|rad)?)?(?:\s+([\d.]+)(%|deg|turn|grad|rad)?)?\s*$/);if(this.color=o.ColorStop.colorToRGBA(r[1]),r[2]){var i=r[3];"%"==i||"0"===r[2]&&!i?this.pos=r[2]/100:"turn"==i?this.pos=+r[2]:"deg"==i?this.pos=r[2]/360:"grad"==i?this.pos=r[2]/400:"rad"==i&&(this.pos=r[2]/n)}r[4]&&(this.next=new o.ColorStop(e,r[1]+" "+r[4]+r[5]))}},o.ColorStop.prototype={clone:function(){var e=new o.ColorStop(this.gradient);return e.color=this.color,e.pos=this.pos,e},toString:function(){return"rgba("+this.color.join(", ")+") "+100*this.pos+"%"}},o.ColorStop.colorToRGBA=function(e){if(!Array.isArray(e)&&-1==e.indexOf("from")){r.style.color=e;var n=getComputedStyle(r).color.match(/rgba?\(([\d.]+), ([\d.]+), ([\d.]+)(?:, ([\d.]+))?\)/);return n&&(n.shift(),(n=n.map((function(e){return+e})))[3]=isNaN(n[3])?1:n[3]),n||[0,0,0,0]}return e}}(),self.StyleFix&&((e=document.createElement("p")).style.backgroundImage="conic-gradient(white, black)",e.style.backgroundImage=PrefixFree.prefix+"conic-gradient(white, black)",e.style.backgroundImage||StyleFix.register((function(e,n){return e.indexOf("conic-gradient")>-1&&(e=e.replace(/(?:repeating-)?conic-gradient\(\s*((?:\([^()]+\)|[^;()}])+?)\)/g,(function(e,n){return new ConicGradient({stops:n,repeating:e.indexOf("repeating-")>-1})}))),e})))},9662:(e,n,t)=>{var r=t(7854),o=t(614),i=t(6330),a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not a function")}},9483:(e,n,t)=>{var r=t(7854),o=t(4411),i=t(6330),a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not a constructor")}},6077:(e,n,t)=>{var r=t(7854),o=t(614),i=r.String,a=r.TypeError;e.exports=function(e){if("object"==typeof e||o(e))return e;throw a("Can't set "+i(e)+" as a prototype")}},1223:(e,n,t)=>{var r=t(5112),o=t(30),i=t(3070),a=r("unscopables"),l=Array.prototype;null==l[a]&&i.f(l,a,{configurable:!0,value:o(null)}),e.exports=function(e){l[a][e]=!0}},1530:(e,n,t)=>{"use strict";var r=t(8710).charAt;e.exports=function(e,n,t){return n+(t?r(e,n).length:1)}},5787:(e,n,t)=>{var r=t(7854),o=t(7976),i=r.TypeError;e.exports=function(e,n){if(o(n,e))return e;throw i("Incorrect invocation")}},9670:(e,n,t)=>{var r=t(7854),o=t(111),i=r.String,a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not an object")}},7556:(e,n,t)=>{var r=t(7293);e.exports=r((function(){if("function"==typeof ArrayBuffer){var e=new ArrayBuffer(8);Object.isExtensible(e)&&Object.defineProperty(e,"a",{value:8})}}))},8533:(e,n,t)=>{"use strict";var r=t(2092).forEach,o=t(9341)("forEach");e.exports=o?[].forEach:function(e){return r(this,e,arguments.length>1?arguments[1]:void 0)}},8457:(e,n,t)=>{"use strict";var r=t(7854),o=t(9974),i=t(6916),a=t(7908),l=t(3411),c=t(7659),u=t(4411),s=t(6244),f=t(6135),p=t(8554),d=t(1246),h=r.Array;e.exports=function(e){var n=a(e),t=u(this),r=arguments.length,g=r>1?arguments[1]:void 0,v=void 0!==g;v&&(g=o(g,r>2?arguments[2]:void 0));var A,b,m,y,E,_,C=d(n),w=0;if(!C||this==h&&c(C))for(A=s(n),b=t?new this(A):h(A);A>w;w++)_=v?g(n[w],w):n[w],f(b,w,_);else for(E=(y=p(n,C)).next,b=t?new this:[];!(m=i(E,y)).done;w++)_=v?l(y,g,[m.value,w],!0):m.value,f(b,w,_);return b.length=w,b}},1318:(e,n,t)=>{var r=t(5656),o=t(1400),i=t(6244),a=function(e){return function(n,t,a){var l,c=r(n),u=i(c),s=o(a,u);if(e&&t!=t){for(;u>s;)if((l=c[s++])!=l)return!0}else for(;u>s;s++)if((e||s in c)&&c[s]===t)return e||s||0;return!e&&-1}};e.exports={includes:a(!0),indexOf:a(!1)}},2092:(e,n,t)=>{var r=t(9974),o=t(1702),i=t(8361),a=t(7908),l=t(6244),c=t(5417),u=o([].push),s=function(e){var n=1==e,t=2==e,o=3==e,s=4==e,f=6==e,p=7==e,d=5==e||f;return function(h,g,v,A){for(var b,m,y=a(h),E=i(y),_=r(g,v),C=l(E),w=0,x=A||c,k=n?x(h,C):t||p?x(h,0):void 0;C>w;w++)if((d||w in E)&&(m=_(b=E[w],w,y),e))if(n)k[w]=m;else if(m)switch(e){case 3:return!0;case 5:return b;case 6:return w;case 2:u(k,b)}else switch(e){case 4:return!1;case 7:u(k,b)}return f?-1:o||s?s:k}};e.exports={forEach:s(0),map:s(1),filter:s(2),some:s(3),every:s(4),find:s(5),findIndex:s(6),filterReject:s(7)}},1194:(e,n,t)=>{var r=t(7293),o=t(5112),i=t(7392),a=o("species");e.exports=function(e){return i>=51||!r((function(){var n=[];return(n.constructor={})[a]=function(){return{foo:1}},1!==n[e](Boolean).foo}))}},9341:(e,n,t)=>{"use strict";var r=t(7293);e.exports=function(e,n){var t=[][e];return!!t&&r((function(){t.call(null,n||function(){throw 1},1)}))}},3671:(e,n,t)=>{var r=t(7854),o=t(9662),i=t(7908),a=t(8361),l=t(6244),c=r.TypeError,u=function(e){return function(n,t,r,u){o(t);var s=i(n),f=a(s),p=l(s),d=e?p-1:0,h=e?-1:1;if(r<2)for(;;){if(d in f){u=f[d],d+=h;break}if(d+=h,e?d<0:p<=d)throw c("Reduce of empty array with no initial value")}for(;e?d>=0:p>d;d+=h)d in f&&(u=t(u,f[d],d,s));return u}};e.exports={left:u(!1),right:u(!0)}},206:(e,n,t)=>{var r=t(1702);e.exports=r([].slice)},4362:(e,n,t)=>{var r=t(206),o=Math.floor,i=function(e,n){var t=e.length,c=o(t/2);return t<8?a(e,n):l(e,i(r(e,0,c),n),i(r(e,c),n),n)},a=function(e,n){for(var t,r,o=e.length,i=1;i0;)e[r]=e[--r];r!==i++&&(e[r]=t)}return e},l=function(e,n,t,r){for(var o=n.length,i=t.length,a=0,l=0;a{var r=t(7854),o=t(3157),i=t(4411),a=t(111),l=t(5112)("species"),c=r.Array;e.exports=function(e){var n;return o(e)&&(n=e.constructor,(i(n)&&(n===c||o(n.prototype))||a(n)&&null===(n=n[l]))&&(n=void 0)),void 0===n?c:n}},5417:(e,n,t)=>{var r=t(7475);e.exports=function(e,n){return new(r(e))(0===n?0:n)}},3411:(e,n,t)=>{var r=t(9670),o=t(9212);e.exports=function(e,n,t,i){try{return i?n(r(t)[0],t[1]):n(t)}catch(n){o(e,"throw",n)}}},7072:(e,n,t)=>{var r=t(5112)("iterator"),o=!1;try{var i=0,a={next:function(){return{done:!!i++}},return:function(){o=!0}};a[r]=function(){return this},Array.from(a,(function(){throw 2}))}catch(e){}e.exports=function(e,n){if(!n&&!o)return!1;var t=!1;try{var i={};i[r]=function(){return{next:function(){return{done:t=!0}}}},e(i)}catch(e){}return t}},4326:(e,n,t)=>{var r=t(1702),o=r({}.toString),i=r("".slice);e.exports=function(e){return i(o(e),8,-1)}},648:(e,n,t)=>{var r=t(7854),o=t(1694),i=t(614),a=t(4326),l=t(5112)("toStringTag"),c=r.Object,u="Arguments"==a(function(){return arguments}());e.exports=o?a:function(e){var n,t,r;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(t=function(e,n){try{return e[n]}catch(e){}}(n=c(e),l))?t:u?a(n):"Object"==(r=a(n))&&i(n.callee)?"Arguments":r}},5631:(e,n,t)=>{"use strict";var r=t(3070).f,o=t(30),i=t(2248),a=t(9974),l=t(5787),c=t(408),u=t(654),s=t(6340),f=t(9781),p=t(2423).fastKey,d=t(9909),h=d.set,g=d.getterFor;e.exports={getConstructor:function(e,n,t,u){var s=e((function(e,r){l(e,d),h(e,{type:n,index:o(null),first:void 0,last:void 0,size:0}),f||(e.size=0),null!=r&&c(r,e[u],{that:e,AS_ENTRIES:t})})),d=s.prototype,v=g(n),A=function(e,n,t){var r,o,i=v(e),a=b(e,n);return a?a.value=t:(i.last=a={index:o=p(n,!0),key:n,value:t,previous:r=i.last,next:void 0,removed:!1},i.first||(i.first=a),r&&(r.next=a),f?i.size++:e.size++,"F"!==o&&(i.index[o]=a)),e},b=function(e,n){var t,r=v(e),o=p(n);if("F"!==o)return r.index[o];for(t=r.first;t;t=t.next)if(t.key==n)return t};return i(d,{clear:function(){for(var e=v(this),n=e.index,t=e.first;t;)t.removed=!0,t.previous&&(t.previous=t.previous.next=void 0),delete n[t.index],t=t.next;e.first=e.last=void 0,f?e.size=0:this.size=0},delete:function(e){var n=this,t=v(n),r=b(n,e);if(r){var o=r.next,i=r.previous;delete t.index[r.index],r.removed=!0,i&&(i.next=o),o&&(o.previous=i),t.first==r&&(t.first=o),t.last==r&&(t.last=i),f?t.size--:n.size--}return!!r},forEach:function(e){for(var n,t=v(this),r=a(e,arguments.length>1?arguments[1]:void 0);n=n?n.next:t.first;)for(r(n.value,n.key,this);n&&n.removed;)n=n.previous},has:function(e){return!!b(this,e)}}),i(d,t?{get:function(e){var n=b(this,e);return n&&n.value},set:function(e,n){return A(this,0===e?0:e,n)}}:{add:function(e){return A(this,e=0===e?0:e,e)}}),f&&r(d,"size",{get:function(){return v(this).size}}),s},setStrong:function(e,n,t){var r=n+" Iterator",o=g(n),i=g(r);u(e,n,(function(e,n){h(this,{type:r,target:e,state:o(e),kind:n,last:void 0})}),(function(){for(var e=i(this),n=e.kind,t=e.last;t&&t.removed;)t=t.previous;return e.target&&(e.last=t=t?t.next:e.state.first)?"keys"==n?{value:t.key,done:!1}:"values"==n?{value:t.value,done:!1}:{value:[t.key,t.value],done:!1}:(e.target=void 0,{value:void 0,done:!0})}),t?"entries":"values",!t,!0),s(n)}}},9320:(e,n,t)=>{"use strict";var r=t(1702),o=t(2248),i=t(2423).getWeakData,a=t(9670),l=t(111),c=t(5787),u=t(408),s=t(2092),f=t(2597),p=t(9909),d=p.set,h=p.getterFor,g=s.find,v=s.findIndex,A=r([].splice),b=0,m=function(e){return e.frozen||(e.frozen=new y)},y=function(){this.entries=[]},E=function(e,n){return g(e.entries,(function(e){return e[0]===n}))};y.prototype={get:function(e){var n=E(this,e);if(n)return n[1]},has:function(e){return!!E(this,e)},set:function(e,n){var t=E(this,e);t?t[1]=n:this.entries.push([e,n])},delete:function(e){var n=v(this.entries,(function(n){return n[0]===e}));return~n&&A(this.entries,n,1),!!~n}},e.exports={getConstructor:function(e,n,t,r){var s=e((function(e,o){c(e,p),d(e,{type:n,id:b++,frozen:void 0}),null!=o&&u(o,e[r],{that:e,AS_ENTRIES:t})})),p=s.prototype,g=h(n),v=function(e,n,t){var r=g(e),o=i(a(n),!0);return!0===o?m(r).set(n,t):o[r.id]=t,e};return o(p,{delete:function(e){var n=g(this);if(!l(e))return!1;var t=i(e);return!0===t?m(n).delete(e):t&&f(t,n.id)&&delete t[n.id]},has:function(e){var n=g(this);if(!l(e))return!1;var t=i(e);return!0===t?m(n).has(e):t&&f(t,n.id)}}),o(p,t?{get:function(e){var n=g(this);if(l(e)){var t=i(e);return!0===t?m(n).get(e):t?t[n.id]:void 0}},set:function(e,n){return v(this,e,n)}}:{add:function(e){return v(this,e,!0)}}),s}}},7710:(e,n,t)=>{"use strict";var r=t(2109),o=t(7854),i=t(1702),a=t(4705),l=t(1320),c=t(2423),u=t(408),s=t(5787),f=t(614),p=t(111),d=t(7293),h=t(7072),g=t(8003),v=t(9587);e.exports=function(e,n,t){var A=-1!==e.indexOf("Map"),b=-1!==e.indexOf("Weak"),m=A?"set":"add",y=o[e],E=y&&y.prototype,_=y,C={},w=function(e){var n=i(E[e]);l(E,e,"add"==e?function(e){return n(this,0===e?0:e),this}:"delete"==e?function(e){return!(b&&!p(e))&&n(this,0===e?0:e)}:"get"==e?function(e){return b&&!p(e)?void 0:n(this,0===e?0:e)}:"has"==e?function(e){return!(b&&!p(e))&&n(this,0===e?0:e)}:function(e,t){return n(this,0===e?0:e,t),this})};if(a(e,!f(y)||!(b||E.forEach&&!d((function(){(new y).entries().next()})))))_=t.getConstructor(n,e,A,m),c.enable();else if(a(e,!0)){var x=new _,k=x[m](b?{}:-0,1)!=x,S=d((function(){x.has(1)})),O=h((function(e){new y(e)})),B=!b&&d((function(){for(var e=new y,n=5;n--;)e[m](n,n);return!e.has(-0)}));O||((_=n((function(e,n){s(e,E);var t=v(new y,e,_);return null!=n&&u(n,t[m],{that:t,AS_ENTRIES:A}),t}))).prototype=E,E.constructor=_),(S||B)&&(w("delete"),w("has"),A&&w("get")),(B||k)&&w(m),b&&E.clear&&delete E.clear}return C[e]=_,r({global:!0,forced:_!=y},C),g(_,e),b||t.setStrong(_,e,A),_}},9920:(e,n,t)=>{var r=t(2597),o=t(3887),i=t(1236),a=t(3070);e.exports=function(e,n){for(var t=o(n),l=a.f,c=i.f,u=0;u{var r=t(5112)("match");e.exports=function(e){var n=/./;try{"/./"[e](n)}catch(t){try{return n[r]=!1,"/./"[e](n)}catch(e){}}return!1}},8544:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e)!==e.prototype}))},4230:(e,n,t)=>{var r=t(1702),o=t(4488),i=t(1340),a=/"/g,l=r("".replace);e.exports=function(e,n,t,r){var c=i(o(e)),u="<"+n;return""!==t&&(u+=" "+t+'="'+l(i(r),a,""")+'"'),u+">"+c+""}},4994:(e,n,t)=>{"use strict";var r=t(3383).IteratorPrototype,o=t(30),i=t(9114),a=t(8003),l=t(7497),c=function(){return this};e.exports=function(e,n,t){var u=n+" Iterator";return e.prototype=o(r,{next:i(1,t)}),a(e,u,!1,!0),l[u]=c,e}},8880:(e,n,t)=>{var r=t(9781),o=t(3070),i=t(9114);e.exports=r?function(e,n,t){return o.f(e,n,i(1,t))}:function(e,n,t){return e[n]=t,e}},9114:e=>{e.exports=function(e,n){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:n}}},6135:(e,n,t)=>{"use strict";var r=t(4948),o=t(3070),i=t(9114);e.exports=function(e,n,t){var a=r(n);a in e?o.f(e,a,i(0,t)):e[a]=t}},8709:(e,n,t)=>{"use strict";var r=t(7854),o=t(9670),i=t(2140),a=r.TypeError;e.exports=function(e){if(o(this),"string"===e||"default"===e)e="string";else if("number"!==e)throw a("Incorrect hint");return i(this,e)}},654:(e,n,t)=>{"use strict";var r=t(2109),o=t(6916),i=t(1913),a=t(6530),l=t(614),c=t(4994),u=t(9518),s=t(7674),f=t(8003),p=t(8880),d=t(1320),h=t(5112),g=t(7497),v=t(3383),A=a.PROPER,b=a.CONFIGURABLE,m=v.IteratorPrototype,y=v.BUGGY_SAFARI_ITERATORS,E=h("iterator"),_="keys",C="values",w="entries",x=function(){return this};e.exports=function(e,n,t,a,h,v,k){c(t,n,a);var S,O,B,I=function(e){if(e===h&&R)return R;if(!y&&e in j)return j[e];switch(e){case _:case C:case w:return function(){return new t(this,e)}}return function(){return new t(this)}},T=n+" Iterator",P=!1,j=e.prototype,z=j[E]||j["@@iterator"]||h&&j[h],R=!y&&z||I(h),M="Array"==n&&j.entries||z;if(M&&(S=u(M.call(new e)))!==Object.prototype&&S.next&&(i||u(S)===m||(s?s(S,m):l(S[E])||d(S,E,x)),f(S,T,!0,!0),i&&(g[T]=x)),A&&h==C&&z&&z.name!==C&&(!i&&b?p(j,"name",C):(P=!0,R=function(){return o(z,this)})),h)if(O={values:I(C),keys:v?R:I(_),entries:I(w)},k)for(B in O)(y||P||!(B in j))&&d(j,B,O[B]);else r({target:n,proto:!0,forced:y||P},O);return i&&!k||j[E]===R||d(j,E,R,{name:h}),g[n]=R,O}},7235:(e,n,t)=>{var r=t(857),o=t(2597),i=t(6061),a=t(3070).f;e.exports=function(e){var n=r.Symbol||(r.Symbol={});o(n,e)||a(n,e,{value:i.f(e)})}},9781:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},317:(e,n,t)=>{var r=t(7854),o=t(111),i=r.document,a=o(i)&&o(i.createElement);e.exports=function(e){return a?i.createElement(e):{}}},8324:e=>{e.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},8509:(e,n,t)=>{var r=t(317)("span").classList,o=r&&r.constructor&&r.constructor.prototype;e.exports=o===Object.prototype?void 0:o},8886:(e,n,t)=>{var r=t(8113).match(/firefox\/(\d+)/i);e.exports=!!r&&+r[1]},256:(e,n,t)=>{var r=t(8113);e.exports=/MSIE|Trident/.test(r)},5268:(e,n,t)=>{var r=t(4326),o=t(7854);e.exports="process"==r(o.process)},8113:(e,n,t)=>{var r=t(5005);e.exports=r("navigator","userAgent")||""},7392:(e,n,t)=>{var r,o,i=t(7854),a=t(8113),l=i.process,c=i.Deno,u=l&&l.versions||c&&c.version,s=u&&u.v8;s&&(o=(r=s.split("."))[0]>0&&r[0]<4?1:+(r[0]+r[1])),!o&&a&&(!(r=a.match(/Edge\/(\d+)/))||r[1]>=74)&&(r=a.match(/Chrome\/(\d+)/))&&(o=+r[1]),e.exports=o},8008:(e,n,t)=>{var r=t(8113).match(/AppleWebKit\/(\d+)\./);e.exports=!!r&&+r[1]},748:e=>{e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},2109:(e,n,t)=>{var r=t(7854),o=t(1236).f,i=t(8880),a=t(1320),l=t(3505),c=t(9920),u=t(4705);e.exports=function(e,n){var t,s,f,p,d,h=e.target,g=e.global,v=e.stat;if(t=g?r:v?r[h]||l(h,{}):(r[h]||{}).prototype)for(s in n){if(p=n[s],f=e.noTargetGet?(d=o(t,s))&&d.value:t[s],!u(g?s:h+(v?".":"#")+s,e.forced)&&void 0!==f){if(typeof p==typeof f)continue;c(p,f)}(e.sham||f&&f.sham)&&i(p,"sham",!0),a(t,s,p,e)}}},7293:e=>{e.exports=function(e){try{return!!e()}catch(e){return!0}}},7007:(e,n,t)=>{"use strict";t(4916);var r=t(1702),o=t(1320),i=t(2261),a=t(7293),l=t(5112),c=t(8880),u=l("species"),s=RegExp.prototype;e.exports=function(e,n,t,f){var p=l(e),d=!a((function(){var n={};return n[p]=function(){return 7},7!=""[e](n)})),h=d&&!a((function(){var n=!1,t=/a/;return"split"===e&&((t={}).constructor={},t.constructor[u]=function(){return t},t.flags="",t[p]=/./[p]),t.exec=function(){return n=!0,null},t[p](""),!n}));if(!d||!h||t){var g=r(/./[p]),v=n(p,""[e],(function(e,n,t,o,a){var l=r(e),c=n.exec;return c===i||c===s.exec?d&&!a?{done:!0,value:g(n,t,o)}:{done:!0,value:l(t,n,o)}:{done:!1}}));o(String.prototype,e,v[0]),o(s,p,v[1])}f&&c(s[p],"sham",!0)}},6677:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){return Object.isExtensible(Object.preventExtensions({}))}))},2104:e=>{var n=Function.prototype,t=n.apply,r=n.bind,o=n.call;e.exports="object"==typeof Reflect&&Reflect.apply||(r?o.bind(t):function(){return o.apply(t,arguments)})},9974:(e,n,t)=>{var r=t(1702),o=t(9662),i=r(r.bind);e.exports=function(e,n){return o(e),void 0===n?e:i?i(e,n):function(){return e.apply(n,arguments)}}},7065:(e,n,t)=>{"use strict";var r=t(7854),o=t(1702),i=t(9662),a=t(111),l=t(2597),c=t(206),u=r.Function,s=o([].concat),f=o([].join),p={},d=function(e,n,t){if(!l(p,n)){for(var r=[],o=0;o{var n=Function.prototype.call;e.exports=n.bind?n.bind(n):function(){return n.apply(n,arguments)}},6530:(e,n,t)=>{var r=t(9781),o=t(2597),i=Function.prototype,a=r&&Object.getOwnPropertyDescriptor,l=o(i,"name"),c=l&&"something"===function(){}.name,u=l&&(!r||r&&a(i,"name").configurable);e.exports={EXISTS:l,PROPER:c,CONFIGURABLE:u}},1702:e=>{var n=Function.prototype,t=n.bind,r=n.call,o=t&&t.bind(r);e.exports=t?function(e){return e&&o(r,e)}:function(e){return e&&function(){return r.apply(e,arguments)}}},5005:(e,n,t)=>{var r=t(7854),o=t(614),i=function(e){return o(e)?e:void 0};e.exports=function(e,n){return arguments.length<2?i(r[e]):r[e]&&r[e][n]}},1246:(e,n,t)=>{var r=t(648),o=t(8173),i=t(7497),a=t(5112)("iterator");e.exports=function(e){if(null!=e)return o(e,a)||o(e,"@@iterator")||i[r(e)]}},8554:(e,n,t)=>{var r=t(7854),o=t(6916),i=t(9662),a=t(9670),l=t(6330),c=t(1246),u=r.TypeError;e.exports=function(e,n){var t=arguments.length<2?c(e):n;if(i(t))return a(o(t,e));throw u(l(e)+" is not iterable")}},8173:(e,n,t)=>{var r=t(9662);e.exports=function(e,n){var t=e[n];return null==t?void 0:r(t)}},647:(e,n,t)=>{var r=t(1702),o=t(7908),i=Math.floor,a=r("".charAt),l=r("".replace),c=r("".slice),u=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,s=/\$([$&'`]|\d{1,2})/g;e.exports=function(e,n,t,r,f,p){var d=t+e.length,h=r.length,g=s;return void 0!==f&&(f=o(f),g=u),l(p,g,(function(o,l){var u;switch(a(l,0)){case"$":return"$";case"&":return e;case"`":return c(n,0,t);case"'":return c(n,d);case"<":u=f[c(l,1,-1)];break;default:var s=+l;if(0===s)return o;if(s>h){var p=i(s/10);return 0===p?o:p<=h?void 0===r[p-1]?a(l,1):r[p-1]+a(l,1):o}u=r[s-1]}return void 0===u?"":u}))}},7854:(e,n,t)=>{var r=function(e){return e&&e.Math==Math&&e};e.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof t.g&&t.g)||function(){return this}()||Function("return this")()},2597:(e,n,t)=>{var r=t(1702),o=t(7908),i=r({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,n){return i(o(e),n)}},3501:e=>{e.exports={}},490:(e,n,t)=>{var r=t(5005);e.exports=r("document","documentElement")},4664:(e,n,t)=>{var r=t(9781),o=t(7293),i=t(317);e.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},8361:(e,n,t)=>{var r=t(7854),o=t(1702),i=t(7293),a=t(4326),l=r.Object,c=o("".split);e.exports=i((function(){return!l("z").propertyIsEnumerable(0)}))?function(e){return"String"==a(e)?c(e,""):l(e)}:l},9587:(e,n,t)=>{var r=t(614),o=t(111),i=t(7674);e.exports=function(e,n,t){var a,l;return i&&r(a=n.constructor)&&a!==t&&o(l=a.prototype)&&l!==t.prototype&&i(e,l),e}},2788:(e,n,t)=>{var r=t(1702),o=t(614),i=t(5465),a=r(Function.toString);o(i.inspectSource)||(i.inspectSource=function(e){return a(e)}),e.exports=i.inspectSource},2423:(e,n,t)=>{var r=t(2109),o=t(1702),i=t(3501),a=t(111),l=t(2597),c=t(3070).f,u=t(8006),s=t(1156),f=t(2050),p=t(9711),d=t(6677),h=!1,g=p("meta"),v=0,A=function(e){c(e,g,{value:{objectID:"O"+v++,weakData:{}}})},b=e.exports={enable:function(){b.enable=function(){},h=!0;var e=u.f,n=o([].splice),t={};t[g]=1,e(t).length&&(u.f=function(t){for(var r=e(t),o=0,i=r.length;o{var r,o,i,a=t(8536),l=t(7854),c=t(1702),u=t(111),s=t(8880),f=t(2597),p=t(5465),d=t(6200),h=t(3501),g="Object already initialized",v=l.TypeError,A=l.WeakMap;if(a||p.state){var b=p.state||(p.state=new A),m=c(b.get),y=c(b.has),E=c(b.set);r=function(e,n){if(y(b,e))throw new v(g);return n.facade=e,E(b,e,n),n},o=function(e){return m(b,e)||{}},i=function(e){return y(b,e)}}else{var _=d("state");h[_]=!0,r=function(e,n){if(f(e,_))throw new v(g);return n.facade=e,s(e,_,n),n},o=function(e){return f(e,_)?e[_]:{}},i=function(e){return f(e,_)}}e.exports={set:r,get:o,has:i,enforce:function(e){return i(e)?o(e):r(e,{})},getterFor:function(e){return function(n){var t;if(!u(n)||(t=o(n)).type!==e)throw v("Incompatible receiver, "+e+" required");return t}}}},7659:(e,n,t)=>{var r=t(5112),o=t(7497),i=r("iterator"),a=Array.prototype;e.exports=function(e){return void 0!==e&&(o.Array===e||a[i]===e)}},3157:(e,n,t)=>{var r=t(4326);e.exports=Array.isArray||function(e){return"Array"==r(e)}},614:e=>{e.exports=function(e){return"function"==typeof e}},4411:(e,n,t)=>{var r=t(1702),o=t(7293),i=t(614),a=t(648),l=t(5005),c=t(2788),u=function(){},s=[],f=l("Reflect","construct"),p=/^\s*(?:class|function)\b/,d=r(p.exec),h=!p.exec(u),g=function(e){if(!i(e))return!1;try{return f(u,s,e),!0}catch(e){return!1}};e.exports=!f||o((function(){var e;return g(g.call)||!g(Object)||!g((function(){e=!0}))||e}))?function(e){if(!i(e))return!1;switch(a(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}return h||!!d(p,c(e))}:g},4705:(e,n,t)=>{var r=t(7293),o=t(614),i=/#|\.prototype\./,a=function(e,n){var t=c[l(e)];return t==s||t!=u&&(o(n)?r(n):!!n)},l=a.normalize=function(e){return String(e).replace(i,".").toLowerCase()},c=a.data={},u=a.NATIVE="N",s=a.POLYFILL="P";e.exports=a},111:(e,n,t)=>{var r=t(614);e.exports=function(e){return"object"==typeof e?null!==e:r(e)}},1913:e=>{e.exports=!1},7850:(e,n,t)=>{var r=t(111),o=t(4326),i=t(5112)("match");e.exports=function(e){var n;return r(e)&&(void 0!==(n=e[i])?!!n:"RegExp"==o(e))}},2190:(e,n,t)=>{var r=t(7854),o=t(5005),i=t(614),a=t(7976),l=t(3307),c=r.Object;e.exports=l?function(e){return"symbol"==typeof e}:function(e){var n=o("Symbol");return i(n)&&a(n.prototype,c(e))}},408:(e,n,t)=>{var r=t(7854),o=t(9974),i=t(6916),a=t(9670),l=t(6330),c=t(7659),u=t(6244),s=t(7976),f=t(8554),p=t(1246),d=t(9212),h=r.TypeError,g=function(e,n){this.stopped=e,this.result=n},v=g.prototype;e.exports=function(e,n,t){var r,A,b,m,y,E,_,C=t&&t.that,w=!(!t||!t.AS_ENTRIES),x=!(!t||!t.IS_ITERATOR),k=!(!t||!t.INTERRUPTED),S=o(n,C),O=function(e){return r&&d(r,"normal",e),new g(!0,e)},B=function(e){return w?(a(e),k?S(e[0],e[1],O):S(e[0],e[1])):k?S(e,O):S(e)};if(x)r=e;else{if(!(A=p(e)))throw h(l(e)+" is not iterable");if(c(A)){for(b=0,m=u(e);m>b;b++)if((y=B(e[b]))&&s(v,y))return y;return new g(!1)}r=f(e,A)}for(E=r.next;!(_=i(E,r)).done;){try{y=B(_.value)}catch(e){d(r,"throw",e)}if("object"==typeof y&&y&&s(v,y))return y}return new g(!1)}},9212:(e,n,t)=>{var r=t(6916),o=t(9670),i=t(8173);e.exports=function(e,n,t){var a,l;o(e);try{if(!(a=i(e,"return"))){if("throw"===n)throw t;return t}a=r(a,e)}catch(e){l=!0,a=e}if("throw"===n)throw t;if(l)throw a;return o(a),t}},3383:(e,n,t)=>{"use strict";var r,o,i,a=t(7293),l=t(614),c=t(30),u=t(9518),s=t(1320),f=t(5112),p=t(1913),d=f("iterator"),h=!1;[].keys&&("next"in(i=[].keys())?(o=u(u(i)))!==Object.prototype&&(r=o):h=!0),null==r||a((function(){var e={};return r[d].call(e)!==e}))?r={}:p&&(r=c(r)),l(r[d])||s(r,d,(function(){return this})),e.exports={IteratorPrototype:r,BUGGY_SAFARI_ITERATORS:h}},7497:e=>{e.exports={}},6244:(e,n,t)=>{var r=t(7466);e.exports=function(e){return r(e.length)}},133:(e,n,t)=>{var r=t(7392),o=t(7293);e.exports=!!Object.getOwnPropertySymbols&&!o((function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&r&&r<41}))},8536:(e,n,t)=>{var r=t(7854),o=t(614),i=t(2788),a=r.WeakMap;e.exports=o(a)&&/native code/.test(i(a))},3929:(e,n,t)=>{var r=t(7854),o=t(7850),i=r.TypeError;e.exports=function(e){if(o(e))throw i("The method doesn't accept regular expressions");return e}},1574:(e,n,t)=>{"use strict";var r=t(9781),o=t(1702),i=t(6916),a=t(7293),l=t(1956),c=t(5181),u=t(5296),s=t(7908),f=t(8361),p=Object.assign,d=Object.defineProperty,h=o([].concat);e.exports=!p||a((function(){if(r&&1!==p({b:1},p(d({},"a",{enumerable:!0,get:function(){d(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var e={},n={},t=Symbol(),o="abcdefghijklmnopqrst";return e[t]=7,o.split("").forEach((function(e){n[e]=e})),7!=p({},e)[t]||l(p({},n)).join("")!=o}))?function(e,n){for(var t=s(e),o=arguments.length,a=1,p=c.f,d=u.f;o>a;)for(var g,v=f(arguments[a++]),A=p?h(l(v),p(v)):l(v),b=A.length,m=0;b>m;)g=A[m++],r&&!i(d,v,g)||(t[g]=v[g]);return t}:p},30:(e,n,t)=>{var r,o=t(9670),i=t(6048),a=t(748),l=t(3501),c=t(490),u=t(317),s=t(6200),f=s("IE_PROTO"),p=function(){},d=function(e){return" - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

allOfCffuVoid

-
-
fun Collection<Cffu<*>>.allOfCffuVoid(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is completed when all the given Cffus complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given Cffus are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no Cffus are provided, returns a Cffu completed with the value null.

Same as CffuFactory.allOf, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun Array<out Cffu<*>>.allOfCffuVoid(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is completed when all the given Cffus complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given Cffus are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no Cffus are provided, returns a Cffu completed with the value null.

Same as CffuFactory.allOf, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allOfCffuVoidCf")
fun Collection<CompletableFuture<*>>.allOfCffuVoid(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is completed when all the given CompletableFutures complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given CompletableFutures are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no CompletableFutures are provided, returns a Cffu completed with the value null.

Same as CffuFactory.allOf, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html deleted file mode 100644 index f9f65eee..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - allOfCffu - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

allOfCffu

-
-
fun <T> Collection<Cffu<T>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results of all the given Cffus, the new Cffu is completed when all the given Cffus complete. If any of the given Cffus complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value emptyList.

Same as allOfCffuVoid, but the returned Cffu contains the results of input Cffus. Same as CffuFactory.cffuAllOf, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<Cffu<T>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results of all the given Cffus, the new Cffu is completed when all the given Cffus complete. If any of the given Cffus complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value emptyList.

Same as allOfCffuVoid, but the returned Cffu contains the results of input Cffus. Same as CffuFactory.cffuAllOf, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allOfCffuCf")
fun <T> Collection<CompletableFuture<T>>.allOfCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results of all the given CompletableFutures, the new Cffu is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value emptyList.

Same as allOfCffuVoid, but the returned Cffu contains the results of input CompletableFutures. Same as CffuFactory.cffuAllOf, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future-void.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future-void.html deleted file mode 100644 index dc45a57b..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future-void.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - allOfCompletableFutureVoid - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

allOfCompletableFutureVoid

-
-

Returns a new CompletableFuture that is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given CompletableFutures are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If no CompletableFutures are provided, returns a CompletableFuture completed with the value null.

Among the applications of this method is to await completion of a set of independent CompletableFutures before continuing a program, as in: CompletableFuture.allOf(c1, c2, c3).join();. Returns a new CompletableFuture that is completed when all the given CompletableFutures complete.

Same as CompletableFuture.allOf, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html deleted file mode 100644 index b1cd4dd7..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - allOfCompletableFuture - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

allOfCompletableFuture

-
-

Returns a new CompletableFuture with the results of all the given CompletableFutures, the returned new CompletableFuture is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value emptyList.

Same as allOfCompletableFutureVoid, but the returned CompletableFuture contains the results of input CompletableFutures. Same as CompletableFutureUtils.allOfWithResult, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu-void.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu-void.html deleted file mode 100644 index fc9cc4ea..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu-void.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - allOfFastFailCffuVoid - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

allOfFastFailCffuVoid

-
-
fun Collection<Cffu<*>>.allOfFastFailCffuVoid(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is successful when all the given Cffus success, the results(Cffu<Void>) of the given Cffus are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value null.

Same as CffuFactory.allOfFastFail, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun Array<out Cffu<*>>.allOfFastFailCffuVoid(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is successful when all the given Cffus success, the results(Cffu<Void>) of the given Cffus are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value null.

Same as CffuFactory.allOfFastFail, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allOfFastFailCffuVoidCf")
fun Collection<CompletableFuture<*>>.allOfFastFailCffuVoid(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is successful when all the given CompletableFutures success, the results(Cffu<Void>) of the given CompletableFutures are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value null.

Same as CffuFactory.allOfFastFail, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html deleted file mode 100644 index b6de466b..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - allOfFastFailCffu - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

allOfFastFailCffu

-
-
fun <T> Collection<Cffu<T>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results of all the given Cffus, the new Cffu success when all the given Cffus success. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value emptyList.

Same as allOfFastFailCffuVoid, but the returned Cffu contains the results of input Cffus. Same as CffuFactory.cffuAllOfFastFail, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<Cffu<T>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results of all the given Cffus, the new Cffu success when all the given Cffus success. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value emptyList.

Same as allOfFastFailCffuVoid, but the returned Cffu contains the results of input Cffus. Same as CffuFactory.cffuAllOfFastFail, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allOfFastFailCffuCf")
fun <T> Collection<CompletableFuture<T>>.allOfFastFailCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results of all the given CompletableFutures, the new Cffu success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value emptyList.

Same as allOfFastFailCffuVoid, but the returned Cffu contains the results of input Cffus. Same as CffuFactory.cffuAllOfFastFail, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future-void.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future-void.html deleted file mode 100644 index 609af431..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future-void.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - allOfFastFailCompletableFutureVoid - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

allOfFastFailCompletableFutureVoid

-
-

Returns a new CompletableFuture that is successful when all the given CompletableFutures success, the results(CompletableFuture<Void>) of the given CompletableFutures are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value null.

Same as CompletableFutureUtils.allOfFastFail, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html deleted file mode 100644 index 783e6232..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - allOfFastFailCompletableFuture - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

allOfFastFailCompletableFuture

-
-

Returns a new CompletableFuture with the results of all the given CompletableFutures, the new CompletableFuture success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value emptyList.

Same as allOfFastFailCompletableFutureVoid, but the returned CompletableFuture contains the results of input CompletableFutures. Same as CompletableFutureUtils.allOfFastFailWithResult, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu-any.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu-any.html deleted file mode 100644 index 435aebdb..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu-any.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - anyOfCffuAny - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

anyOfCffuAny

-
-
fun Collection<Cffu<*>>.anyOfCffuAny(cffuFactory: CffuFactory = ABSENT): Cffu<Any>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

Same as CffuFactory.anyOf, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun Array<out Cffu<*>>.anyOfCffuAny(cffuFactory: CffuFactory = ABSENT): Cffu<Any>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

Same as CffuFactory.anyOf, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "anyOfCffuAnyCf")
fun Collection<CompletableFuture<*>>.anyOfCffuAny(cffuFactory: CffuFactory): Cffu<Any>

Returns a new Cffu that is completed when any of the given CompletableFutures complete, with the same result.

Same as CffuFactory.anyOf, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html deleted file mode 100644 index 7e03fc06..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - anyOfCffu - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

anyOfCffu

-
-
fun <T> Collection<Cffu<T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

Same as anyOfCffuAny, but return result type is specified type instead of type Any. Same as CffuFactory.cffuAnyOf, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<Cffu<T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

Same as anyOfCffuAny, but return result type is specified type instead of type Any. Same as CffuFactory.cffuAnyOf, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "anyOfCffuCf")
fun <T> Collection<CompletableFuture<T>>.anyOfCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is completed when any of the given CompletableFutures complete, with the same result.

Same as anyOfCffuAny, but return result type is specified type instead of type Any. Same as CffuFactory.cffuAnyOf, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future-any.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future-any.html deleted file mode 100644 index 74b3e968..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future-any.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - anyOfCompletableFutureAny - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

anyOfCompletableFutureAny

-
-

Returns a new CompletableFuture that is completed when any of the given CompletableFutures complete, with the same result. Otherwise, if it completed exceptionally, the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns an incomplete CompletableFuture.

Same as CompletableFuture.anyOf, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html deleted file mode 100644 index 96589663..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - anyOfCompletableFuture - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

anyOfCompletableFuture

-
-

Returns a new CompletableFuture that is completed when any of the given CompletableFutures complete, with the same result. Otherwise, if it completed exceptionally, the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns an incomplete CompletableFuture.

Same as anyOfCompletableFutureAny, but return result type is specified type instead of type Any. Same as CompletableFutureUtils.anyOfWithType, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu-any.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu-any.html deleted file mode 100644 index 614db38f..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu-any.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - anyOfSuccessCffuAny - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

anyOfSuccessCffuAny

-
-
fun Collection<Cffu<*>>.anyOfSuccessCffuAny(cffuFactory: CffuFactory = ABSENT): Cffu<Any>

Returns a new Cffu that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

Same as CffuFactory.anyOfSuccess, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun Array<out Cffu<*>>.anyOfSuccessCffuAny(cffuFactory: CffuFactory = ABSENT): Cffu<Any>

Returns a new Cffu that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

Same as CffuFactory.anyOfSuccess, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "anyOfSuccessCffuAnyCf")
fun Collection<CompletableFuture<*>>.anyOfSuccessCffuAny(cffuFactory: CffuFactory): Cffu<Any>

Returns a new Cffu that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

Same as CffuFactory.anyOfSuccess, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html deleted file mode 100644 index eb37934e..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - anyOfSuccessCffu - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

anyOfSuccessCffu

-
-
fun <T> Collection<Cffu<T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is successful when any of the given Cffus success, with the same result. Otherwise, all the given Cffus complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given Cffus as its cause. If no Cffus are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

Same as CffuFactory.cffuAnyOfSuccess, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<Cffu<T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is successful when any of the given Cffus success, with the same result. Otherwise, all the given Cffus complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given Cffus as its cause. If no Cffus are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

Same as CffuFactory.cffuAnyOfSuccess, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "anyOfSuccessCffuCf")
fun <T> Collection<CompletableFuture<T>>.anyOfSuccessCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

Same as CffuFactory.cffuAnyOfSuccess, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future-any.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future-any.html deleted file mode 100644 index 0971604a..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future-any.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - anyOfSuccessCompletableFutureAny - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

anyOfSuccessCompletableFutureAny

-
-

Returns a new CompletableFuture that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new CompletableFuture that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

Same as CompletableFutureUtils.anyOfSuccess, providing this method is convenient for method chaining.

See also


Returns a new CompletableFuture that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception CompletableFuture any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

Same as CompletableFutureUtils.anyOfSuccess, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html deleted file mode 100644 index 72bad4c5..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - anyOfSuccessCompletableFuture - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

anyOfSuccessCompletableFuture

-
-

Returns a new CompletableFuture that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new CompletableFuture that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

Same as anyOfSuccessCompletableFutureAny, but return result type is specified type instead of type Any. Same as CompletableFutureUtils.anyOfSuccessWithType, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/as-cffu.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/as-cffu.html deleted file mode 100644 index d4fac95b..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/as-cffu.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - asCffu - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

asCffu

-
-
fun <T> CompletionStage<T>.asCffu(cffuFactory: CffuFactory): Cffu<T>

Wrap an existed CompletableFuture/CompletionStage to Cffu.

Same as CffuFactory.asCffu, providing this method is convenient for method chaining.

See also


Wrap input CompletableFuture/CompletionStage collection elements to Cffu by CffuFactory.asCffu.

Same as CffuFactory.asCffuArray, providing this method is convenient for method chaining.

See also


fun <T> Array<out CompletionStage<T>>.asCffu(cffuFactory: CffuFactory): Array<Cffu<T>>

Wrap input CompletableFuture/CompletionStage array elements to Cffu by CffuFactory.asCffu.

Same as CffuFactory.asCffuArray, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-complete-async.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-complete-async.html deleted file mode 100644 index b10a05fb..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-complete-async.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - cffuCompleteAsync - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuCompleteAsync

-
-

Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the default executor.

Return

given CompletableFuture

Parameters

supplier

a function returning the value to be used to complete given CompletableFuture


fun <T> CompletableFuture<T>.cffuCompleteAsync(supplier: () -> T, executor: Executor): CompletableFuture<T>

Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the given executor.

Return

given CompletableFuture

Parameters

supplier

a function returning the value to be used to complete given CompletableFuture

executor

the executor to use for asynchronous execution

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-complete-on-timeout.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-complete-on-timeout.html deleted file mode 100644 index 39bf4192..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-complete-on-timeout.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - cffuCompleteOnTimeout - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuCompleteOnTimeout

-
-

Completes given CompletableFuture with the given value if not otherwise completed before the given timeout.

Return

given CompletableFuture

Parameters

value

the value to use upon timeout

timeout

how long to wait before completing normally with the given value, in units of unit

unit

a TimeUnit determining how to interpret the timeout parameter

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-copy.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-copy.html deleted file mode 100644 index 4983e563..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-copy.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - cffuCopy - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuCopy

-
-

Returns a new CompletableFuture that is completed normally with the same value as this CompletableFuture when it completes normally. If this CompletableFuture completes exceptionally, then the returned CompletableFuture completes exceptionally with a CompletionException with this exception as cause. The behavior is equivalent to thenApply(x -> x). This method may be useful as a form of "defensive copying", to prevent clients from completing, while still being able to arrange dependent actions.

Return

the new CompletableFuture

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exception-now.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exception-now.html deleted file mode 100644 index 9596ec71..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exception-now.html +++ /dev/null @@ -1,73 +0,0 @@ - - - - - cffuExceptionNow - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuExceptionNow

-
-

Returns the exception thrown by the task, without waiting.

-This method is for cases where the caller knows that the task has already completed with an exception.

Return

the exception thrown by the task

See also

#resultNow()

Throws

if the task has not completed, the task completed normally, or the task was cancelled

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-async.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-async.html deleted file mode 100644 index 0fece7a7..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-async.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - cffuExceptionallyAsync - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuExceptionallyAsync

-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using given stage's default asynchronous execution facility. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the value of the returned CompletionStage if given CompletionStage completed exceptionally


Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using the supplied Executor. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the value of the returned CompletionStage if given CompletionStage completed exceptionally

executor

the executor to use for asynchronous execution

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-compose-async.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-compose-async.html deleted file mode 100644 index b8c9e80b..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-compose-async.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - cffuExceptionallyComposeAsync - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuExceptionallyComposeAsync

-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using given stage's default asynchronous execution facility.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the returned CompletionStage if given CompletionStage completed exceptionally


Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using the supplied Executor.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the returned CompletionStage if given CompletionStage completed exceptionally

executor

the executor to use for asynchronous execution

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-compose.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-compose.html deleted file mode 100644 index f254b211..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-compose.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - cffuExceptionallyCompose - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuExceptionallyCompose

-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the returned CompletionStage if given CompletionStage completed exceptionally

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-join.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-join.html deleted file mode 100644 index a6640796..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-join.html +++ /dev/null @@ -1,74 +0,0 @@ - - - - - cffuJoin - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuJoin

-
-
fun <T> CompletableFuture<T>.cffuJoin(timeout: Long, unit: TimeUnit): T

Waits if necessary for at most the given time for the computation to complete, and then retrieves its result value when complete, or throws an (unchecked) exception if completed exceptionally.

-NOTE:
-call this method

result = CompletableFutureUtils.cffuJoin(cf, timeout, unit);

is same as:

result = cf.copy() // defensive copy to avoid writing this cf unexpectedly
.orTimeout(timeout, unit)
.join();
}

CAUTION:
if the wait timed out, this method throws an (unchecked) CompletionException with the TimeoutException as its cause; NOT throws a (checked) TimeoutException like CompletableFuture.get.

Return

the result value

Parameters

timeout

the maximum time to wait

unit

the time unit of the timeout argument

See also

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-minimal-completion-stage.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-minimal-completion-stage.html deleted file mode 100644 index 37c13528..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-minimal-completion-stage.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - cffuMinimalCompletionStage - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuMinimalCompletionStage

-
-

Returns a new CompletionStage that is completed normally with the same value as given CompletableFuture when it completes normally, and cannot be independently completed or otherwise used in ways not defined by the methods of interface CompletionStage. If given CompletableFuture completes exceptionally, then the returned CompletionStage completes exceptionally with a CompletionException with given exception as cause.

CAUTION: if run on old Java 8, just return a normal CompletableFuture which is NOT with a minimal CompletionStage.

Return

the new CompletionStage

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-new-incomplete-future.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-new-incomplete-future.html deleted file mode 100644 index 85bf94b0..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-new-incomplete-future.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - cffuNewIncompleteFuture - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuNewIncompleteFuture

-
-

Returns a new incomplete CompletableFuture of the type to be returned by a CompletionStage method.

Return

a new CompletableFuture

Parameters

the type of the value
-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-or-timeout.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-or-timeout.html deleted file mode 100644 index 7e3c3a93..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-or-timeout.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - cffuOrTimeout - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuOrTimeout

-
-

Exceptionally completes this CompletableFuture with a TimeoutException if not otherwise completed before the given timeout.

Return

this CompletableFuture

Parameters

timeout

how long to wait before completing exceptionally with a TimeoutException, in units of unit

unit

a TimeUnit determining how to interpret the timeout parameter

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-result-now.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-result-now.html deleted file mode 100644 index 5c70d033..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-result-now.html +++ /dev/null @@ -1,75 +0,0 @@ - - - - - cffuResultNow - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuResultNow

-
-

Returns the computed result, without waiting.

-This method is for cases where the caller knows that the task has already completed successfully, -for example when filtering a stream of Future objects for the successful tasks -and using a mapping operation to obtain a stream of results.

results = futures.stream()
.filter(f -> f.state() == Future.State.SUCCESS)
.map(Future::resultNow)
.toList();
}
-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html deleted file mode 100644 index 56ee4c0b..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - cffuState - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuState

-
-

Returns the computation state(CffuState), this method has java version compatibility logic, so you can invoke in old java 18-.

Return

the computation state

See also

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html deleted file mode 100644 index 1393d0c7..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - cffuUnwrap - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffuUnwrap

-
-

Unwrap input Cffu collection elements by Cffu.cffuUnwrap.

Same as CffuFactory.cffuArrayUnwrap, providing this method is convenient for method chaining.

See also


Unwrap input Cffu array elements by Cffu.cffuUnwrap.

Same as CffuFactory.cffuArrayUnwrap, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/combine.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/combine.html deleted file mode 100644 index 4bed9055..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/combine.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - combine - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

combine

-
-

Returns a new CompletableFuture that is completed when the given two CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 2 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null


Returns a new CompletableFuture that is completed when the given three CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 3 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null


Returns a new CompletableFuture that is completed when the given 4 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 4 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null


Returns a new CompletableFuture that is completed when the given 5 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 5 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/component1.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/component1.html deleted file mode 100644 index f7aae4d1..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/component1.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - component1 - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

component1

-
-
operator fun <T1, T2> Tuple2<T1, T2>.component1(): T1
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component1(): T1
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component1(): T1
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component1(): T1
-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/component2.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/component2.html deleted file mode 100644 index 322a1765..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/component2.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - component2 - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

component2

-
-
operator fun <T1, T2> Tuple2<T1, T2>.component2(): T2
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component2(): T2
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component2(): T2
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component2(): T2
-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/component3.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/component3.html deleted file mode 100644 index b8756c30..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/component3.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - component3 - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

component3

-
-
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component3(): T3
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component3(): T3
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component3(): T3
-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/component4.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/component4.html deleted file mode 100644 index c5c3ff6d..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/component4.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - component4 - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

component4

-
-
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component4(): T4
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component4(): T4
-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/component5.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/component5.html deleted file mode 100644 index 8a87d5ce..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/component5.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - component5 - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

component5

-
-
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component5(): T5
-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/index.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/index.html deleted file mode 100644 index eb86338a..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/index.html +++ /dev/null @@ -1,650 +0,0 @@ - - - - - io.foldright.cffu.kotlin - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Package-level declarations

-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<Cffu<T>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>
fun <T> Collection<Cffu<T>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results of all the given Cffus, the new Cffu is completed when all the given Cffus complete. If any of the given Cffus complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value emptyList.

@JvmName(name = "allOfCffuCf")
fun <T> Collection<CompletableFuture<T>>.allOfCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results of all the given CompletableFutures, the new Cffu is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value emptyList.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun Array<out Cffu<*>>.allOfCffuVoid(cffuFactory: CffuFactory = ABSENT): Cffu<Void>
fun Collection<Cffu<*>>.allOfCffuVoid(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is completed when all the given Cffus complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given Cffus are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no Cffus are provided, returns a Cffu completed with the value null.

@JvmName(name = "allOfCffuVoidCf")
fun Collection<CompletableFuture<*>>.allOfCffuVoid(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is completed when all the given CompletableFutures complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given CompletableFutures are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no CompletableFutures are provided, returns a Cffu completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture with the results of all the given CompletableFutures, the returned new CompletableFuture is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value emptyList.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given CompletableFutures are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If no CompletableFutures are provided, returns a CompletableFuture completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<Cffu<T>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>
fun <T> Collection<Cffu<T>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results of all the given Cffus, the new Cffu success when all the given Cffus success. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value emptyList.

@JvmName(name = "allOfFastFailCffuCf")
fun <T> Collection<CompletableFuture<T>>.allOfFastFailCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results of all the given CompletableFutures, the new Cffu success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value emptyList.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun Array<out Cffu<*>>.allOfFastFailCffuVoid(cffuFactory: CffuFactory = ABSENT): Cffu<Void>
fun Collection<Cffu<*>>.allOfFastFailCffuVoid(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is successful when all the given Cffus success, the results(Cffu<Void>) of the given Cffus are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value null.

@JvmName(name = "allOfFastFailCffuVoidCf")
fun Collection<CompletableFuture<*>>.allOfFastFailCffuVoid(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is successful when all the given CompletableFutures success, the results(Cffu<Void>) of the given CompletableFutures are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture with the results of all the given CompletableFutures, the new CompletableFuture success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value emptyList.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is successful when all the given CompletableFutures success, the results(CompletableFuture<Void>) of the given CompletableFutures are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<Cffu<T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>
fun <T> Collection<Cffu<T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

@JvmName(name = "anyOfCffuCf")
fun <T> Collection<CompletableFuture<T>>.anyOfCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is completed when any of the given CompletableFutures complete, with the same result.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun Array<out Cffu<*>>.anyOfCffuAny(cffuFactory: CffuFactory = ABSENT): Cffu<Any>
fun Collection<Cffu<*>>.anyOfCffuAny(cffuFactory: CffuFactory = ABSENT): Cffu<Any>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

@JvmName(name = "anyOfCffuAnyCf")
fun Collection<CompletableFuture<*>>.anyOfCffuAny(cffuFactory: CffuFactory): Cffu<Any>

Returns a new Cffu that is completed when any of the given CompletableFutures complete, with the same result.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed when any of the given CompletableFutures complete, with the same result. Otherwise, if it completed exceptionally, the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns an incomplete CompletableFuture.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed when any of the given CompletableFutures complete, with the same result. Otherwise, if it completed exceptionally, the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns an incomplete CompletableFuture.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<Cffu<T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>
fun <T> Collection<Cffu<T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is successful when any of the given Cffus success, with the same result. Otherwise, all the given Cffus complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given Cffus as its cause. If no Cffus are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

@JvmName(name = "anyOfSuccessCffuCf")
fun <T> Collection<CompletableFuture<T>>.anyOfSuccessCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun Array<out Cffu<*>>.anyOfSuccessCffuAny(cffuFactory: CffuFactory = ABSENT): Cffu<Any>
fun Collection<Cffu<*>>.anyOfSuccessCffuAny(cffuFactory: CffuFactory = ABSENT): Cffu<Any>
@JvmName(name = "anyOfSuccessCffuAnyCf")
fun Collection<CompletableFuture<*>>.anyOfSuccessCffuAny(cffuFactory: CffuFactory): Cffu<Any>

Returns a new Cffu that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new CompletableFuture that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception CompletableFuture any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

Returns a new CompletableFuture that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new CompletableFuture that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> CompletionStage<T>.asCffu(cffuFactory: CffuFactory): Cffu<T>
fun <T> Array<out CompletionStage<T>>.asCffu(cffuFactory: CffuFactory): Array<Cffu<T>>

Wrap input CompletableFuture/CompletionStage array elements to Cffu by CffuFactory.asCffu.

Wrap input CompletableFuture/CompletionStage collection elements to Cffu by CffuFactory.asCffu.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the default executor.

fun <T> CompletableFuture<T>.cffuCompleteAsync(supplier: () -> T, executor: Executor): CompletableFuture<T>

Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the given executor.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Completes given CompletableFuture with the given value if not otherwise completed before the given timeout.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed normally with the same value as this CompletableFuture when it completes normally. If this CompletableFuture completes exceptionally, then the returned CompletableFuture completes exceptionally with a CompletionException with this exception as cause. The behavior is equivalent to thenApply(x -> x). This method may be useful as a form of "defensive copying", to prevent clients from completing, while still being able to arrange dependent actions.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using given stage's default asynchronous execution facility. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using the supplied Executor. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using given stage's default asynchronous execution facility.

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using the supplied Executor.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the exception thrown by the task, without waiting.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> CompletableFuture<T>.cffuJoin(timeout: Long, unit: TimeUnit): T

Waits if necessary for at most the given time for the computation to complete, and then retrieves its result value when complete, or throws an (unchecked) exception if completed exceptionally.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that is completed normally with the same value as given CompletableFuture when it completes normally, and cannot be independently completed or otherwise used in ways not defined by the methods of interface CompletionStage. If given CompletableFuture completes exceptionally, then the returned CompletionStage completes exceptionally with a CompletionException with given exception as cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new incomplete CompletableFuture of the type to be returned by a CompletionStage method.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Exceptionally completes this CompletableFuture with a TimeoutException if not otherwise completed before the given timeout.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the computed result, without waiting.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the computation state(CffuState), this method has java version compatibility logic, so you can invoke in old java 18-.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Unwrap input Cffu array elements by Cffu.cffuUnwrap.

Unwrap input Cffu collection elements by Cffu.cffuUnwrap.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed when the given two CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is completed when the given three CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is completed when the given 4 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is completed when the given 5 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2> Tuple2<T1, T2>.component1(): T1
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component1(): T1
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component1(): T1
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component1(): T1
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2> Tuple2<T1, T2>.component2(): T2
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component2(): T2
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component2(): T2
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component2(): T2
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component3(): T3
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component3(): T3
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component3(): T3
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component4(): T4
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component4(): T4
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component5(): T5
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
-
-
-
-
-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html b/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html deleted file mode 100644 index c8027916..00000000 --- a/dokka/0.9.8/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - toCompletableFuture - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

toCompletableFuture

-
-

Convert Cffu collection elements to CompletableFuture by Cffu.toCompletableFuture.

Same as CffuFactory.cffuAnyOf, providing this method is convenient for method chaining.

See also


Convert Cffu array elements to CompletableFuture by Cffu.toCompletableFuture.

Same as CffuFactory.cffuAnyOf, providing this method is convenient for method chaining.

See also

-
- -
-
- - diff --git a/dokka/0.9.8/cffu-kotlin/package-list b/dokka/0.9.8/cffu-kotlin/package-list deleted file mode 100644 index f1a82ae2..00000000 --- a/dokka/0.9.8/cffu-kotlin/package-list +++ /dev/null @@ -1,94 +0,0 @@ -$dokka.format:html-v1 -$dokka.linkExtension:html -$dokka.location:io.foldright.cffu.kotlin////PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/index.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffuVoid/kotlin.Array[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu-void.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffuVoid/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu-void.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffuVoid/kotlin.collections.Collection[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu-void.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffuVoid/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu-void.html -$dokka.location:io.foldright.cffu.kotlin//allOfCompletableFuture/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allOfCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allOfCompletableFutureVoid/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future-void.html -$dokka.location:io.foldright.cffu.kotlin//allOfCompletableFutureVoid/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future-void.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffuVoid/kotlin.Array[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu-void.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffuVoid/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu-void.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffuVoid/kotlin.collections.Collection[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu-void.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffuVoid/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu-void.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCompletableFuture/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCompletableFutureVoid/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future-void.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCompletableFutureVoid/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future-void.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffuAny/kotlin.Array[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu-any.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffuAny/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu-any.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffuAny/kotlin.collections.Collection[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu-any.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffuAny/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu-any.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCompletableFuture/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCompletableFutureAny/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future-any.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCompletableFutureAny/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future-any.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffuAny/kotlin.Array[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu-any.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffuAny/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu-any.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffuAny/kotlin.collections.Collection[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu-any.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffuAny/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu-any.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCompletableFuture/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCompletableFutureAny/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future-any.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCompletableFutureAny/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future-any.html -$dokka.location:io.foldright.cffu.kotlin//asCffu/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/as-cffu.html -$dokka.location:io.foldright.cffu.kotlin//asCffu/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/as-cffu.html -$dokka.location:io.foldright.cffu.kotlin//asCffu/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/as-cffu.html -$dokka.location:io.foldright.cffu.kotlin//cffuCompleteAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#kotlin.Function0[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-complete-async.html -$dokka.location:io.foldright.cffu.kotlin//cffuCompleteAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#kotlin.Function0[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-complete-async.html -$dokka.location:io.foldright.cffu.kotlin//cffuCompleteOnTimeout/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#TypeParam(bounds=[kotlin.Any?])#kotlin.Long#java.util.concurrent.TimeUnit/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-complete-on-timeout.html -$dokka.location:io.foldright.cffu.kotlin//cffuCopy/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-copy.html -$dokka.location:io.foldright.cffu.kotlin//cffuExceptionNow/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exception-now.html -$dokka.location:io.foldright.cffu.kotlin//cffuExceptionallyAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#kotlin.Function1[kotlin.Throwable,TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-async.html -$dokka.location:io.foldright.cffu.kotlin//cffuExceptionallyAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#kotlin.Function1[kotlin.Throwable,TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-async.html -$dokka.location:io.foldright.cffu.kotlin//cffuExceptionallyCompose/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#kotlin.Function1[kotlin.Throwable,java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-compose.html -$dokka.location:io.foldright.cffu.kotlin//cffuExceptionallyComposeAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#kotlin.Function1[kotlin.Throwable,java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-compose-async.html -$dokka.location:io.foldright.cffu.kotlin//cffuExceptionallyComposeAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#kotlin.Function1[kotlin.Throwable,java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-exceptionally-compose-async.html -$dokka.location:io.foldright.cffu.kotlin//cffuJoin/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#kotlin.Long#java.util.concurrent.TimeUnit/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-join.html -$dokka.location:io.foldright.cffu.kotlin//cffuMinimalCompletionStage/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-minimal-completion-stage.html -$dokka.location:io.foldright.cffu.kotlin//cffuNewIncompleteFuture/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-new-incomplete-future.html -$dokka.location:io.foldright.cffu.kotlin//cffuOrTimeout/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#kotlin.Long#java.util.concurrent.TimeUnit/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-or-timeout.html -$dokka.location:io.foldright.cffu.kotlin//cffuResultNow/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-result-now.html -$dokka.location:io.foldright.cffu.kotlin//cffuState/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html -$dokka.location:io.foldright.cffu.kotlin//cffuUnwrap/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html -$dokka.location:io.foldright.cffu.kotlin//cffuUnwrap/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html -$dokka.location:io.foldright.cffu.kotlin//combine/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/combine.html -$dokka.location:io.foldright.cffu.kotlin//combine/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/combine.html -$dokka.location:io.foldright.cffu.kotlin//combine/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/combine.html -$dokka.location:io.foldright.cffu.kotlin//combine/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/combine.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple2[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple3[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple2[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple3[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component3/io.foldright.cffu.tuple.Tuple3[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component3.html -$dokka.location:io.foldright.cffu.kotlin//component3/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component3.html -$dokka.location:io.foldright.cffu.kotlin//component3/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component3.html -$dokka.location:io.foldright.cffu.kotlin//component4/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component4.html -$dokka.location:io.foldright.cffu.kotlin//component4/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component4.html -$dokka.location:io.foldright.cffu.kotlin//component5/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component5.html -$dokka.location:io.foldright.cffu.kotlin//toCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//toCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html -io.foldright.cffu.kotlin - diff --git a/dokka/0.9.8/images/anchor-copy-button.svg b/dokka/0.9.8/images/anchor-copy-button.svg deleted file mode 100644 index bab9d747..00000000 --- a/dokka/0.9.8/images/anchor-copy-button.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/dokka/0.9.8/images/arrow_down.svg b/dokka/0.9.8/images/arrow_down.svg deleted file mode 100644 index c0388dee..00000000 --- a/dokka/0.9.8/images/arrow_down.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/dokka/0.9.8/images/copy-icon.svg b/dokka/0.9.8/images/copy-icon.svg deleted file mode 100644 index 61440f0a..00000000 --- a/dokka/0.9.8/images/copy-icon.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/dokka/0.9.8/images/copy-successful-icon.svg b/dokka/0.9.8/images/copy-successful-icon.svg deleted file mode 100644 index 1865f739..00000000 --- a/dokka/0.9.8/images/copy-successful-icon.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/dokka/0.9.8/images/footer-go-to-link.svg b/dokka/0.9.8/images/footer-go-to-link.svg deleted file mode 100644 index 0137e223..00000000 --- a/dokka/0.9.8/images/footer-go-to-link.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/dokka/0.9.8/images/go-to-top-icon.svg b/dokka/0.9.8/images/go-to-top-icon.svg deleted file mode 100644 index d987f3ea..00000000 --- a/dokka/0.9.8/images/go-to-top-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/dokka/0.9.8/images/logo-icon.svg b/dokka/0.9.8/images/logo-icon.svg deleted file mode 100644 index 1fea0877..00000000 --- a/dokka/0.9.8/images/logo-icon.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/dokka/0.9.8/images/nav-icons/abstract-class-kotlin.svg b/dokka/0.9.8/images/nav-icons/abstract-class-kotlin.svg deleted file mode 100644 index a2069b8f..00000000 --- a/dokka/0.9.8/images/nav-icons/abstract-class-kotlin.svg +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/dokka/0.9.8/images/nav-icons/abstract-class.svg b/dokka/0.9.8/images/nav-icons/abstract-class.svg deleted file mode 100644 index 60182030..00000000 --- a/dokka/0.9.8/images/nav-icons/abstract-class.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/dokka/0.9.8/images/nav-icons/annotation-kotlin.svg b/dokka/0.9.8/images/nav-icons/annotation-kotlin.svg deleted file mode 100644 index 932f1d3d..00000000 --- a/dokka/0.9.8/images/nav-icons/annotation-kotlin.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/dokka/0.9.8/images/nav-icons/annotation.svg b/dokka/0.9.8/images/nav-icons/annotation.svg deleted file mode 100644 index b80c54b4..00000000 --- a/dokka/0.9.8/images/nav-icons/annotation.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/0.9.8/images/nav-icons/class-kotlin.svg b/dokka/0.9.8/images/nav-icons/class-kotlin.svg deleted file mode 100644 index 46a21f65..00000000 --- a/dokka/0.9.8/images/nav-icons/class-kotlin.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/dokka/0.9.8/images/nav-icons/class.svg b/dokka/0.9.8/images/nav-icons/class.svg deleted file mode 100644 index 3f1ad167..00000000 --- a/dokka/0.9.8/images/nav-icons/class.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/0.9.8/images/nav-icons/enum-kotlin.svg b/dokka/0.9.8/images/nav-icons/enum-kotlin.svg deleted file mode 100644 index 4a854596..00000000 --- a/dokka/0.9.8/images/nav-icons/enum-kotlin.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/dokka/0.9.8/images/nav-icons/enum.svg b/dokka/0.9.8/images/nav-icons/enum.svg deleted file mode 100644 index fa7f2476..00000000 --- a/dokka/0.9.8/images/nav-icons/enum.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/0.9.8/images/nav-icons/exception-class.svg b/dokka/0.9.8/images/nav-icons/exception-class.svg deleted file mode 100644 index c0b2bdeb..00000000 --- a/dokka/0.9.8/images/nav-icons/exception-class.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/0.9.8/images/nav-icons/field-value.svg b/dokka/0.9.8/images/nav-icons/field-value.svg deleted file mode 100644 index 20449c94..00000000 --- a/dokka/0.9.8/images/nav-icons/field-value.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/dokka/0.9.8/images/nav-icons/field-variable.svg b/dokka/0.9.8/images/nav-icons/field-variable.svg deleted file mode 100644 index 3b074500..00000000 --- a/dokka/0.9.8/images/nav-icons/field-variable.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/dokka/0.9.8/images/nav-icons/function.svg b/dokka/0.9.8/images/nav-icons/function.svg deleted file mode 100644 index f0da64a0..00000000 --- a/dokka/0.9.8/images/nav-icons/function.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/0.9.8/images/nav-icons/interface-kotlin.svg b/dokka/0.9.8/images/nav-icons/interface-kotlin.svg deleted file mode 100644 index bf07a148..00000000 --- a/dokka/0.9.8/images/nav-icons/interface-kotlin.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/dokka/0.9.8/images/nav-icons/interface.svg b/dokka/0.9.8/images/nav-icons/interface.svg deleted file mode 100644 index 32063ba2..00000000 --- a/dokka/0.9.8/images/nav-icons/interface.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/0.9.8/images/nav-icons/object.svg b/dokka/0.9.8/images/nav-icons/object.svg deleted file mode 100644 index 9f427de4..00000000 --- a/dokka/0.9.8/images/nav-icons/object.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/dokka/0.9.8/images/theme-toggle.svg b/dokka/0.9.8/images/theme-toggle.svg deleted file mode 100644 index 2a8d750e..00000000 --- a/dokka/0.9.8/images/theme-toggle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - \ No newline at end of file diff --git a/dokka/0.9.8/index.html b/dokka/0.9.8/index.html index 889e7a26..6ef10092 100644 --- a/dokka/0.9.8/index.html +++ b/dokka/0.9.8/index.html @@ -1,91 +1,8 @@ - - - - cffu-kotlin - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cffu-kotlin

-
-

Packages

-
-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
- -
-
- + + + + diff --git a/dokka/0.9.8/navigation.html b/dokka/0.9.8/navigation.html deleted file mode 100644 index aa56819e..00000000 --- a/dokka/0.9.8/navigation.html +++ /dev/null @@ -1,121 +0,0 @@ - - diff --git a/dokka/0.9.8/scripts/clipboard.js b/dokka/0.9.8/scripts/clipboard.js deleted file mode 100644 index b00ce246..00000000 --- a/dokka/0.9.8/scripts/clipboard.js +++ /dev/null @@ -1,52 +0,0 @@ -window.addEventListener('load', () => { - document.querySelectorAll('span.copy-icon').forEach(element => { - element.addEventListener('click', (el) => copyElementsContentToClipboard(element)); - }) - - document.querySelectorAll('span.anchor-icon').forEach(element => { - element.addEventListener('click', (el) => { - if(element.hasAttribute('pointing-to')){ - const location = hrefWithoutCurrentlyUsedAnchor() + '#' + element.getAttribute('pointing-to') - copyTextToClipboard(element, location) - } - }); - }) -}) - -const copyElementsContentToClipboard = (element) => { - const selection = window.getSelection(); - const range = document.createRange(); - range.selectNodeContents(element.parentNode.parentNode); - selection.removeAllRanges(); - selection.addRange(range); - - copyAndShowPopup(element, () => selection.removeAllRanges()) -} - -const copyTextToClipboard = (element, text) => { - var textarea = document.createElement("textarea"); - textarea.textContent = text; - textarea.style.position = "fixed"; - document.body.appendChild(textarea); - textarea.select(); - - copyAndShowPopup(element, () => document.body.removeChild(textarea)) -} - -const copyAndShowPopup = (element, after) => { - try { - document.execCommand('copy'); - element.nextElementSibling.classList.add('active-popup'); - setTimeout(() => { - element.nextElementSibling.classList.remove('active-popup'); - }, 1200); - } catch (e) { - console.error('Failed to write to clipboard:', e) - } - finally { - if(after) after() - } -} - -const hrefWithoutCurrentlyUsedAnchor = () => window.location.href.split('#')[0] - diff --git a/dokka/0.9.8/scripts/main.js b/dokka/0.9.8/scripts/main.js deleted file mode 100644 index e5b54a36..00000000 --- a/dokka/0.9.8/scripts/main.js +++ /dev/null @@ -1,44 +0,0 @@ -(()=>{var e={8527:e=>{e.exports=''},5570:e=>{e.exports=''},107:e=>{e.exports=''},7224:e=>{e.exports=''},538:e=>{e.exports=''},1924:(e,n,t)=>{"use strict";var r=t(210),o=t(5559),i=o(r("String.prototype.indexOf"));e.exports=function(e,n){var t=r(e,!!n);return"function"==typeof t&&i(e,".prototype.")>-1?o(t):t}},5559:(e,n,t)=>{"use strict";var r=t(8612),o=t(210),i=o("%Function.prototype.apply%"),a=o("%Function.prototype.call%"),l=o("%Reflect.apply%",!0)||r.call(a,i),c=o("%Object.getOwnPropertyDescriptor%",!0),u=o("%Object.defineProperty%",!0),s=o("%Math.max%");if(u)try{u({},"a",{value:1})}catch(e){u=null}e.exports=function(e){var n=l(r,a,arguments);if(c&&u){var t=c(n,"length");t.configurable&&u(n,"length",{value:1+s(0,e.length-(arguments.length-1))})}return n};var f=function(){return l(r,i,arguments)};u?u(e.exports,"apply",{value:f}):e.exports.apply=f},4184:(e,n)=>{var t; -/*! - Copyright (c) 2018 Jed Watson. - Licensed under the MIT License (MIT), see - http://jedwatson.github.io/classnames -*/!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],n=0;n{"use strict";e.exports=function(e,n){var t=this,r=t.constructor;return t.options=Object.assign({storeInstancesGlobally:!0},n||{}),t.callbacks={},t.directMap={},t.sequenceLevels={},t.resetTimer=null,t.ignoreNextKeyup=!1,t.ignoreNextKeypress=!1,t.nextExpectedAction=!1,t.element=e,t.addEvents(),t.options.storeInstancesGlobally&&r.instances.push(t),t},e.exports.prototype.bind=t(2207),e.exports.prototype.bindMultiple=t(3396),e.exports.prototype.unbind=t(9208),e.exports.prototype.trigger=t(9855),e.exports.prototype.reset=t(6214),e.exports.prototype.stopCallback=t(3450),e.exports.prototype.handleKey=t(3067),e.exports.prototype.addEvents=t(718),e.exports.prototype.bindSingle=t(8763),e.exports.prototype.getKeyInfo=t(5825),e.exports.prototype.pickBestAction=t(8608),e.exports.prototype.getReverseMap=t(3956),e.exports.prototype.getMatches=t(3373),e.exports.prototype.resetSequences=t(3346),e.exports.prototype.fireCallback=t(2684),e.exports.prototype.bindSequence=t(7103),e.exports.prototype.resetSequenceTimer=t(7309),e.exports.prototype.detach=t(7554),e.exports.instances=[],e.exports.reset=t(1822),e.exports.REVERSE_MAP=null},718:(e,n,t)=>{"use strict";e.exports=function(){var e=this,n=t(4323),r=e.element;e.eventHandler=t(9646).bind(e),n(r,"keypress",e.eventHandler),n(r,"keydown",e.eventHandler),n(r,"keyup",e.eventHandler)}},2207:e=>{"use strict";e.exports=function(e,n,t){return e=e instanceof Array?e:[e],this.bindMultiple(e,n,t),this}},3396:e=>{"use strict";e.exports=function(e,n,t){for(var r=0;r{"use strict";e.exports=function(e,n,r,o){var i=this;function a(n){return function(){i.nextExpectedAction=n,++i.sequenceLevels[e],i.resetSequenceTimer()}}function l(n){var a;i.fireCallback(r,n,e),"keyup"!==o&&(a=t(6770),i.ignoreNextKeyup=a(n)),setTimeout((function(){i.resetSequences()}),10)}i.sequenceLevels[e]=0;for(var c=0;c{"use strict";e.exports=function(e,n,t,r,o){var i=this;i.directMap[e+":"+t]=n;var a,l=(e=e.replace(/\s+/g," ")).split(" ");l.length>1?i.bindSequence(e,l,n,t):(a=i.getKeyInfo(e,t),i.callbacks[a.key]=i.callbacks[a.key]||[],i.getMatches(a.key,a.modifiers,{type:a.action},r,e,o),i.callbacks[a.key][r?"unshift":"push"]({callback:n,modifiers:a.modifiers,action:a.action,seq:r,level:o,combo:e}))}},7554:(e,n,t)=>{var r=t(4323).off;e.exports=function(){var e=this,n=e.element;r(n,"keypress",e.eventHandler),r(n,"keydown",e.eventHandler),r(n,"keyup",e.eventHandler)}},4323:e=>{function n(e,n,t,r){return!e.addEventListener&&(n="on"+n),(e.addEventListener||e.attachEvent).call(e,n,t,r),t}e.exports=n,e.exports.on=n,e.exports.off=function(e,n,t,r){return!e.removeEventListener&&(n="on"+n),(e.removeEventListener||e.detachEvent).call(e,n,t,r),t}},2684:(e,n,t)=>{"use strict";e.exports=function(e,n,r,o){this.stopCallback(n,n.target||n.srcElement,r,o)||!1===e(n,r)&&(t(1350)(n),t(6103)(n))}},5825:(e,n,t)=>{"use strict";e.exports=function(e,n){var r,o,i,a,l,c,u=[];for(r=t(4520)(e),a=t(7549),l=t(5355),c=t(8581),i=0;i{"use strict";e.exports=function(e,n,r,o,i,a){var l,c,u,s,f=this,p=[],d=r.type;"keypress"!==d||r.code&&"Arrow"===r.code.slice(0,5)||(f.callbacks["any-character"]||[]).forEach((function(e){p.push(e)}));if(!f.callbacks[e])return p;for(u=t(8581),"keyup"===d&&u(e)&&(n=[e]),l=0;l{"use strict";e.exports=function(){var e,n=this.constructor;if(!n.REVERSE_MAP)for(var r in n.REVERSE_MAP={},e=t(4766))r>95&&r<112||e.hasOwnProperty(r)&&(n.REVERSE_MAP[e[r]]=r);return n.REVERSE_MAP}},3067:(e,n,t)=>{"use strict";e.exports=function(e,n,r){var o,i,a,l,c=this,u={},s=0,f=!1;for(o=c.getMatches(e,n,r),i=0;i{"use strict";e.exports=function(e){var n,r=this;"number"!=typeof e.which&&(e.which=e.keyCode);var o=t(6770)(e);void 0!==o&&("keyup"!==e.type||r.ignoreNextKeyup!==o?(n=t(4610),r.handleKey(o,n(e),e)):r.ignoreNextKeyup=!1)}},5532:e=>{"use strict";e.exports=function(e,n){return e.sort().join(",")===n.sort().join(",")}},8608:e=>{"use strict";e.exports=function(e,n,t){return t||(t=this.getReverseMap()[e]?"keydown":"keypress"),"keypress"===t&&n.length&&(t="keydown"),t}},6214:e=>{"use strict";e.exports=function(){return this.callbacks={},this.directMap={},this}},7309:e=>{"use strict";e.exports=function(){var e=this;clearTimeout(e.resetTimer),e.resetTimer=setTimeout((function(){e.resetSequences()}),1e3)}},3346:e=>{"use strict";e.exports=function(e){var n=this;e=e||{};var t,r=!1;for(t in n.sequenceLevels)e[t]?r=!0:n.sequenceLevels[t]=0;r||(n.nextExpectedAction=!1)}},3450:e=>{"use strict";e.exports=function(e,n){if((" "+n.className+" ").indexOf(" combokeys ")>-1)return!1;var t=n.tagName.toLowerCase();return"input"===t||"select"===t||"textarea"===t||n.isContentEditable}},9855:e=>{"use strict";e.exports=function(e,n){return this.directMap[e+":"+n]&&this.directMap[e+":"+n]({},e),this}},9208:e=>{"use strict";e.exports=function(e,n){return this.bind(e,(function(){}),n)}},1822:e=>{"use strict";e.exports=function(){this.instances.forEach((function(e){e.reset()}))}},6770:(e,n,t)=>{"use strict";e.exports=function(e){var n,r;if(n=t(4766),r=t(5295),"keypress"===e.type){var o=String.fromCharCode(e.which);return e.shiftKey||(o=o.toLowerCase()),o}return void 0!==n[e.which]?n[e.which]:void 0!==r[e.which]?r[e.which]:String.fromCharCode(e.which).toLowerCase()}},4610:e=>{"use strict";e.exports=function(e){var n=[];return e.shiftKey&&n.push("shift"),e.altKey&&n.push("alt"),e.ctrlKey&&n.push("ctrl"),e.metaKey&&n.push("meta"),n}},8581:e=>{"use strict";e.exports=function(e){return"shift"===e||"ctrl"===e||"alt"===e||"meta"===e}},4520:e=>{"use strict";e.exports=function(e){return"+"===e?["+"]:e.split("+")}},1350:e=>{"use strict";e.exports=function(e){e.preventDefault?e.preventDefault():e.returnValue=!1}},5355:e=>{"use strict";e.exports={"~":"`","!":"1","@":"2","#":"3",$:"4","%":"5","^":"6","&":"7","*":"8","(":"9",")":"0",_:"-","+":"=",":":";",'"':"'","<":",",">":".","?":"/","|":"\\"}},7549:e=>{"use strict";e.exports={option:"alt",command:"meta",return:"enter",escape:"esc",mod:/Mac|iPod|iPhone|iPad/.test(navigator.platform)?"meta":"ctrl"}},5295:e=>{"use strict";e.exports={106:"*",107:"plus",109:"minus",110:".",111:"/",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"}},4766:e=>{"use strict";e.exports={8:"backspace",9:"tab",13:"enter",16:"shift",17:"ctrl",18:"alt",20:"capslock",27:"esc",32:"space",33:"pageup",34:"pagedown",35:"end",36:"home",37:"left",38:"up",39:"right",40:"down",45:"ins",46:"del",91:"meta",93:"meta",173:"minus",187:"plus",189:"minus",224:"meta"};for(var n=1;n<20;++n)e.exports[111+n]="f"+n;for(n=0;n<=9;++n)e.exports[n+96]=n},6103:e=>{"use strict";e.exports=function(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0}},3362:()=>{var e;!function(){var e=Math.PI,n=2*e,t=e/180,r=document.createElement("div");document.head.appendChild(r);var o=self.ConicGradient=function(e){o.all.push(this),e=e||{},this.canvas=document.createElement("canvas"),this.context=this.canvas.getContext("2d"),this.repeating=!!e.repeating,this.size=e.size||Math.max(innerWidth,innerHeight),this.canvas.width=this.canvas.height=this.size;var n=e.stops;this.stops=(n||"").split(/\s*,(?![^(]*\))\s*/),this.from=0;for(var t=0;t0){var i=this.stops[0].clone();i.pos=0,this.stops.unshift(i)}if(void 0===this.stops[this.stops.length-1].pos)this.stops[this.stops.length-1].pos=1;else if(!this.repeating&&this.stops[this.stops.length-1].pos<1){var a=this.stops[this.stops.length-1].clone();a.pos=1,this.stops.push(a)}if(this.stops.forEach((function(e,n){if(void 0===e.pos){for(var t=n+1;this[t];t++)if(void 0!==this[t].pos){e.pos=this[n-1].pos+(this[t].pos-this[n-1].pos)/(t-n+1);break}}else n>0&&(e.pos=Math.max(e.pos,this[n-1].pos))}),this.stops),this.repeating){var l=(n=this.stops.slice())[n.length-1].pos-n[0].pos;for(t=0;this.stops[this.stops.length-1].pos<1&&t<1e4;t++)for(var c=0;c'},get png(){return this.canvas.toDataURL()},get r(){return Math.sqrt(2)*this.size/2},paint:function(){var e,n,r,o=this.context,i=this.r,a=this.size/2,l=0,c=this.stops[l];o.translate(this.size/2,this.size/2),o.rotate(-90*t),o.rotate(this.from*t),o.translate(-this.size/2,-this.size/2);for(var u=0;u<360;){if(u/360+1e-5>=c.pos){do{e=c,l++,c=this.stops[l]}while(c&&c!=e&&c.pos===e.pos);if(!c)break;var s=e.color+""==c.color+""&&e!=c;n=e.color.map((function(e,n){return c.color[n]-e}))}r=(u/360-e.pos)/(c.pos-e.pos);var f=s?c.color:n.map((function(n,t){var o=n*r+e.color[t];return t<3?255&o:o}));if(o.fillStyle="rgba("+f.join(",")+")",o.beginPath(),o.moveTo(a,a),s)var p=360*(c.pos-e.pos);else p=.5;var d=u*t,h=(d=Math.min(360*t,d))+p*t;h=Math.min(360*t,h+.02),o.arc(a,a,i,d,h),o.closePath(),o.fill(),u+=p}}},o.ColorStop=function(e,t){if(this.gradient=e,t){var r=t.match(/^(.+?)(?:\s+([\d.]+)(%|deg|turn|grad|rad)?)?(?:\s+([\d.]+)(%|deg|turn|grad|rad)?)?\s*$/);if(this.color=o.ColorStop.colorToRGBA(r[1]),r[2]){var i=r[3];"%"==i||"0"===r[2]&&!i?this.pos=r[2]/100:"turn"==i?this.pos=+r[2]:"deg"==i?this.pos=r[2]/360:"grad"==i?this.pos=r[2]/400:"rad"==i&&(this.pos=r[2]/n)}r[4]&&(this.next=new o.ColorStop(e,r[1]+" "+r[4]+r[5]))}},o.ColorStop.prototype={clone:function(){var e=new o.ColorStop(this.gradient);return e.color=this.color,e.pos=this.pos,e},toString:function(){return"rgba("+this.color.join(", ")+") "+100*this.pos+"%"}},o.ColorStop.colorToRGBA=function(e){if(!Array.isArray(e)&&-1==e.indexOf("from")){r.style.color=e;var n=getComputedStyle(r).color.match(/rgba?\(([\d.]+), ([\d.]+), ([\d.]+)(?:, ([\d.]+))?\)/);return n&&(n.shift(),(n=n.map((function(e){return+e})))[3]=isNaN(n[3])?1:n[3]),n||[0,0,0,0]}return e}}(),self.StyleFix&&((e=document.createElement("p")).style.backgroundImage="conic-gradient(white, black)",e.style.backgroundImage=PrefixFree.prefix+"conic-gradient(white, black)",e.style.backgroundImage||StyleFix.register((function(e,n){return e.indexOf("conic-gradient")>-1&&(e=e.replace(/(?:repeating-)?conic-gradient\(\s*((?:\([^()]+\)|[^;()}])+?)\)/g,(function(e,n){return new ConicGradient({stops:n,repeating:e.indexOf("repeating-")>-1})}))),e})))},9662:(e,n,t)=>{var r=t(7854),o=t(614),i=t(6330),a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not a function")}},9483:(e,n,t)=>{var r=t(7854),o=t(4411),i=t(6330),a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not a constructor")}},6077:(e,n,t)=>{var r=t(7854),o=t(614),i=r.String,a=r.TypeError;e.exports=function(e){if("object"==typeof e||o(e))return e;throw a("Can't set "+i(e)+" as a prototype")}},1223:(e,n,t)=>{var r=t(5112),o=t(30),i=t(3070),a=r("unscopables"),l=Array.prototype;null==l[a]&&i.f(l,a,{configurable:!0,value:o(null)}),e.exports=function(e){l[a][e]=!0}},1530:(e,n,t)=>{"use strict";var r=t(8710).charAt;e.exports=function(e,n,t){return n+(t?r(e,n).length:1)}},5787:(e,n,t)=>{var r=t(7854),o=t(7976),i=r.TypeError;e.exports=function(e,n){if(o(n,e))return e;throw i("Incorrect invocation")}},9670:(e,n,t)=>{var r=t(7854),o=t(111),i=r.String,a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not an object")}},7556:(e,n,t)=>{var r=t(7293);e.exports=r((function(){if("function"==typeof ArrayBuffer){var e=new ArrayBuffer(8);Object.isExtensible(e)&&Object.defineProperty(e,"a",{value:8})}}))},8533:(e,n,t)=>{"use strict";var r=t(2092).forEach,o=t(9341)("forEach");e.exports=o?[].forEach:function(e){return r(this,e,arguments.length>1?arguments[1]:void 0)}},8457:(e,n,t)=>{"use strict";var r=t(7854),o=t(9974),i=t(6916),a=t(7908),l=t(3411),c=t(7659),u=t(4411),s=t(6244),f=t(6135),p=t(8554),d=t(1246),h=r.Array;e.exports=function(e){var n=a(e),t=u(this),r=arguments.length,g=r>1?arguments[1]:void 0,v=void 0!==g;v&&(g=o(g,r>2?arguments[2]:void 0));var A,b,m,y,E,_,C=d(n),w=0;if(!C||this==h&&c(C))for(A=s(n),b=t?new this(A):h(A);A>w;w++)_=v?g(n[w],w):n[w],f(b,w,_);else for(E=(y=p(n,C)).next,b=t?new this:[];!(m=i(E,y)).done;w++)_=v?l(y,g,[m.value,w],!0):m.value,f(b,w,_);return b.length=w,b}},1318:(e,n,t)=>{var r=t(5656),o=t(1400),i=t(6244),a=function(e){return function(n,t,a){var l,c=r(n),u=i(c),s=o(a,u);if(e&&t!=t){for(;u>s;)if((l=c[s++])!=l)return!0}else for(;u>s;s++)if((e||s in c)&&c[s]===t)return e||s||0;return!e&&-1}};e.exports={includes:a(!0),indexOf:a(!1)}},2092:(e,n,t)=>{var r=t(9974),o=t(1702),i=t(8361),a=t(7908),l=t(6244),c=t(5417),u=o([].push),s=function(e){var n=1==e,t=2==e,o=3==e,s=4==e,f=6==e,p=7==e,d=5==e||f;return function(h,g,v,A){for(var b,m,y=a(h),E=i(y),_=r(g,v),C=l(E),w=0,x=A||c,k=n?x(h,C):t||p?x(h,0):void 0;C>w;w++)if((d||w in E)&&(m=_(b=E[w],w,y),e))if(n)k[w]=m;else if(m)switch(e){case 3:return!0;case 5:return b;case 6:return w;case 2:u(k,b)}else switch(e){case 4:return!1;case 7:u(k,b)}return f?-1:o||s?s:k}};e.exports={forEach:s(0),map:s(1),filter:s(2),some:s(3),every:s(4),find:s(5),findIndex:s(6),filterReject:s(7)}},1194:(e,n,t)=>{var r=t(7293),o=t(5112),i=t(7392),a=o("species");e.exports=function(e){return i>=51||!r((function(){var n=[];return(n.constructor={})[a]=function(){return{foo:1}},1!==n[e](Boolean).foo}))}},9341:(e,n,t)=>{"use strict";var r=t(7293);e.exports=function(e,n){var t=[][e];return!!t&&r((function(){t.call(null,n||function(){throw 1},1)}))}},3671:(e,n,t)=>{var r=t(7854),o=t(9662),i=t(7908),a=t(8361),l=t(6244),c=r.TypeError,u=function(e){return function(n,t,r,u){o(t);var s=i(n),f=a(s),p=l(s),d=e?p-1:0,h=e?-1:1;if(r<2)for(;;){if(d in f){u=f[d],d+=h;break}if(d+=h,e?d<0:p<=d)throw c("Reduce of empty array with no initial value")}for(;e?d>=0:p>d;d+=h)d in f&&(u=t(u,f[d],d,s));return u}};e.exports={left:u(!1),right:u(!0)}},206:(e,n,t)=>{var r=t(1702);e.exports=r([].slice)},4362:(e,n,t)=>{var r=t(206),o=Math.floor,i=function(e,n){var t=e.length,c=o(t/2);return t<8?a(e,n):l(e,i(r(e,0,c),n),i(r(e,c),n),n)},a=function(e,n){for(var t,r,o=e.length,i=1;i0;)e[r]=e[--r];r!==i++&&(e[r]=t)}return e},l=function(e,n,t,r){for(var o=n.length,i=t.length,a=0,l=0;a{var r=t(7854),o=t(3157),i=t(4411),a=t(111),l=t(5112)("species"),c=r.Array;e.exports=function(e){var n;return o(e)&&(n=e.constructor,(i(n)&&(n===c||o(n.prototype))||a(n)&&null===(n=n[l]))&&(n=void 0)),void 0===n?c:n}},5417:(e,n,t)=>{var r=t(7475);e.exports=function(e,n){return new(r(e))(0===n?0:n)}},3411:(e,n,t)=>{var r=t(9670),o=t(9212);e.exports=function(e,n,t,i){try{return i?n(r(t)[0],t[1]):n(t)}catch(n){o(e,"throw",n)}}},7072:(e,n,t)=>{var r=t(5112)("iterator"),o=!1;try{var i=0,a={next:function(){return{done:!!i++}},return:function(){o=!0}};a[r]=function(){return this},Array.from(a,(function(){throw 2}))}catch(e){}e.exports=function(e,n){if(!n&&!o)return!1;var t=!1;try{var i={};i[r]=function(){return{next:function(){return{done:t=!0}}}},e(i)}catch(e){}return t}},4326:(e,n,t)=>{var r=t(1702),o=r({}.toString),i=r("".slice);e.exports=function(e){return i(o(e),8,-1)}},648:(e,n,t)=>{var r=t(7854),o=t(1694),i=t(614),a=t(4326),l=t(5112)("toStringTag"),c=r.Object,u="Arguments"==a(function(){return arguments}());e.exports=o?a:function(e){var n,t,r;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(t=function(e,n){try{return e[n]}catch(e){}}(n=c(e),l))?t:u?a(n):"Object"==(r=a(n))&&i(n.callee)?"Arguments":r}},5631:(e,n,t)=>{"use strict";var r=t(3070).f,o=t(30),i=t(2248),a=t(9974),l=t(5787),c=t(408),u=t(654),s=t(6340),f=t(9781),p=t(2423).fastKey,d=t(9909),h=d.set,g=d.getterFor;e.exports={getConstructor:function(e,n,t,u){var s=e((function(e,r){l(e,d),h(e,{type:n,index:o(null),first:void 0,last:void 0,size:0}),f||(e.size=0),null!=r&&c(r,e[u],{that:e,AS_ENTRIES:t})})),d=s.prototype,v=g(n),A=function(e,n,t){var r,o,i=v(e),a=b(e,n);return a?a.value=t:(i.last=a={index:o=p(n,!0),key:n,value:t,previous:r=i.last,next:void 0,removed:!1},i.first||(i.first=a),r&&(r.next=a),f?i.size++:e.size++,"F"!==o&&(i.index[o]=a)),e},b=function(e,n){var t,r=v(e),o=p(n);if("F"!==o)return r.index[o];for(t=r.first;t;t=t.next)if(t.key==n)return t};return i(d,{clear:function(){for(var e=v(this),n=e.index,t=e.first;t;)t.removed=!0,t.previous&&(t.previous=t.previous.next=void 0),delete n[t.index],t=t.next;e.first=e.last=void 0,f?e.size=0:this.size=0},delete:function(e){var n=this,t=v(n),r=b(n,e);if(r){var o=r.next,i=r.previous;delete t.index[r.index],r.removed=!0,i&&(i.next=o),o&&(o.previous=i),t.first==r&&(t.first=o),t.last==r&&(t.last=i),f?t.size--:n.size--}return!!r},forEach:function(e){for(var n,t=v(this),r=a(e,arguments.length>1?arguments[1]:void 0);n=n?n.next:t.first;)for(r(n.value,n.key,this);n&&n.removed;)n=n.previous},has:function(e){return!!b(this,e)}}),i(d,t?{get:function(e){var n=b(this,e);return n&&n.value},set:function(e,n){return A(this,0===e?0:e,n)}}:{add:function(e){return A(this,e=0===e?0:e,e)}}),f&&r(d,"size",{get:function(){return v(this).size}}),s},setStrong:function(e,n,t){var r=n+" Iterator",o=g(n),i=g(r);u(e,n,(function(e,n){h(this,{type:r,target:e,state:o(e),kind:n,last:void 0})}),(function(){for(var e=i(this),n=e.kind,t=e.last;t&&t.removed;)t=t.previous;return e.target&&(e.last=t=t?t.next:e.state.first)?"keys"==n?{value:t.key,done:!1}:"values"==n?{value:t.value,done:!1}:{value:[t.key,t.value],done:!1}:(e.target=void 0,{value:void 0,done:!0})}),t?"entries":"values",!t,!0),s(n)}}},9320:(e,n,t)=>{"use strict";var r=t(1702),o=t(2248),i=t(2423).getWeakData,a=t(9670),l=t(111),c=t(5787),u=t(408),s=t(2092),f=t(2597),p=t(9909),d=p.set,h=p.getterFor,g=s.find,v=s.findIndex,A=r([].splice),b=0,m=function(e){return e.frozen||(e.frozen=new y)},y=function(){this.entries=[]},E=function(e,n){return g(e.entries,(function(e){return e[0]===n}))};y.prototype={get:function(e){var n=E(this,e);if(n)return n[1]},has:function(e){return!!E(this,e)},set:function(e,n){var t=E(this,e);t?t[1]=n:this.entries.push([e,n])},delete:function(e){var n=v(this.entries,(function(n){return n[0]===e}));return~n&&A(this.entries,n,1),!!~n}},e.exports={getConstructor:function(e,n,t,r){var s=e((function(e,o){c(e,p),d(e,{type:n,id:b++,frozen:void 0}),null!=o&&u(o,e[r],{that:e,AS_ENTRIES:t})})),p=s.prototype,g=h(n),v=function(e,n,t){var r=g(e),o=i(a(n),!0);return!0===o?m(r).set(n,t):o[r.id]=t,e};return o(p,{delete:function(e){var n=g(this);if(!l(e))return!1;var t=i(e);return!0===t?m(n).delete(e):t&&f(t,n.id)&&delete t[n.id]},has:function(e){var n=g(this);if(!l(e))return!1;var t=i(e);return!0===t?m(n).has(e):t&&f(t,n.id)}}),o(p,t?{get:function(e){var n=g(this);if(l(e)){var t=i(e);return!0===t?m(n).get(e):t?t[n.id]:void 0}},set:function(e,n){return v(this,e,n)}}:{add:function(e){return v(this,e,!0)}}),s}}},7710:(e,n,t)=>{"use strict";var r=t(2109),o=t(7854),i=t(1702),a=t(4705),l=t(1320),c=t(2423),u=t(408),s=t(5787),f=t(614),p=t(111),d=t(7293),h=t(7072),g=t(8003),v=t(9587);e.exports=function(e,n,t){var A=-1!==e.indexOf("Map"),b=-1!==e.indexOf("Weak"),m=A?"set":"add",y=o[e],E=y&&y.prototype,_=y,C={},w=function(e){var n=i(E[e]);l(E,e,"add"==e?function(e){return n(this,0===e?0:e),this}:"delete"==e?function(e){return!(b&&!p(e))&&n(this,0===e?0:e)}:"get"==e?function(e){return b&&!p(e)?void 0:n(this,0===e?0:e)}:"has"==e?function(e){return!(b&&!p(e))&&n(this,0===e?0:e)}:function(e,t){return n(this,0===e?0:e,t),this})};if(a(e,!f(y)||!(b||E.forEach&&!d((function(){(new y).entries().next()})))))_=t.getConstructor(n,e,A,m),c.enable();else if(a(e,!0)){var x=new _,k=x[m](b?{}:-0,1)!=x,S=d((function(){x.has(1)})),O=h((function(e){new y(e)})),B=!b&&d((function(){for(var e=new y,n=5;n--;)e[m](n,n);return!e.has(-0)}));O||((_=n((function(e,n){s(e,E);var t=v(new y,e,_);return null!=n&&u(n,t[m],{that:t,AS_ENTRIES:A}),t}))).prototype=E,E.constructor=_),(S||B)&&(w("delete"),w("has"),A&&w("get")),(B||k)&&w(m),b&&E.clear&&delete E.clear}return C[e]=_,r({global:!0,forced:_!=y},C),g(_,e),b||t.setStrong(_,e,A),_}},9920:(e,n,t)=>{var r=t(2597),o=t(3887),i=t(1236),a=t(3070);e.exports=function(e,n){for(var t=o(n),l=a.f,c=i.f,u=0;u{var r=t(5112)("match");e.exports=function(e){var n=/./;try{"/./"[e](n)}catch(t){try{return n[r]=!1,"/./"[e](n)}catch(e){}}return!1}},8544:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e)!==e.prototype}))},4230:(e,n,t)=>{var r=t(1702),o=t(4488),i=t(1340),a=/"/g,l=r("".replace);e.exports=function(e,n,t,r){var c=i(o(e)),u="<"+n;return""!==t&&(u+=" "+t+'="'+l(i(r),a,""")+'"'),u+">"+c+""}},4994:(e,n,t)=>{"use strict";var r=t(3383).IteratorPrototype,o=t(30),i=t(9114),a=t(8003),l=t(7497),c=function(){return this};e.exports=function(e,n,t){var u=n+" Iterator";return e.prototype=o(r,{next:i(1,t)}),a(e,u,!1,!0),l[u]=c,e}},8880:(e,n,t)=>{var r=t(9781),o=t(3070),i=t(9114);e.exports=r?function(e,n,t){return o.f(e,n,i(1,t))}:function(e,n,t){return e[n]=t,e}},9114:e=>{e.exports=function(e,n){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:n}}},6135:(e,n,t)=>{"use strict";var r=t(4948),o=t(3070),i=t(9114);e.exports=function(e,n,t){var a=r(n);a in e?o.f(e,a,i(0,t)):e[a]=t}},8709:(e,n,t)=>{"use strict";var r=t(7854),o=t(9670),i=t(2140),a=r.TypeError;e.exports=function(e){if(o(this),"string"===e||"default"===e)e="string";else if("number"!==e)throw a("Incorrect hint");return i(this,e)}},654:(e,n,t)=>{"use strict";var r=t(2109),o=t(6916),i=t(1913),a=t(6530),l=t(614),c=t(4994),u=t(9518),s=t(7674),f=t(8003),p=t(8880),d=t(1320),h=t(5112),g=t(7497),v=t(3383),A=a.PROPER,b=a.CONFIGURABLE,m=v.IteratorPrototype,y=v.BUGGY_SAFARI_ITERATORS,E=h("iterator"),_="keys",C="values",w="entries",x=function(){return this};e.exports=function(e,n,t,a,h,v,k){c(t,n,a);var S,O,B,I=function(e){if(e===h&&R)return R;if(!y&&e in j)return j[e];switch(e){case _:case C:case w:return function(){return new t(this,e)}}return function(){return new t(this)}},T=n+" Iterator",P=!1,j=e.prototype,z=j[E]||j["@@iterator"]||h&&j[h],R=!y&&z||I(h),M="Array"==n&&j.entries||z;if(M&&(S=u(M.call(new e)))!==Object.prototype&&S.next&&(i||u(S)===m||(s?s(S,m):l(S[E])||d(S,E,x)),f(S,T,!0,!0),i&&(g[T]=x)),A&&h==C&&z&&z.name!==C&&(!i&&b?p(j,"name",C):(P=!0,R=function(){return o(z,this)})),h)if(O={values:I(C),keys:v?R:I(_),entries:I(w)},k)for(B in O)(y||P||!(B in j))&&d(j,B,O[B]);else r({target:n,proto:!0,forced:y||P},O);return i&&!k||j[E]===R||d(j,E,R,{name:h}),g[n]=R,O}},7235:(e,n,t)=>{var r=t(857),o=t(2597),i=t(6061),a=t(3070).f;e.exports=function(e){var n=r.Symbol||(r.Symbol={});o(n,e)||a(n,e,{value:i.f(e)})}},9781:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},317:(e,n,t)=>{var r=t(7854),o=t(111),i=r.document,a=o(i)&&o(i.createElement);e.exports=function(e){return a?i.createElement(e):{}}},8324:e=>{e.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},8509:(e,n,t)=>{var r=t(317)("span").classList,o=r&&r.constructor&&r.constructor.prototype;e.exports=o===Object.prototype?void 0:o},8886:(e,n,t)=>{var r=t(8113).match(/firefox\/(\d+)/i);e.exports=!!r&&+r[1]},256:(e,n,t)=>{var r=t(8113);e.exports=/MSIE|Trident/.test(r)},5268:(e,n,t)=>{var r=t(4326),o=t(7854);e.exports="process"==r(o.process)},8113:(e,n,t)=>{var r=t(5005);e.exports=r("navigator","userAgent")||""},7392:(e,n,t)=>{var r,o,i=t(7854),a=t(8113),l=i.process,c=i.Deno,u=l&&l.versions||c&&c.version,s=u&&u.v8;s&&(o=(r=s.split("."))[0]>0&&r[0]<4?1:+(r[0]+r[1])),!o&&a&&(!(r=a.match(/Edge\/(\d+)/))||r[1]>=74)&&(r=a.match(/Chrome\/(\d+)/))&&(o=+r[1]),e.exports=o},8008:(e,n,t)=>{var r=t(8113).match(/AppleWebKit\/(\d+)\./);e.exports=!!r&&+r[1]},748:e=>{e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},2109:(e,n,t)=>{var r=t(7854),o=t(1236).f,i=t(8880),a=t(1320),l=t(3505),c=t(9920),u=t(4705);e.exports=function(e,n){var t,s,f,p,d,h=e.target,g=e.global,v=e.stat;if(t=g?r:v?r[h]||l(h,{}):(r[h]||{}).prototype)for(s in n){if(p=n[s],f=e.noTargetGet?(d=o(t,s))&&d.value:t[s],!u(g?s:h+(v?".":"#")+s,e.forced)&&void 0!==f){if(typeof p==typeof f)continue;c(p,f)}(e.sham||f&&f.sham)&&i(p,"sham",!0),a(t,s,p,e)}}},7293:e=>{e.exports=function(e){try{return!!e()}catch(e){return!0}}},7007:(e,n,t)=>{"use strict";t(4916);var r=t(1702),o=t(1320),i=t(2261),a=t(7293),l=t(5112),c=t(8880),u=l("species"),s=RegExp.prototype;e.exports=function(e,n,t,f){var p=l(e),d=!a((function(){var n={};return n[p]=function(){return 7},7!=""[e](n)})),h=d&&!a((function(){var n=!1,t=/a/;return"split"===e&&((t={}).constructor={},t.constructor[u]=function(){return t},t.flags="",t[p]=/./[p]),t.exec=function(){return n=!0,null},t[p](""),!n}));if(!d||!h||t){var g=r(/./[p]),v=n(p,""[e],(function(e,n,t,o,a){var l=r(e),c=n.exec;return c===i||c===s.exec?d&&!a?{done:!0,value:g(n,t,o)}:{done:!0,value:l(t,n,o)}:{done:!1}}));o(String.prototype,e,v[0]),o(s,p,v[1])}f&&c(s[p],"sham",!0)}},6677:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){return Object.isExtensible(Object.preventExtensions({}))}))},2104:e=>{var n=Function.prototype,t=n.apply,r=n.bind,o=n.call;e.exports="object"==typeof Reflect&&Reflect.apply||(r?o.bind(t):function(){return o.apply(t,arguments)})},9974:(e,n,t)=>{var r=t(1702),o=t(9662),i=r(r.bind);e.exports=function(e,n){return o(e),void 0===n?e:i?i(e,n):function(){return e.apply(n,arguments)}}},7065:(e,n,t)=>{"use strict";var r=t(7854),o=t(1702),i=t(9662),a=t(111),l=t(2597),c=t(206),u=r.Function,s=o([].concat),f=o([].join),p={},d=function(e,n,t){if(!l(p,n)){for(var r=[],o=0;o{var n=Function.prototype.call;e.exports=n.bind?n.bind(n):function(){return n.apply(n,arguments)}},6530:(e,n,t)=>{var r=t(9781),o=t(2597),i=Function.prototype,a=r&&Object.getOwnPropertyDescriptor,l=o(i,"name"),c=l&&"something"===function(){}.name,u=l&&(!r||r&&a(i,"name").configurable);e.exports={EXISTS:l,PROPER:c,CONFIGURABLE:u}},1702:e=>{var n=Function.prototype,t=n.bind,r=n.call,o=t&&t.bind(r);e.exports=t?function(e){return e&&o(r,e)}:function(e){return e&&function(){return r.apply(e,arguments)}}},5005:(e,n,t)=>{var r=t(7854),o=t(614),i=function(e){return o(e)?e:void 0};e.exports=function(e,n){return arguments.length<2?i(r[e]):r[e]&&r[e][n]}},1246:(e,n,t)=>{var r=t(648),o=t(8173),i=t(7497),a=t(5112)("iterator");e.exports=function(e){if(null!=e)return o(e,a)||o(e,"@@iterator")||i[r(e)]}},8554:(e,n,t)=>{var r=t(7854),o=t(6916),i=t(9662),a=t(9670),l=t(6330),c=t(1246),u=r.TypeError;e.exports=function(e,n){var t=arguments.length<2?c(e):n;if(i(t))return a(o(t,e));throw u(l(e)+" is not iterable")}},8173:(e,n,t)=>{var r=t(9662);e.exports=function(e,n){var t=e[n];return null==t?void 0:r(t)}},647:(e,n,t)=>{var r=t(1702),o=t(7908),i=Math.floor,a=r("".charAt),l=r("".replace),c=r("".slice),u=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,s=/\$([$&'`]|\d{1,2})/g;e.exports=function(e,n,t,r,f,p){var d=t+e.length,h=r.length,g=s;return void 0!==f&&(f=o(f),g=u),l(p,g,(function(o,l){var u;switch(a(l,0)){case"$":return"$";case"&":return e;case"`":return c(n,0,t);case"'":return c(n,d);case"<":u=f[c(l,1,-1)];break;default:var s=+l;if(0===s)return o;if(s>h){var p=i(s/10);return 0===p?o:p<=h?void 0===r[p-1]?a(l,1):r[p-1]+a(l,1):o}u=r[s-1]}return void 0===u?"":u}))}},7854:(e,n,t)=>{var r=function(e){return e&&e.Math==Math&&e};e.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof t.g&&t.g)||function(){return this}()||Function("return this")()},2597:(e,n,t)=>{var r=t(1702),o=t(7908),i=r({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,n){return i(o(e),n)}},3501:e=>{e.exports={}},490:(e,n,t)=>{var r=t(5005);e.exports=r("document","documentElement")},4664:(e,n,t)=>{var r=t(9781),o=t(7293),i=t(317);e.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},8361:(e,n,t)=>{var r=t(7854),o=t(1702),i=t(7293),a=t(4326),l=r.Object,c=o("".split);e.exports=i((function(){return!l("z").propertyIsEnumerable(0)}))?function(e){return"String"==a(e)?c(e,""):l(e)}:l},9587:(e,n,t)=>{var r=t(614),o=t(111),i=t(7674);e.exports=function(e,n,t){var a,l;return i&&r(a=n.constructor)&&a!==t&&o(l=a.prototype)&&l!==t.prototype&&i(e,l),e}},2788:(e,n,t)=>{var r=t(1702),o=t(614),i=t(5465),a=r(Function.toString);o(i.inspectSource)||(i.inspectSource=function(e){return a(e)}),e.exports=i.inspectSource},2423:(e,n,t)=>{var r=t(2109),o=t(1702),i=t(3501),a=t(111),l=t(2597),c=t(3070).f,u=t(8006),s=t(1156),f=t(2050),p=t(9711),d=t(6677),h=!1,g=p("meta"),v=0,A=function(e){c(e,g,{value:{objectID:"O"+v++,weakData:{}}})},b=e.exports={enable:function(){b.enable=function(){},h=!0;var e=u.f,n=o([].splice),t={};t[g]=1,e(t).length&&(u.f=function(t){for(var r=e(t),o=0,i=r.length;o{var r,o,i,a=t(8536),l=t(7854),c=t(1702),u=t(111),s=t(8880),f=t(2597),p=t(5465),d=t(6200),h=t(3501),g="Object already initialized",v=l.TypeError,A=l.WeakMap;if(a||p.state){var b=p.state||(p.state=new A),m=c(b.get),y=c(b.has),E=c(b.set);r=function(e,n){if(y(b,e))throw new v(g);return n.facade=e,E(b,e,n),n},o=function(e){return m(b,e)||{}},i=function(e){return y(b,e)}}else{var _=d("state");h[_]=!0,r=function(e,n){if(f(e,_))throw new v(g);return n.facade=e,s(e,_,n),n},o=function(e){return f(e,_)?e[_]:{}},i=function(e){return f(e,_)}}e.exports={set:r,get:o,has:i,enforce:function(e){return i(e)?o(e):r(e,{})},getterFor:function(e){return function(n){var t;if(!u(n)||(t=o(n)).type!==e)throw v("Incompatible receiver, "+e+" required");return t}}}},7659:(e,n,t)=>{var r=t(5112),o=t(7497),i=r("iterator"),a=Array.prototype;e.exports=function(e){return void 0!==e&&(o.Array===e||a[i]===e)}},3157:(e,n,t)=>{var r=t(4326);e.exports=Array.isArray||function(e){return"Array"==r(e)}},614:e=>{e.exports=function(e){return"function"==typeof e}},4411:(e,n,t)=>{var r=t(1702),o=t(7293),i=t(614),a=t(648),l=t(5005),c=t(2788),u=function(){},s=[],f=l("Reflect","construct"),p=/^\s*(?:class|function)\b/,d=r(p.exec),h=!p.exec(u),g=function(e){if(!i(e))return!1;try{return f(u,s,e),!0}catch(e){return!1}};e.exports=!f||o((function(){var e;return g(g.call)||!g(Object)||!g((function(){e=!0}))||e}))?function(e){if(!i(e))return!1;switch(a(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}return h||!!d(p,c(e))}:g},4705:(e,n,t)=>{var r=t(7293),o=t(614),i=/#|\.prototype\./,a=function(e,n){var t=c[l(e)];return t==s||t!=u&&(o(n)?r(n):!!n)},l=a.normalize=function(e){return String(e).replace(i,".").toLowerCase()},c=a.data={},u=a.NATIVE="N",s=a.POLYFILL="P";e.exports=a},111:(e,n,t)=>{var r=t(614);e.exports=function(e){return"object"==typeof e?null!==e:r(e)}},1913:e=>{e.exports=!1},7850:(e,n,t)=>{var r=t(111),o=t(4326),i=t(5112)("match");e.exports=function(e){var n;return r(e)&&(void 0!==(n=e[i])?!!n:"RegExp"==o(e))}},2190:(e,n,t)=>{var r=t(7854),o=t(5005),i=t(614),a=t(7976),l=t(3307),c=r.Object;e.exports=l?function(e){return"symbol"==typeof e}:function(e){var n=o("Symbol");return i(n)&&a(n.prototype,c(e))}},408:(e,n,t)=>{var r=t(7854),o=t(9974),i=t(6916),a=t(9670),l=t(6330),c=t(7659),u=t(6244),s=t(7976),f=t(8554),p=t(1246),d=t(9212),h=r.TypeError,g=function(e,n){this.stopped=e,this.result=n},v=g.prototype;e.exports=function(e,n,t){var r,A,b,m,y,E,_,C=t&&t.that,w=!(!t||!t.AS_ENTRIES),x=!(!t||!t.IS_ITERATOR),k=!(!t||!t.INTERRUPTED),S=o(n,C),O=function(e){return r&&d(r,"normal",e),new g(!0,e)},B=function(e){return w?(a(e),k?S(e[0],e[1],O):S(e[0],e[1])):k?S(e,O):S(e)};if(x)r=e;else{if(!(A=p(e)))throw h(l(e)+" is not iterable");if(c(A)){for(b=0,m=u(e);m>b;b++)if((y=B(e[b]))&&s(v,y))return y;return new g(!1)}r=f(e,A)}for(E=r.next;!(_=i(E,r)).done;){try{y=B(_.value)}catch(e){d(r,"throw",e)}if("object"==typeof y&&y&&s(v,y))return y}return new g(!1)}},9212:(e,n,t)=>{var r=t(6916),o=t(9670),i=t(8173);e.exports=function(e,n,t){var a,l;o(e);try{if(!(a=i(e,"return"))){if("throw"===n)throw t;return t}a=r(a,e)}catch(e){l=!0,a=e}if("throw"===n)throw t;if(l)throw a;return o(a),t}},3383:(e,n,t)=>{"use strict";var r,o,i,a=t(7293),l=t(614),c=t(30),u=t(9518),s=t(1320),f=t(5112),p=t(1913),d=f("iterator"),h=!1;[].keys&&("next"in(i=[].keys())?(o=u(u(i)))!==Object.prototype&&(r=o):h=!0),null==r||a((function(){var e={};return r[d].call(e)!==e}))?r={}:p&&(r=c(r)),l(r[d])||s(r,d,(function(){return this})),e.exports={IteratorPrototype:r,BUGGY_SAFARI_ITERATORS:h}},7497:e=>{e.exports={}},6244:(e,n,t)=>{var r=t(7466);e.exports=function(e){return r(e.length)}},133:(e,n,t)=>{var r=t(7392),o=t(7293);e.exports=!!Object.getOwnPropertySymbols&&!o((function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&r&&r<41}))},8536:(e,n,t)=>{var r=t(7854),o=t(614),i=t(2788),a=r.WeakMap;e.exports=o(a)&&/native code/.test(i(a))},3929:(e,n,t)=>{var r=t(7854),o=t(7850),i=r.TypeError;e.exports=function(e){if(o(e))throw i("The method doesn't accept regular expressions");return e}},1574:(e,n,t)=>{"use strict";var r=t(9781),o=t(1702),i=t(6916),a=t(7293),l=t(1956),c=t(5181),u=t(5296),s=t(7908),f=t(8361),p=Object.assign,d=Object.defineProperty,h=o([].concat);e.exports=!p||a((function(){if(r&&1!==p({b:1},p(d({},"a",{enumerable:!0,get:function(){d(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var e={},n={},t=Symbol(),o="abcdefghijklmnopqrst";return e[t]=7,o.split("").forEach((function(e){n[e]=e})),7!=p({},e)[t]||l(p({},n)).join("")!=o}))?function(e,n){for(var t=s(e),o=arguments.length,a=1,p=c.f,d=u.f;o>a;)for(var g,v=f(arguments[a++]),A=p?h(l(v),p(v)):l(v),b=A.length,m=0;b>m;)g=A[m++],r&&!i(d,v,g)||(t[g]=v[g]);return t}:p},30:(e,n,t)=>{var r,o=t(9670),i=t(6048),a=t(748),l=t(3501),c=t(490),u=t(317),s=t(6200),f=s("IE_PROTO"),p=function(){},d=function(e){return" - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allOfCffu

-
-
fun Collection<Cffu<*>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is completed when all the given Cffus complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given Cffus are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no Cffus are provided, returns a Cffu completed with the value null.

Same as CffuFactory.allOf, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun Array<out Cffu<*>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is completed when all the given Cffus complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given Cffus are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no Cffus are provided, returns a Cffu completed with the value null.

Same as CffuFactory.allOf, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allOfCffuCf")
fun Collection<CompletableFuture<*>>.allOfCffu(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is completed when all the given CompletableFutures complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given CompletableFutures are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no CompletableFutures are provided, returns a Cffu completed with the value null.

Same as CffuFactory.allOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html deleted file mode 100644 index 51e2e6b4..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allOfCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allOfCompletableFuture

-
-

Returns a new CompletableFuture that is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given CompletableFutures are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If no CompletableFutures are provided, returns a CompletableFuture completed with the value null.

Among the applications of this method is to await completion of a set of independent CompletableFutures before continuing a program, as in: CompletableFuture.allOf(c1, c2, c3).join();. Returns a new CompletableFuture that is completed when all the given CompletableFutures complete.

Same as CompletableFuture.allOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html deleted file mode 100644 index 596d8eaf..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allOfFastFailCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allOfFastFailCffu

-
-
fun Collection<Cffu<*>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is successful when all the given Cffus success, the results(Cffu<Void>) of the given Cffus are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value null.

Same as CffuFactory.allOfFastFail, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun Array<out Cffu<*>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is successful when all the given Cffus success, the results(Cffu<Void>) of the given Cffus are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value null.

Same as CffuFactory.allOfFastFail, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allOfFastFailCffuCf")
fun Collection<CompletableFuture<*>>.allOfFastFailCffu(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is successful when all the given CompletableFutures success, the results(Cffu<Void>) of the given CompletableFutures are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value null.

Same as CffuFactory.allOfFastFail, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html deleted file mode 100644 index 51030eaa..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allOfFastFailCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allOfFastFailCompletableFuture

-
-

Returns a new CompletableFuture that is successful when all the given CompletableFutures success, the results(CompletableFuture<Void>) of the given CompletableFutures are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value null.

Same as CompletableFutureUtils.allOfFastFail, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html deleted file mode 100644 index f1689081..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allResultsOfCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allResultsOfCffu

-
-
fun <T> Collection<Cffu<out T>>.allResultsOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu is completed when all the given Cffus complete. If any of the given Cffus complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value empty list.

Same as allOfCffu, but the returned Cffu contains the results of input Cffus. Same as CffuFactory.allResultsOf, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<out Cffu<out T>>.allResultsOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu is completed when all the given Cffus complete. If any of the given Cffus complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value empty list.

Same as allOfCffu, but the returned Cffu contains the results of input Cffus. Same as CffuFactory.allResultsOf, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allResultsOfCffuCf")
fun <T> Collection<CompletableFuture<out T>>.allResultsOfCffu(cffuFactory: CffuFactory): Cffu<List<T>>
fun <T> Array<out CompletableFuture<out T>>.allResultsOfCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given CompletableFutures, the new Cffu is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

Same as allOfCffu, but the returned Cffu contains the results of input CompletableFutures. Same as CffuFactory.allResultsOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-completable-future.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-completable-future.html deleted file mode 100644 index 2b42dbed..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allResultsOfCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allResultsOfCompletableFuture

-
-

Returns a new CompletableFuture with the results in the same order of all the given CompletableFutures, the returned new CompletableFuture is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value empty list.

Same as allOfCompletableFuture, but the returned CompletableFuture contains the results of input CompletableFutures. Same as CompletableFutureUtils.allResultsOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html deleted file mode 100644 index 9e649015..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allResultsOfFastFailCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allResultsOfFastFailCffu

-
-
fun <T> Collection<Cffu<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu success when all the given Cffus success. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

Same as allOfFastFailCffu, but the returned Cffu contains the results of input Cffus. Same as CffuFactory.allResultsOfFastFail, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<out Cffu<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu success when all the given Cffus success. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

Same as allOfFastFailCffu, but the returned Cffu contains the results of input Cffus. Same as CffuFactory.allResultsOfFastFail, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allResultsOfFastFailCffuCf")
fun <T> Collection<CompletableFuture<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given CompletableFutures, the new Cffu success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

Same as allOfFastFailCffu, but the returned Cffu contains the results of input Cffus. Same as CffuFactory.allResultsOfFastFail, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-completable-future.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-completable-future.html deleted file mode 100644 index 0d65db3f..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allResultsOfFastFailCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allResultsOfFastFailCompletableFuture

-
-

Returns a new CompletableFuture with the results in the same order of all the given CompletableFutures, the new CompletableFuture success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value empty list.

Same as allOfFastFailCompletableFuture, but the returned CompletableFuture contains the results of input CompletableFutures. Same as CompletableFutureUtils.allResultsOfFastFail, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html deleted file mode 100644 index 7dd2945c..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - anyOfCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

anyOfCffu

-
-
fun <T> Collection<Cffu<out T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

Same as CffuFactory.anyOf, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<out Cffu<out T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

Same as CffuFactory.anyOf, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "anyOfCffuCf")
fun <T> Collection<CompletableFuture<out T>>.anyOfCffu(cffuFactory: CffuFactory): Cffu<T>
fun <T> Array<out CompletableFuture<out T>>.anyOfCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is completed when any of the given CompletableFutures complete, with the same result.

Same as CffuFactory.anyOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html deleted file mode 100644 index 612a9a0b..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - anyOfCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

anyOfCompletableFuture

-
-

Returns a new CompletableFuture that is completed when any of the given CompletableFutures complete, with the same result. Otherwise, if it completed exceptionally, the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns an incomplete CompletableFuture.

Same as CompletableFutureUtils.anyOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html deleted file mode 100644 index 09aba51c..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - anyOfSuccessCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

anyOfSuccessCffu

-
-
fun <T> Collection<Cffu<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is successful when any of the given Cffus success, with the same result. Otherwise, all the given Cffus complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given Cffus as its cause. If no Cffus are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

Same as CffuFactory.anyOfSuccess, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<out Cffu<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is successful when any of the given Cffus success, with the same result. Otherwise, all the given Cffus complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given Cffus as its cause. If no Cffus are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

Same as CffuFactory.anyOfSuccess, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "anyOfSuccessCffuCf")
fun <T> Collection<CompletableFuture<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory): Cffu<T>
fun <T> Array<out CompletableFuture<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

Same as CffuFactory.anyOfSuccess, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html deleted file mode 100644 index 4cf7639d..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - anyOfSuccessCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

anyOfSuccessCompletableFuture

-
-

Returns a new CompletableFuture that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new CompletableFuture that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

Same as CompletableFutureUtils.anyOfSuccess, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/as-cffu.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/as-cffu.html deleted file mode 100644 index f342e82a..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/as-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - asCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

asCffu

-
-
fun <T> CompletionStage<T>.asCffu(cffuFactory: CffuFactory): Cffu<T>

Wrap an existed CompletableFuture/CompletionStage to Cffu.

Same as CffuFactory.asCffu, providing this method is convenient for method chaining.

See also


Wrap input CompletableFuture/CompletionStage collection elements to Cffu by CffuFactory.asCffu.

Same as CffuFactory.asCffuArray, providing this method is convenient for method chaining.

See also


fun <T> Array<out CompletionStage<T>>.asCffu(cffuFactory: CffuFactory): Array<Cffu<T>>

Wrap input CompletableFuture/CompletionStage array elements to Cffu by CffuFactory.asCffu.

Same as CffuFactory.asCffuArray, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html deleted file mode 100644 index 1ddc3ad6..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - cffuState - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

cffuState

-
-

Returns the computation state(CffuState), this method has java version compatibility logic, so you can invoke in old java 18-.

Return

the computation state

See also

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html deleted file mode 100644 index e09d03b9..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - cffuUnwrap - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

cffuUnwrap

-
-

Unwrap input Cffu collection elements by Cffu.cffuUnwrap.

Same as CffuFactory.cffuArrayUnwrap, providing this method is convenient for method chaining.

See also


Unwrap input Cffu array elements by Cffu.cffuUnwrap.

Same as CffuFactory.cffuArrayUnwrap, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/combine-fast-fail.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/combine-fast-fail.html deleted file mode 100644 index dc37ebe1..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/combine-fast-fail.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - combineFastFail - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

combineFastFail

-
-

Returns a new CompletableFuture that is successful when the given two CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is successful when the given two CompletableFutures success

See also

Throws

if any of the given CompletableFutures are {@code null}


Returns a new CompletableFuture that is successful when the given three CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is successful when the given three CompletableFutures success

See also

Throws

if any of the given CompletableFutures are {@code null}


Returns a new CompletableFuture that is successful when the given 4 CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is successful when the given 4 CompletableFutures success

See also

Throws

if any of the given CompletableFutures are {@code null}


Returns a new CompletableFuture that is successful when the given 5 CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is successful when the given 5 CompletableFutures success

See also

Throws

if any of the given CompletableFutures are {@code null}

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/combine.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/combine.html deleted file mode 100644 index 07815b86..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/combine.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - combine - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

combine

-
-

Returns a new CompletableFuture that is completed when the given two CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 2 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null


Returns a new CompletableFuture that is completed when the given three CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 3 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null


Returns a new CompletableFuture that is completed when the given 4 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 4 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null


Returns a new CompletableFuture that is completed when the given 5 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 5 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/complete-async.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/complete-async.html deleted file mode 100644 index e581eb64..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/complete-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - completeAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

completeAsync

-
-

Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the default executor.

Return

given CompletableFuture

Parameters

supplier

a function returning the value to be used to complete given CompletableFuture


Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the given executor.

Return

given CompletableFuture

Parameters

supplier

a function returning the value to be used to complete given CompletableFuture

executor

the executor to use for asynchronous execution

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/complete-on-timeout.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/complete-on-timeout.html deleted file mode 100644 index 372f8b8d..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/complete-on-timeout.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - completeOnTimeout - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

completeOnTimeout

-
-

Completes given CompletableFuture with the given value if not otherwise completed before the given timeout.

Return

given CompletableFuture

Parameters

value

the value to use upon timeout

timeout

how long to wait before completing normally with the given value, in units of unit

unit

a TimeUnit determining how to interpret the timeout parameter

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/component1.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/component1.html deleted file mode 100644 index 2724bfb4..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/component1.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - component1 - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

component1

-
-
operator fun <T1, T2> Tuple2<T1, T2>.component1(): T1
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component1(): T1
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component1(): T1
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component1(): T1
-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/component2.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/component2.html deleted file mode 100644 index 1e85ed4b..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/component2.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - component2 - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

component2

-
-
operator fun <T1, T2> Tuple2<T1, T2>.component2(): T2
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component2(): T2
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component2(): T2
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component2(): T2
-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/component3.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/component3.html deleted file mode 100644 index 81b689eb..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/component3.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - component3 - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

component3

-
-
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component3(): T3
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component3(): T3
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component3(): T3
-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/component4.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/component4.html deleted file mode 100644 index b3e289b2..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/component4.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - component4 - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

component4

-
-
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component4(): T4
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component4(): T4
-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/component5.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/component5.html deleted file mode 100644 index e190cf2c..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/component5.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - component5 - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

component5

-
-
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component5(): T5
-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/copy.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/copy.html deleted file mode 100644 index ee96d516..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/copy.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - copy - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

copy

-
-

Returns a new CompletableFuture that is completed normally with the same value as this CompletableFuture when it completes normally. If this CompletableFuture completes exceptionally, then the returned CompletableFuture completes exceptionally with a CompletionException with this exception as cause. The behavior is equivalent to thenApply(x -> x). This method may be useful as a form of "defensive copying", to prevent clients from completing, while still being able to arrange dependent actions.

Return

the new CompletableFuture

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/exception-now.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/exception-now.html deleted file mode 100644 index c8536f1c..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/exception-now.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - exceptionNow - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

exceptionNow

-
-

Returns the exception thrown by the task, without waiting.

This method is for cases where the caller knows that the task has already completed with an exception.

Return

the exception thrown by the task

See also

#resultNow()

Throws

if the task has not completed, the task completed normally, or the task was cancelled

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-async.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-async.html deleted file mode 100644 index 4153edf8..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - exceptionallyAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

exceptionallyAsync

-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using given stage's default asynchronous execution facility. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the value of the returned CompletionStage if given CompletionStage completed exceptionally


Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using the supplied Executor. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the value of the returned CompletionStage if given CompletionStage completed exceptionally

executor

the executor to use for asynchronous execution

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose-async.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose-async.html deleted file mode 100644 index 162df6f1..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - exceptionallyComposeAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

exceptionallyComposeAsync

-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using given stage's default asynchronous execution facility.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the returned CompletionStage if given CompletionStage completed exceptionally


Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using the supplied Executor.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the returned CompletionStage if given CompletionStage completed exceptionally

executor

the executor to use for asynchronous execution

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose.html deleted file mode 100644 index 7094bf18..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - exceptionallyCompose - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

exceptionallyCompose

-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the returned CompletionStage if given CompletionStage completed exceptionally

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/index.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/index.html deleted file mode 100644 index 2c7fc351..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/index.html +++ /dev/null @@ -1,613 +0,0 @@ - - - - - io.foldright.cffu.kotlin - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

Package-level declarations

-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
fun Array<out Cffu<*>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>
fun Collection<Cffu<*>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is completed when all the given Cffus complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given Cffus are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no Cffus are provided, returns a Cffu completed with the value null.

@JvmName(name = "allOfCffuCf")
fun Collection<CompletableFuture<*>>.allOfCffu(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is completed when all the given CompletableFutures complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given CompletableFutures are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no CompletableFutures are provided, returns a Cffu completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given CompletableFutures are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If no CompletableFutures are provided, returns a CompletableFuture completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun Array<out Cffu<*>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>
fun Collection<Cffu<*>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is successful when all the given Cffus success, the results(Cffu<Void>) of the given Cffus are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value null.

@JvmName(name = "allOfFastFailCffuCf")
fun Collection<CompletableFuture<*>>.allOfFastFailCffu(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is successful when all the given CompletableFutures success, the results(Cffu<Void>) of the given CompletableFutures are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is successful when all the given CompletableFutures success, the results(CompletableFuture<Void>) of the given CompletableFutures are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<out Cffu<out T>>.allResultsOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>
fun <T> Collection<Cffu<out T>>.allResultsOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu is completed when all the given Cffus complete. If any of the given Cffus complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value empty list.

fun <T> Array<out CompletableFuture<out T>>.allResultsOfCffu(cffuFactory: CffuFactory): Cffu<List<T>>
@JvmName(name = "allResultsOfCffuCf")
fun <T> Collection<CompletableFuture<out T>>.allResultsOfCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given CompletableFutures, the new Cffu is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture with the results in the same order of all the given CompletableFutures, the returned new CompletableFuture is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value empty list.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<out Cffu<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>
fun <T> Collection<Cffu<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu success when all the given Cffus success. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

@JvmName(name = "allResultsOfFastFailCffuCf")
fun <T> Collection<CompletableFuture<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given CompletableFutures, the new Cffu success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture with the results in the same order of all the given CompletableFutures, the new CompletableFuture success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value empty list.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<out Cffu<out T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>
fun <T> Collection<Cffu<out T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

fun <T> Array<out CompletableFuture<out T>>.anyOfCffu(cffuFactory: CffuFactory): Cffu<T>
@JvmName(name = "anyOfCffuCf")
fun <T> Collection<CompletableFuture<out T>>.anyOfCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is completed when any of the given CompletableFutures complete, with the same result.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed when any of the given CompletableFutures complete, with the same result. Otherwise, if it completed exceptionally, the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns an incomplete CompletableFuture.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<out Cffu<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>
fun <T> Collection<Cffu<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is successful when any of the given Cffus success, with the same result. Otherwise, all the given Cffus complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given Cffus as its cause. If no Cffus are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

fun <T> Array<out CompletableFuture<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory): Cffu<T>
@JvmName(name = "anyOfSuccessCffuCf")
fun <T> Collection<CompletableFuture<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new CompletableFuture that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> CompletionStage<T>.asCffu(cffuFactory: CffuFactory): Cffu<T>
fun <T> Array<out CompletionStage<T>>.asCffu(cffuFactory: CffuFactory): Array<Cffu<T>>

Wrap input CompletableFuture/CompletionStage array elements to Cffu by CffuFactory.asCffu.

Wrap input CompletableFuture/CompletionStage collection elements to Cffu by CffuFactory.asCffu.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the computation state(CffuState), this method has java version compatibility logic, so you can invoke in old java 18-.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Unwrap input Cffu array elements by Cffu.cffuUnwrap.

Unwrap input Cffu collection elements by Cffu.cffuUnwrap.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed when the given two CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is completed when the given three CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is completed when the given 4 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is completed when the given 5 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is successful when the given two CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is successful when the given three CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is successful when the given 4 CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is successful when the given 5 CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the default executor.

Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the given executor.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Completes given CompletableFuture with the given value if not otherwise completed before the given timeout.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2> Tuple2<T1, T2>.component1(): T1
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component1(): T1
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component1(): T1
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component1(): T1
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2> Tuple2<T1, T2>.component2(): T2
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component2(): T2
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component2(): T2
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component2(): T2
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component3(): T3
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component3(): T3
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component3(): T3
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component4(): T4
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component4(): T4
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component5(): T5
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed normally with the same value as this CompletableFuture when it completes normally. If this CompletableFuture completes exceptionally, then the returned CompletableFuture completes exceptionally with a CompletionException with this exception as cause. The behavior is equivalent to thenApply(x -> x). This method may be useful as a form of "defensive copying", to prevent clients from completing, while still being able to arrange dependent actions.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using given stage's default asynchronous execution facility. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using the supplied Executor. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using given stage's default asynchronous execution facility.

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using the supplied Executor.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the exception thrown by the task, without waiting.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> CompletableFuture<T>.join(timeout: Long, unit: TimeUnit): T

Waits if necessary for at most the given time for the computation to complete, and then retrieves its result value when complete, or throws an (unchecked) exception if completed exceptionally.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that is completed normally with the same value as given CompletableFuture when it completes normally, and cannot be independently completed or otherwise used in ways not defined by the methods of interface CompletionStage. If given CompletableFuture completes exceptionally, then the returned CompletionStage completes exceptionally with a CompletionException with given exception as cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new incomplete CompletableFuture of the type to be returned by a CompletionStage method.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Exceptionally completes this CompletableFuture with a TimeoutException if not otherwise completed before the given timeout.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the computed result, without waiting.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
-
-
-
-
-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/join.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/join.html deleted file mode 100644 index c12e585d..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/join.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - join - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

join

-
-
fun <T> CompletableFuture<T>.join(timeout: Long, unit: TimeUnit): T

Waits if necessary for at most the given time for the computation to complete, and then retrieves its result value when complete, or throws an (unchecked) exception if completed exceptionally.

NOTE: call this method

result = CompletableFutureUtils.join(cf, timeout, unit);

is same as:

result = cf.copy() // defensive copy to avoid writing this cf unexpectedly
.orTimeout(timeout, unit)
.join();
}

CAUTION: if the wait timed out, this method throws an (unchecked) CompletionException with the TimeoutException as its cause; NOT throws a (checked) TimeoutException like CompletableFuture.get.

Return

the result value

Parameters

timeout

the maximum time to wait

unit

the time unit of the timeout argument

See also

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/minimal-completion-stage.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/minimal-completion-stage.html deleted file mode 100644 index 8503ec96..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/minimal-completion-stage.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - minimalCompletionStage - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

minimalCompletionStage

-
-

Returns a new CompletionStage that is completed normally with the same value as given CompletableFuture when it completes normally, and cannot be independently completed or otherwise used in ways not defined by the methods of interface CompletionStage. If given CompletableFuture completes exceptionally, then the returned CompletionStage completes exceptionally with a CompletionException with given exception as cause.

CAUTION: if run on old Java 8, just return a normal CompletableFuture which is NOT with a minimal CompletionStage.

Return

the new CompletionStage

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/new-incomplete-future.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/new-incomplete-future.html deleted file mode 100644 index face1dd4..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/new-incomplete-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - newIncompleteFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

newIncompleteFuture

-
-

Returns a new incomplete CompletableFuture of the type to be returned by a CompletionStage method.

Return

a new CompletableFuture

Parameters

the type of the value
-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/or-timeout.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/or-timeout.html deleted file mode 100644 index 2bd585de..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/or-timeout.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - orTimeout - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

orTimeout

-
-

Exceptionally completes this CompletableFuture with a TimeoutException if not otherwise completed before the given timeout.

Return

this CompletableFuture

Parameters

timeout

how long to wait before completing exceptionally with a TimeoutException, in units of unit

unit

a TimeUnit determining how to interpret the timeout parameter

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/result-now.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/result-now.html deleted file mode 100644 index 3b9d4d47..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/result-now.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - resultNow - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

resultNow

-
-

Returns the computed result, without waiting.

This method is for cases where the caller knows that the task has already completed successfully, for example when filtering a stream of Future objects for the successful tasks and using a mapping operation to obtain a stream of results.

results = futures.stream()
.filter(f -> f.state() == Future.State.SUCCESS)
.map(Future::resultNow)
.toList();
}
-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html b/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html deleted file mode 100644 index 0f25237b..00000000 --- a/dokka/0.9.9/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - toCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

toCompletableFuture

-
-

Convert Cffu collection elements to CompletableFuture by Cffu.toCompletableFuture.

Same as CffuFactory.anyOf, providing this method is convenient for method chaining.

See also


Convert Cffu array elements to CompletableFuture by Cffu.toCompletableFuture.

Same as CffuFactory.anyOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/0.9.9/cffu-kotlin/package-list b/dokka/0.9.9/cffu-kotlin/package-list deleted file mode 100644 index 967557a5..00000000 --- a/dokka/0.9.9/cffu-kotlin/package-list +++ /dev/null @@ -1,86 +0,0 @@ -$dokka.format:html-v1 -$dokka.linkExtension:html -$dokka.location:io.foldright.cffu.kotlin////PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/index.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.Array[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCompletableFuture/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allOfCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.Array[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCompletableFuture/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCompletableFuture/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCompletableFuture/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCompletableFuture/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCompletableFuture/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//asCffu/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/as-cffu.html -$dokka.location:io.foldright.cffu.kotlin//asCffu/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/as-cffu.html -$dokka.location:io.foldright.cffu.kotlin//asCffu/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/as-cffu.html -$dokka.location:io.foldright.cffu.kotlin//cffuState/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html -$dokka.location:io.foldright.cffu.kotlin//cffuUnwrap/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html -$dokka.location:io.foldright.cffu.kotlin//cffuUnwrap/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html -$dokka.location:io.foldright.cffu.kotlin//combine/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/combine.html -$dokka.location:io.foldright.cffu.kotlin//combine/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/combine.html -$dokka.location:io.foldright.cffu.kotlin//combine/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/combine.html -$dokka.location:io.foldright.cffu.kotlin//combine/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/combine.html -$dokka.location:io.foldright.cffu.kotlin//combineFastFail/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/combine-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//combineFastFail/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/combine-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//combineFastFail/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/combine-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//combineFastFail/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/combine-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//completeAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Supplier[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/complete-async.html -$dokka.location:io.foldright.cffu.kotlin//completeAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Supplier[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/complete-async.html -$dokka.location:io.foldright.cffu.kotlin//completeOnTimeout/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#TypeParam(bounds=[kotlin.Any?])#kotlin.Long#java.util.concurrent.TimeUnit/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/complete-on-timeout.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple2[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple3[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple2[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple3[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component3/io.foldright.cffu.tuple.Tuple3[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component3.html -$dokka.location:io.foldright.cffu.kotlin//component3/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component3.html -$dokka.location:io.foldright.cffu.kotlin//component3/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component3.html -$dokka.location:io.foldright.cffu.kotlin//component4/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component4.html -$dokka.location:io.foldright.cffu.kotlin//component4/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component4.html -$dokka.location:io.foldright.cffu.kotlin//component5/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component5.html -$dokka.location:io.foldright.cffu.kotlin//copy/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/copy.html -$dokka.location:io.foldright.cffu.kotlin//exceptionNow/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exception-now.html -$dokka.location:io.foldright.cffu.kotlin//exceptionallyAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[kotlin.Throwable,TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-async.html -$dokka.location:io.foldright.cffu.kotlin//exceptionallyAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[kotlin.Throwable,TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-async.html -$dokka.location:io.foldright.cffu.kotlin//exceptionallyCompose/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[kotlin.Throwable,java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose.html -$dokka.location:io.foldright.cffu.kotlin//exceptionallyComposeAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[kotlin.Throwable,java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose-async.html -$dokka.location:io.foldright.cffu.kotlin//exceptionallyComposeAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[kotlin.Throwable,java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose-async.html -$dokka.location:io.foldright.cffu.kotlin//join/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#kotlin.Long#java.util.concurrent.TimeUnit/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/join.html -$dokka.location:io.foldright.cffu.kotlin//minimalCompletionStage/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/minimal-completion-stage.html -$dokka.location:io.foldright.cffu.kotlin//newIncompleteFuture/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/new-incomplete-future.html -$dokka.location:io.foldright.cffu.kotlin//orTimeout/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#kotlin.Long#java.util.concurrent.TimeUnit/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/or-timeout.html -$dokka.location:io.foldright.cffu.kotlin//resultNow/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/result-now.html -$dokka.location:io.foldright.cffu.kotlin//toCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//toCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html -io.foldright.cffu.kotlin - diff --git a/dokka/0.9.9/images/anchor-copy-button.svg b/dokka/0.9.9/images/anchor-copy-button.svg deleted file mode 100644 index 19c1fa3f..00000000 --- a/dokka/0.9.9/images/anchor-copy-button.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/dokka/0.9.9/images/arrow_down.svg b/dokka/0.9.9/images/arrow_down.svg deleted file mode 100644 index 639aaf12..00000000 --- a/dokka/0.9.9/images/arrow_down.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/dokka/0.9.9/images/burger.svg b/dokka/0.9.9/images/burger.svg deleted file mode 100644 index fcca732b..00000000 --- a/dokka/0.9.9/images/burger.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/dokka/0.9.9/images/copy-icon.svg b/dokka/0.9.9/images/copy-icon.svg deleted file mode 100644 index 2cb02ec6..00000000 --- a/dokka/0.9.9/images/copy-icon.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/dokka/0.9.9/images/copy-successful-icon.svg b/dokka/0.9.9/images/copy-successful-icon.svg deleted file mode 100644 index c4b95383..00000000 --- a/dokka/0.9.9/images/copy-successful-icon.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/dokka/0.9.9/images/footer-go-to-link.svg b/dokka/0.9.9/images/footer-go-to-link.svg deleted file mode 100644 index a87add7a..00000000 --- a/dokka/0.9.9/images/footer-go-to-link.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/dokka/0.9.9/images/go-to-top-icon.svg b/dokka/0.9.9/images/go-to-top-icon.svg deleted file mode 100644 index abc3d1ce..00000000 --- a/dokka/0.9.9/images/go-to-top-icon.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/dokka/0.9.9/images/homepage.svg b/dokka/0.9.9/images/homepage.svg deleted file mode 100644 index e3c83b1c..00000000 --- a/dokka/0.9.9/images/homepage.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/dokka/0.9.9/images/logo-icon.svg b/dokka/0.9.9/images/logo-icon.svg deleted file mode 100644 index e42f9570..00000000 --- a/dokka/0.9.9/images/logo-icon.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - diff --git a/dokka/0.9.9/images/nav-icons/abstract-class-kotlin.svg b/dokka/0.9.9/images/nav-icons/abstract-class-kotlin.svg deleted file mode 100644 index 19d6148c..00000000 --- a/dokka/0.9.9/images/nav-icons/abstract-class-kotlin.svg +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dokka/0.9.9/images/nav-icons/abstract-class.svg b/dokka/0.9.9/images/nav-icons/abstract-class.svg deleted file mode 100644 index 60182030..00000000 --- a/dokka/0.9.9/images/nav-icons/abstract-class.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/dokka/0.9.9/images/nav-icons/annotation-kotlin.svg b/dokka/0.9.9/images/nav-icons/annotation-kotlin.svg deleted file mode 100644 index b90f508c..00000000 --- a/dokka/0.9.9/images/nav-icons/annotation-kotlin.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/0.9.9/images/nav-icons/annotation.svg b/dokka/0.9.9/images/nav-icons/annotation.svg deleted file mode 100644 index b80c54b4..00000000 --- a/dokka/0.9.9/images/nav-icons/annotation.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/0.9.9/images/nav-icons/class-kotlin.svg b/dokka/0.9.9/images/nav-icons/class-kotlin.svg deleted file mode 100644 index 797a2423..00000000 --- a/dokka/0.9.9/images/nav-icons/class-kotlin.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/0.9.9/images/nav-icons/class.svg b/dokka/0.9.9/images/nav-icons/class.svg deleted file mode 100644 index 3f1ad167..00000000 --- a/dokka/0.9.9/images/nav-icons/class.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/0.9.9/images/nav-icons/enum-kotlin.svg b/dokka/0.9.9/images/nav-icons/enum-kotlin.svg deleted file mode 100644 index 775a7cc9..00000000 --- a/dokka/0.9.9/images/nav-icons/enum-kotlin.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/0.9.9/images/nav-icons/enum.svg b/dokka/0.9.9/images/nav-icons/enum.svg deleted file mode 100644 index fa7f2476..00000000 --- a/dokka/0.9.9/images/nav-icons/enum.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/0.9.9/images/nav-icons/exception-class.svg b/dokka/0.9.9/images/nav-icons/exception-class.svg deleted file mode 100644 index c0b2bdeb..00000000 --- a/dokka/0.9.9/images/nav-icons/exception-class.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/0.9.9/images/nav-icons/field-value.svg b/dokka/0.9.9/images/nav-icons/field-value.svg deleted file mode 100644 index 2771ee56..00000000 --- a/dokka/0.9.9/images/nav-icons/field-value.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - diff --git a/dokka/0.9.9/images/nav-icons/field-variable.svg b/dokka/0.9.9/images/nav-icons/field-variable.svg deleted file mode 100644 index e2d2bbd0..00000000 --- a/dokka/0.9.9/images/nav-icons/field-variable.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - diff --git a/dokka/0.9.9/images/nav-icons/function.svg b/dokka/0.9.9/images/nav-icons/function.svg deleted file mode 100644 index f0da64a0..00000000 --- a/dokka/0.9.9/images/nav-icons/function.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/0.9.9/images/nav-icons/interface-kotlin.svg b/dokka/0.9.9/images/nav-icons/interface-kotlin.svg deleted file mode 100644 index 5e163260..00000000 --- a/dokka/0.9.9/images/nav-icons/interface-kotlin.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/0.9.9/images/nav-icons/interface.svg b/dokka/0.9.9/images/nav-icons/interface.svg deleted file mode 100644 index 32063ba2..00000000 --- a/dokka/0.9.9/images/nav-icons/interface.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/0.9.9/images/nav-icons/object.svg b/dokka/0.9.9/images/nav-icons/object.svg deleted file mode 100644 index 31f0ee3e..00000000 --- a/dokka/0.9.9/images/nav-icons/object.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/0.9.9/images/nav-icons/typealias-kotlin.svg b/dokka/0.9.9/images/nav-icons/typealias-kotlin.svg deleted file mode 100644 index f4bb238b..00000000 --- a/dokka/0.9.9/images/nav-icons/typealias-kotlin.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/0.9.9/images/theme-toggle.svg b/dokka/0.9.9/images/theme-toggle.svg deleted file mode 100644 index df86202b..00000000 --- a/dokka/0.9.9/images/theme-toggle.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/dokka/0.9.9/index.html b/dokka/0.9.9/index.html index 4c656486..9ddfe7f5 100644 --- a/dokka/0.9.9/index.html +++ b/dokka/0.9.9/index.html @@ -1,99 +1,8 @@ - - - - - cffu-kotlin - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

cffu-kotlin

-
-

Packages

-
-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
- -
-
-
- + + + + + diff --git a/dokka/0.9.9/navigation.html b/dokka/0.9.9/navigation.html deleted file mode 100644 index 62200004..00000000 --- a/dokka/0.9.9/navigation.html +++ /dev/null @@ -1,112 +0,0 @@ - - diff --git a/dokka/0.9.9/scripts/clipboard.js b/dokka/0.9.9/scripts/clipboard.js deleted file mode 100644 index 7a4f33c5..00000000 --- a/dokka/0.9.9/scripts/clipboard.js +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. - */ - -window.addEventListener('load', () => { - document.querySelectorAll('span.copy-icon').forEach(element => { - element.addEventListener('click', (el) => copyElementsContentToClipboard(element)); - }) - - document.querySelectorAll('span.anchor-icon').forEach(element => { - element.addEventListener('click', (el) => { - if(element.hasAttribute('pointing-to')){ - const location = hrefWithoutCurrentlyUsedAnchor() + '#' + element.getAttribute('pointing-to') - copyTextToClipboard(element, location) - } - }); - }) -}) - -const copyElementsContentToClipboard = (element) => { - const selection = window.getSelection(); - const range = document.createRange(); - range.selectNodeContents(element.parentNode.parentNode); - selection.removeAllRanges(); - selection.addRange(range); - - copyAndShowPopup(element, () => selection.removeAllRanges()) -} - -const copyTextToClipboard = (element, text) => { - var textarea = document.createElement("textarea"); - textarea.textContent = text; - textarea.style.position = "fixed"; - document.body.appendChild(textarea); - textarea.select(); - - copyAndShowPopup(element, () => document.body.removeChild(textarea)) -} - -const copyAndShowPopup = (element, after) => { - try { - document.execCommand('copy'); - element.nextElementSibling.classList.add('active-popup'); - setTimeout(() => { - element.nextElementSibling.classList.remove('active-popup'); - }, 1200); - } catch (e) { - console.error('Failed to write to clipboard:', e) - } - finally { - if(after) after() - } -} - -const hrefWithoutCurrentlyUsedAnchor = () => window.location.href.split('#')[0] - diff --git a/dokka/0.9.9/scripts/main.js b/dokka/0.9.9/scripts/main.js deleted file mode 100644 index ba6c3473..00000000 --- a/dokka/0.9.9/scripts/main.js +++ /dev/null @@ -1,44 +0,0 @@ -(()=>{var e={8527:e=>{e.exports=''},5570:e=>{e.exports=''},107:e=>{e.exports=''},7224:e=>{e.exports=''},538:e=>{e.exports=''},1924:(e,n,t)=>{"use strict";var r=t(210),o=t(5559),i=o(r("String.prototype.indexOf"));e.exports=function(e,n){var t=r(e,!!n);return"function"==typeof t&&i(e,".prototype.")>-1?o(t):t}},5559:(e,n,t)=>{"use strict";var r=t(8612),o=t(210),i=o("%Function.prototype.apply%"),a=o("%Function.prototype.call%"),l=o("%Reflect.apply%",!0)||r.call(a,i),c=o("%Object.getOwnPropertyDescriptor%",!0),u=o("%Object.defineProperty%",!0),s=o("%Math.max%");if(u)try{u({},"a",{value:1})}catch(e){u=null}e.exports=function(e){var n=l(r,a,arguments);if(c&&u){var t=c(n,"length");t.configurable&&u(n,"length",{value:1+s(0,e.length-(arguments.length-1))})}return n};var f=function(){return l(r,i,arguments)};u?u(e.exports,"apply",{value:f}):e.exports.apply=f},4184:(e,n)=>{var t; -/*! - Copyright (c) 2018 Jed Watson. - Licensed under the MIT License (MIT), see - http://jedwatson.github.io/classnames -*/!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],n=0;n{"use strict";e.exports=function(e,n){var t=this,r=t.constructor;return t.options=Object.assign({storeInstancesGlobally:!0},n||{}),t.callbacks={},t.directMap={},t.sequenceLevels={},t.resetTimer=null,t.ignoreNextKeyup=!1,t.ignoreNextKeypress=!1,t.nextExpectedAction=!1,t.element=e,t.addEvents(),t.options.storeInstancesGlobally&&r.instances.push(t),t},e.exports.prototype.bind=t(2207),e.exports.prototype.bindMultiple=t(3396),e.exports.prototype.unbind=t(9208),e.exports.prototype.trigger=t(9855),e.exports.prototype.reset=t(6214),e.exports.prototype.stopCallback=t(3450),e.exports.prototype.handleKey=t(3067),e.exports.prototype.addEvents=t(718),e.exports.prototype.bindSingle=t(8763),e.exports.prototype.getKeyInfo=t(5825),e.exports.prototype.pickBestAction=t(8608),e.exports.prototype.getReverseMap=t(3956),e.exports.prototype.getMatches=t(3373),e.exports.prototype.resetSequences=t(3346),e.exports.prototype.fireCallback=t(2684),e.exports.prototype.bindSequence=t(7103),e.exports.prototype.resetSequenceTimer=t(7309),e.exports.prototype.detach=t(7554),e.exports.instances=[],e.exports.reset=t(1822),e.exports.REVERSE_MAP=null},718:(e,n,t)=>{"use strict";e.exports=function(){var e=this,n=t(4323),r=e.element;e.eventHandler=t(9646).bind(e),n(r,"keypress",e.eventHandler),n(r,"keydown",e.eventHandler),n(r,"keyup",e.eventHandler)}},2207:e=>{"use strict";e.exports=function(e,n,t){return e=e instanceof Array?e:[e],this.bindMultiple(e,n,t),this}},3396:e=>{"use strict";e.exports=function(e,n,t){for(var r=0;r{"use strict";e.exports=function(e,n,r,o){var i=this;function a(n){return function(){i.nextExpectedAction=n,++i.sequenceLevels[e],i.resetSequenceTimer()}}function l(n){var a;i.fireCallback(r,n,e),"keyup"!==o&&(a=t(6770),i.ignoreNextKeyup=a(n)),setTimeout((function(){i.resetSequences()}),10)}i.sequenceLevels[e]=0;for(var c=0;c{"use strict";e.exports=function(e,n,t,r,o){var i=this;i.directMap[e+":"+t]=n;var a,l=(e=e.replace(/\s+/g," ")).split(" ");l.length>1?i.bindSequence(e,l,n,t):(a=i.getKeyInfo(e,t),i.callbacks[a.key]=i.callbacks[a.key]||[],i.getMatches(a.key,a.modifiers,{type:a.action},r,e,o),i.callbacks[a.key][r?"unshift":"push"]({callback:n,modifiers:a.modifiers,action:a.action,seq:r,level:o,combo:e}))}},7554:(e,n,t)=>{var r=t(4323).off;e.exports=function(){var e=this,n=e.element;r(n,"keypress",e.eventHandler),r(n,"keydown",e.eventHandler),r(n,"keyup",e.eventHandler)}},4323:e=>{function n(e,n,t,r){return!e.addEventListener&&(n="on"+n),(e.addEventListener||e.attachEvent).call(e,n,t,r),t}e.exports=n,e.exports.on=n,e.exports.off=function(e,n,t,r){return!e.removeEventListener&&(n="on"+n),(e.removeEventListener||e.detachEvent).call(e,n,t,r),t}},2684:(e,n,t)=>{"use strict";e.exports=function(e,n,r,o){this.stopCallback(n,n.target||n.srcElement,r,o)||!1===e(n,r)&&(t(1350)(n),t(6103)(n))}},5825:(e,n,t)=>{"use strict";e.exports=function(e,n){var r,o,i,a,l,c,u=[];for(r=t(4520)(e),a=t(7549),l=t(5355),c=t(8581),i=0;i{"use strict";e.exports=function(e,n,r,o,i,a){var l,c,u,s,f=this,p=[],d=r.type;"keypress"!==d||r.code&&"Arrow"===r.code.slice(0,5)||(f.callbacks["any-character"]||[]).forEach((function(e){p.push(e)}));if(!f.callbacks[e])return p;for(u=t(8581),"keyup"===d&&u(e)&&(n=[e]),l=0;l{"use strict";e.exports=function(){var e,n=this.constructor;if(!n.REVERSE_MAP)for(var r in n.REVERSE_MAP={},e=t(4766))r>95&&r<112||e.hasOwnProperty(r)&&(n.REVERSE_MAP[e[r]]=r);return n.REVERSE_MAP}},3067:(e,n,t)=>{"use strict";e.exports=function(e,n,r){var o,i,a,l,c=this,u={},s=0,f=!1;for(o=c.getMatches(e,n,r),i=0;i{"use strict";e.exports=function(e){var n,r=this;"number"!=typeof e.which&&(e.which=e.keyCode);var o=t(6770)(e);void 0!==o&&("keyup"!==e.type||r.ignoreNextKeyup!==o?(n=t(4610),r.handleKey(o,n(e),e)):r.ignoreNextKeyup=!1)}},5532:e=>{"use strict";e.exports=function(e,n){return e.sort().join(",")===n.sort().join(",")}},8608:e=>{"use strict";e.exports=function(e,n,t){return t||(t=this.getReverseMap()[e]?"keydown":"keypress"),"keypress"===t&&n.length&&(t="keydown"),t}},6214:e=>{"use strict";e.exports=function(){return this.callbacks={},this.directMap={},this}},7309:e=>{"use strict";e.exports=function(){var e=this;clearTimeout(e.resetTimer),e.resetTimer=setTimeout((function(){e.resetSequences()}),1e3)}},3346:e=>{"use strict";e.exports=function(e){var n=this;e=e||{};var t,r=!1;for(t in n.sequenceLevels)e[t]?r=!0:n.sequenceLevels[t]=0;r||(n.nextExpectedAction=!1)}},3450:e=>{"use strict";e.exports=function(e,n){if((" "+n.className+" ").indexOf(" combokeys ")>-1)return!1;var t=n.tagName.toLowerCase();return"input"===t||"select"===t||"textarea"===t||n.isContentEditable}},9855:e=>{"use strict";e.exports=function(e,n){return this.directMap[e+":"+n]&&this.directMap[e+":"+n]({},e),this}},9208:e=>{"use strict";e.exports=function(e,n){return this.bind(e,(function(){}),n)}},1822:e=>{"use strict";e.exports=function(){this.instances.forEach((function(e){e.reset()}))}},6770:(e,n,t)=>{"use strict";e.exports=function(e){var n,r;if(n=t(4766),r=t(5295),"keypress"===e.type){var o=String.fromCharCode(e.which);return e.shiftKey||(o=o.toLowerCase()),o}return void 0!==n[e.which]?n[e.which]:void 0!==r[e.which]?r[e.which]:String.fromCharCode(e.which).toLowerCase()}},4610:e=>{"use strict";e.exports=function(e){var n=[];return e.shiftKey&&n.push("shift"),e.altKey&&n.push("alt"),e.ctrlKey&&n.push("ctrl"),e.metaKey&&n.push("meta"),n}},8581:e=>{"use strict";e.exports=function(e){return"shift"===e||"ctrl"===e||"alt"===e||"meta"===e}},4520:e=>{"use strict";e.exports=function(e){return"+"===e?["+"]:e.split("+")}},1350:e=>{"use strict";e.exports=function(e){e.preventDefault?e.preventDefault():e.returnValue=!1}},5355:e=>{"use strict";e.exports={"~":"`","!":"1","@":"2","#":"3",$:"4","%":"5","^":"6","&":"7","*":"8","(":"9",")":"0",_:"-","+":"=",":":";",'"':"'","<":",",">":".","?":"/","|":"\\"}},7549:e=>{"use strict";e.exports={option:"alt",command:"meta",return:"enter",escape:"esc",mod:/Mac|iPod|iPhone|iPad/.test(navigator.platform)?"meta":"ctrl"}},5295:e=>{"use strict";e.exports={106:"*",107:"plus",109:"minus",110:".",111:"/",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"}},4766:e=>{"use strict";e.exports={8:"backspace",9:"tab",13:"enter",16:"shift",17:"ctrl",18:"alt",20:"capslock",27:"esc",32:"space",33:"pageup",34:"pagedown",35:"end",36:"home",37:"left",38:"up",39:"right",40:"down",45:"ins",46:"del",91:"meta",93:"meta",173:"minus",187:"plus",189:"minus",224:"meta"};for(var n=1;n<20;++n)e.exports[111+n]="f"+n;for(n=0;n<=9;++n)e.exports[n+96]=n},6103:e=>{"use strict";e.exports=function(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0}},3362:()=>{var e;!function(){var e=Math.PI,n=2*e,t=e/180,r=document.createElement("div");document.head.appendChild(r);var o=self.ConicGradient=function(e){o.all.push(this),e=e||{},this.canvas=document.createElement("canvas"),this.context=this.canvas.getContext("2d"),this.repeating=!!e.repeating,this.size=e.size||Math.max(innerWidth,innerHeight),this.canvas.width=this.canvas.height=this.size;var n=e.stops;this.stops=(n||"").split(/\s*,(?![^(]*\))\s*/),this.from=0;for(var t=0;t0){var i=this.stops[0].clone();i.pos=0,this.stops.unshift(i)}if(void 0===this.stops[this.stops.length-1].pos)this.stops[this.stops.length-1].pos=1;else if(!this.repeating&&this.stops[this.stops.length-1].pos<1){var a=this.stops[this.stops.length-1].clone();a.pos=1,this.stops.push(a)}if(this.stops.forEach((function(e,n){if(void 0===e.pos){for(var t=n+1;this[t];t++)if(void 0!==this[t].pos){e.pos=this[n-1].pos+(this[t].pos-this[n-1].pos)/(t-n+1);break}}else n>0&&(e.pos=Math.max(e.pos,this[n-1].pos))}),this.stops),this.repeating){var l=(n=this.stops.slice())[n.length-1].pos-n[0].pos;for(t=0;this.stops[this.stops.length-1].pos<1&&t<1e4;t++)for(var c=0;c'},get png(){return this.canvas.toDataURL()},get r(){return Math.sqrt(2)*this.size/2},paint:function(){var e,n,r,o=this.context,i=this.r,a=this.size/2,l=0,c=this.stops[l];o.translate(this.size/2,this.size/2),o.rotate(-90*t),o.rotate(this.from*t),o.translate(-this.size/2,-this.size/2);for(var u=0;u<360;){if(u/360+1e-5>=c.pos){do{e=c,l++,c=this.stops[l]}while(c&&c!=e&&c.pos===e.pos);if(!c)break;var s=e.color+""==c.color+""&&e!=c;n=e.color.map((function(e,n){return c.color[n]-e}))}r=(u/360-e.pos)/(c.pos-e.pos);var f=s?c.color:n.map((function(n,t){var o=n*r+e.color[t];return t<3?255&o:o}));if(o.fillStyle="rgba("+f.join(",")+")",o.beginPath(),o.moveTo(a,a),s)var p=360*(c.pos-e.pos);else p=.5;var d=u*t,h=(d=Math.min(360*t,d))+p*t;h=Math.min(360*t,h+.02),o.arc(a,a,i,d,h),o.closePath(),o.fill(),u+=p}}},o.ColorStop=function(e,t){if(this.gradient=e,t){var r=t.match(/^(.+?)(?:\s+([\d.]+)(%|deg|turn|grad|rad)?)?(?:\s+([\d.]+)(%|deg|turn|grad|rad)?)?\s*$/);if(this.color=o.ColorStop.colorToRGBA(r[1]),r[2]){var i=r[3];"%"==i||"0"===r[2]&&!i?this.pos=r[2]/100:"turn"==i?this.pos=+r[2]:"deg"==i?this.pos=r[2]/360:"grad"==i?this.pos=r[2]/400:"rad"==i&&(this.pos=r[2]/n)}r[4]&&(this.next=new o.ColorStop(e,r[1]+" "+r[4]+r[5]))}},o.ColorStop.prototype={clone:function(){var e=new o.ColorStop(this.gradient);return e.color=this.color,e.pos=this.pos,e},toString:function(){return"rgba("+this.color.join(", ")+") "+100*this.pos+"%"}},o.ColorStop.colorToRGBA=function(e){if(!Array.isArray(e)&&-1==e.indexOf("from")){r.style.color=e;var n=getComputedStyle(r).color.match(/rgba?\(([\d.]+), ([\d.]+), ([\d.]+)(?:, ([\d.]+))?\)/);return n&&(n.shift(),(n=n.map((function(e){return+e})))[3]=isNaN(n[3])?1:n[3]),n||[0,0,0,0]}return e}}(),self.StyleFix&&((e=document.createElement("p")).style.backgroundImage="conic-gradient(white, black)",e.style.backgroundImage=PrefixFree.prefix+"conic-gradient(white, black)",e.style.backgroundImage||StyleFix.register((function(e,n){return e.indexOf("conic-gradient")>-1&&(e=e.replace(/(?:repeating-)?conic-gradient\(\s*((?:\([^()]+\)|[^;()}])+?)\)/g,(function(e,n){return new ConicGradient({stops:n,repeating:e.indexOf("repeating-")>-1})}))),e})))},9662:(e,n,t)=>{var r=t(7854),o=t(614),i=t(6330),a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not a function")}},9483:(e,n,t)=>{var r=t(7854),o=t(4411),i=t(6330),a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not a constructor")}},6077:(e,n,t)=>{var r=t(7854),o=t(614),i=r.String,a=r.TypeError;e.exports=function(e){if("object"==typeof e||o(e))return e;throw a("Can't set "+i(e)+" as a prototype")}},1223:(e,n,t)=>{var r=t(5112),o=t(30),i=t(3070),a=r("unscopables"),l=Array.prototype;null==l[a]&&i.f(l,a,{configurable:!0,value:o(null)}),e.exports=function(e){l[a][e]=!0}},1530:(e,n,t)=>{"use strict";var r=t(8710).charAt;e.exports=function(e,n,t){return n+(t?r(e,n).length:1)}},5787:(e,n,t)=>{var r=t(7854),o=t(7976),i=r.TypeError;e.exports=function(e,n){if(o(n,e))return e;throw i("Incorrect invocation")}},9670:(e,n,t)=>{var r=t(7854),o=t(111),i=r.String,a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not an object")}},7556:(e,n,t)=>{var r=t(7293);e.exports=r((function(){if("function"==typeof ArrayBuffer){var e=new ArrayBuffer(8);Object.isExtensible(e)&&Object.defineProperty(e,"a",{value:8})}}))},8533:(e,n,t)=>{"use strict";var r=t(2092).forEach,o=t(9341)("forEach");e.exports=o?[].forEach:function(e){return r(this,e,arguments.length>1?arguments[1]:void 0)}},8457:(e,n,t)=>{"use strict";var r=t(7854),o=t(9974),i=t(6916),a=t(7908),l=t(3411),c=t(7659),u=t(4411),s=t(6244),f=t(6135),p=t(8554),d=t(1246),h=r.Array;e.exports=function(e){var n=a(e),t=u(this),r=arguments.length,g=r>1?arguments[1]:void 0,v=void 0!==g;v&&(g=o(g,r>2?arguments[2]:void 0));var A,b,m,y,E,_,C=d(n),w=0;if(!C||this==h&&c(C))for(A=s(n),b=t?new this(A):h(A);A>w;w++)_=v?g(n[w],w):n[w],f(b,w,_);else for(E=(y=p(n,C)).next,b=t?new this:[];!(m=i(E,y)).done;w++)_=v?l(y,g,[m.value,w],!0):m.value,f(b,w,_);return b.length=w,b}},1318:(e,n,t)=>{var r=t(5656),o=t(1400),i=t(6244),a=function(e){return function(n,t,a){var l,c=r(n),u=i(c),s=o(a,u);if(e&&t!=t){for(;u>s;)if((l=c[s++])!=l)return!0}else for(;u>s;s++)if((e||s in c)&&c[s]===t)return e||s||0;return!e&&-1}};e.exports={includes:a(!0),indexOf:a(!1)}},2092:(e,n,t)=>{var r=t(9974),o=t(1702),i=t(8361),a=t(7908),l=t(6244),c=t(5417),u=o([].push),s=function(e){var n=1==e,t=2==e,o=3==e,s=4==e,f=6==e,p=7==e,d=5==e||f;return function(h,g,v,A){for(var b,m,y=a(h),E=i(y),_=r(g,v),C=l(E),w=0,x=A||c,k=n?x(h,C):t||p?x(h,0):void 0;C>w;w++)if((d||w in E)&&(m=_(b=E[w],w,y),e))if(n)k[w]=m;else if(m)switch(e){case 3:return!0;case 5:return b;case 6:return w;case 2:u(k,b)}else switch(e){case 4:return!1;case 7:u(k,b)}return f?-1:o||s?s:k}};e.exports={forEach:s(0),map:s(1),filter:s(2),some:s(3),every:s(4),find:s(5),findIndex:s(6),filterReject:s(7)}},1194:(e,n,t)=>{var r=t(7293),o=t(5112),i=t(7392),a=o("species");e.exports=function(e){return i>=51||!r((function(){var n=[];return(n.constructor={})[a]=function(){return{foo:1}},1!==n[e](Boolean).foo}))}},9341:(e,n,t)=>{"use strict";var r=t(7293);e.exports=function(e,n){var t=[][e];return!!t&&r((function(){t.call(null,n||function(){throw 1},1)}))}},3671:(e,n,t)=>{var r=t(7854),o=t(9662),i=t(7908),a=t(8361),l=t(6244),c=r.TypeError,u=function(e){return function(n,t,r,u){o(t);var s=i(n),f=a(s),p=l(s),d=e?p-1:0,h=e?-1:1;if(r<2)for(;;){if(d in f){u=f[d],d+=h;break}if(d+=h,e?d<0:p<=d)throw c("Reduce of empty array with no initial value")}for(;e?d>=0:p>d;d+=h)d in f&&(u=t(u,f[d],d,s));return u}};e.exports={left:u(!1),right:u(!0)}},206:(e,n,t)=>{var r=t(1702);e.exports=r([].slice)},4362:(e,n,t)=>{var r=t(206),o=Math.floor,i=function(e,n){var t=e.length,c=o(t/2);return t<8?a(e,n):l(e,i(r(e,0,c),n),i(r(e,c),n),n)},a=function(e,n){for(var t,r,o=e.length,i=1;i0;)e[r]=e[--r];r!==i++&&(e[r]=t)}return e},l=function(e,n,t,r){for(var o=n.length,i=t.length,a=0,l=0;a{var r=t(7854),o=t(3157),i=t(4411),a=t(111),l=t(5112)("species"),c=r.Array;e.exports=function(e){var n;return o(e)&&(n=e.constructor,(i(n)&&(n===c||o(n.prototype))||a(n)&&null===(n=n[l]))&&(n=void 0)),void 0===n?c:n}},5417:(e,n,t)=>{var r=t(7475);e.exports=function(e,n){return new(r(e))(0===n?0:n)}},3411:(e,n,t)=>{var r=t(9670),o=t(9212);e.exports=function(e,n,t,i){try{return i?n(r(t)[0],t[1]):n(t)}catch(n){o(e,"throw",n)}}},7072:(e,n,t)=>{var r=t(5112)("iterator"),o=!1;try{var i=0,a={next:function(){return{done:!!i++}},return:function(){o=!0}};a[r]=function(){return this},Array.from(a,(function(){throw 2}))}catch(e){}e.exports=function(e,n){if(!n&&!o)return!1;var t=!1;try{var i={};i[r]=function(){return{next:function(){return{done:t=!0}}}},e(i)}catch(e){}return t}},4326:(e,n,t)=>{var r=t(1702),o=r({}.toString),i=r("".slice);e.exports=function(e){return i(o(e),8,-1)}},648:(e,n,t)=>{var r=t(7854),o=t(1694),i=t(614),a=t(4326),l=t(5112)("toStringTag"),c=r.Object,u="Arguments"==a(function(){return arguments}());e.exports=o?a:function(e){var n,t,r;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(t=function(e,n){try{return e[n]}catch(e){}}(n=c(e),l))?t:u?a(n):"Object"==(r=a(n))&&i(n.callee)?"Arguments":r}},5631:(e,n,t)=>{"use strict";var r=t(3070).f,o=t(30),i=t(2248),a=t(9974),l=t(5787),c=t(408),u=t(654),s=t(6340),f=t(9781),p=t(2423).fastKey,d=t(9909),h=d.set,g=d.getterFor;e.exports={getConstructor:function(e,n,t,u){var s=e((function(e,r){l(e,d),h(e,{type:n,index:o(null),first:void 0,last:void 0,size:0}),f||(e.size=0),null!=r&&c(r,e[u],{that:e,AS_ENTRIES:t})})),d=s.prototype,v=g(n),A=function(e,n,t){var r,o,i=v(e),a=b(e,n);return a?a.value=t:(i.last=a={index:o=p(n,!0),key:n,value:t,previous:r=i.last,next:void 0,removed:!1},i.first||(i.first=a),r&&(r.next=a),f?i.size++:e.size++,"F"!==o&&(i.index[o]=a)),e},b=function(e,n){var t,r=v(e),o=p(n);if("F"!==o)return r.index[o];for(t=r.first;t;t=t.next)if(t.key==n)return t};return i(d,{clear:function(){for(var e=v(this),n=e.index,t=e.first;t;)t.removed=!0,t.previous&&(t.previous=t.previous.next=void 0),delete n[t.index],t=t.next;e.first=e.last=void 0,f?e.size=0:this.size=0},delete:function(e){var n=this,t=v(n),r=b(n,e);if(r){var o=r.next,i=r.previous;delete t.index[r.index],r.removed=!0,i&&(i.next=o),o&&(o.previous=i),t.first==r&&(t.first=o),t.last==r&&(t.last=i),f?t.size--:n.size--}return!!r},forEach:function(e){for(var n,t=v(this),r=a(e,arguments.length>1?arguments[1]:void 0);n=n?n.next:t.first;)for(r(n.value,n.key,this);n&&n.removed;)n=n.previous},has:function(e){return!!b(this,e)}}),i(d,t?{get:function(e){var n=b(this,e);return n&&n.value},set:function(e,n){return A(this,0===e?0:e,n)}}:{add:function(e){return A(this,e=0===e?0:e,e)}}),f&&r(d,"size",{get:function(){return v(this).size}}),s},setStrong:function(e,n,t){var r=n+" Iterator",o=g(n),i=g(r);u(e,n,(function(e,n){h(this,{type:r,target:e,state:o(e),kind:n,last:void 0})}),(function(){for(var e=i(this),n=e.kind,t=e.last;t&&t.removed;)t=t.previous;return e.target&&(e.last=t=t?t.next:e.state.first)?"keys"==n?{value:t.key,done:!1}:"values"==n?{value:t.value,done:!1}:{value:[t.key,t.value],done:!1}:(e.target=void 0,{value:void 0,done:!0})}),t?"entries":"values",!t,!0),s(n)}}},9320:(e,n,t)=>{"use strict";var r=t(1702),o=t(2248),i=t(2423).getWeakData,a=t(9670),l=t(111),c=t(5787),u=t(408),s=t(2092),f=t(2597),p=t(9909),d=p.set,h=p.getterFor,g=s.find,v=s.findIndex,A=r([].splice),b=0,m=function(e){return e.frozen||(e.frozen=new y)},y=function(){this.entries=[]},E=function(e,n){return g(e.entries,(function(e){return e[0]===n}))};y.prototype={get:function(e){var n=E(this,e);if(n)return n[1]},has:function(e){return!!E(this,e)},set:function(e,n){var t=E(this,e);t?t[1]=n:this.entries.push([e,n])},delete:function(e){var n=v(this.entries,(function(n){return n[0]===e}));return~n&&A(this.entries,n,1),!!~n}},e.exports={getConstructor:function(e,n,t,r){var s=e((function(e,o){c(e,p),d(e,{type:n,id:b++,frozen:void 0}),null!=o&&u(o,e[r],{that:e,AS_ENTRIES:t})})),p=s.prototype,g=h(n),v=function(e,n,t){var r=g(e),o=i(a(n),!0);return!0===o?m(r).set(n,t):o[r.id]=t,e};return o(p,{delete:function(e){var n=g(this);if(!l(e))return!1;var t=i(e);return!0===t?m(n).delete(e):t&&f(t,n.id)&&delete t[n.id]},has:function(e){var n=g(this);if(!l(e))return!1;var t=i(e);return!0===t?m(n).has(e):t&&f(t,n.id)}}),o(p,t?{get:function(e){var n=g(this);if(l(e)){var t=i(e);return!0===t?m(n).get(e):t?t[n.id]:void 0}},set:function(e,n){return v(this,e,n)}}:{add:function(e){return v(this,e,!0)}}),s}}},7710:(e,n,t)=>{"use strict";var r=t(2109),o=t(7854),i=t(1702),a=t(4705),l=t(1320),c=t(2423),u=t(408),s=t(5787),f=t(614),p=t(111),d=t(7293),h=t(7072),g=t(8003),v=t(9587);e.exports=function(e,n,t){var A=-1!==e.indexOf("Map"),b=-1!==e.indexOf("Weak"),m=A?"set":"add",y=o[e],E=y&&y.prototype,_=y,C={},w=function(e){var n=i(E[e]);l(E,e,"add"==e?function(e){return n(this,0===e?0:e),this}:"delete"==e?function(e){return!(b&&!p(e))&&n(this,0===e?0:e)}:"get"==e?function(e){return b&&!p(e)?void 0:n(this,0===e?0:e)}:"has"==e?function(e){return!(b&&!p(e))&&n(this,0===e?0:e)}:function(e,t){return n(this,0===e?0:e,t),this})};if(a(e,!f(y)||!(b||E.forEach&&!d((function(){(new y).entries().next()})))))_=t.getConstructor(n,e,A,m),c.enable();else if(a(e,!0)){var x=new _,k=x[m](b?{}:-0,1)!=x,S=d((function(){x.has(1)})),O=h((function(e){new y(e)})),B=!b&&d((function(){for(var e=new y,n=5;n--;)e[m](n,n);return!e.has(-0)}));O||((_=n((function(e,n){s(e,E);var t=v(new y,e,_);return null!=n&&u(n,t[m],{that:t,AS_ENTRIES:A}),t}))).prototype=E,E.constructor=_),(S||B)&&(w("delete"),w("has"),A&&w("get")),(B||k)&&w(m),b&&E.clear&&delete E.clear}return C[e]=_,r({global:!0,forced:_!=y},C),g(_,e),b||t.setStrong(_,e,A),_}},9920:(e,n,t)=>{var r=t(2597),o=t(3887),i=t(1236),a=t(3070);e.exports=function(e,n){for(var t=o(n),l=a.f,c=i.f,u=0;u{var r=t(5112)("match");e.exports=function(e){var n=/./;try{"/./"[e](n)}catch(t){try{return n[r]=!1,"/./"[e](n)}catch(e){}}return!1}},8544:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e)!==e.prototype}))},4230:(e,n,t)=>{var r=t(1702),o=t(4488),i=t(1340),a=/"/g,l=r("".replace);e.exports=function(e,n,t,r){var c=i(o(e)),u="<"+n;return""!==t&&(u+=" "+t+'="'+l(i(r),a,""")+'"'),u+">"+c+""}},4994:(e,n,t)=>{"use strict";var r=t(3383).IteratorPrototype,o=t(30),i=t(9114),a=t(8003),l=t(7497),c=function(){return this};e.exports=function(e,n,t){var u=n+" Iterator";return e.prototype=o(r,{next:i(1,t)}),a(e,u,!1,!0),l[u]=c,e}},8880:(e,n,t)=>{var r=t(9781),o=t(3070),i=t(9114);e.exports=r?function(e,n,t){return o.f(e,n,i(1,t))}:function(e,n,t){return e[n]=t,e}},9114:e=>{e.exports=function(e,n){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:n}}},6135:(e,n,t)=>{"use strict";var r=t(4948),o=t(3070),i=t(9114);e.exports=function(e,n,t){var a=r(n);a in e?o.f(e,a,i(0,t)):e[a]=t}},8709:(e,n,t)=>{"use strict";var r=t(7854),o=t(9670),i=t(2140),a=r.TypeError;e.exports=function(e){if(o(this),"string"===e||"default"===e)e="string";else if("number"!==e)throw a("Incorrect hint");return i(this,e)}},654:(e,n,t)=>{"use strict";var r=t(2109),o=t(6916),i=t(1913),a=t(6530),l=t(614),c=t(4994),u=t(9518),s=t(7674),f=t(8003),p=t(8880),d=t(1320),h=t(5112),g=t(7497),v=t(3383),A=a.PROPER,b=a.CONFIGURABLE,m=v.IteratorPrototype,y=v.BUGGY_SAFARI_ITERATORS,E=h("iterator"),_="keys",C="values",w="entries",x=function(){return this};e.exports=function(e,n,t,a,h,v,k){c(t,n,a);var S,O,B,I=function(e){if(e===h&&R)return R;if(!y&&e in j)return j[e];switch(e){case _:case C:case w:return function(){return new t(this,e)}}return function(){return new t(this)}},T=n+" Iterator",P=!1,j=e.prototype,z=j[E]||j["@@iterator"]||h&&j[h],R=!y&&z||I(h),M="Array"==n&&j.entries||z;if(M&&(S=u(M.call(new e)))!==Object.prototype&&S.next&&(i||u(S)===m||(s?s(S,m):l(S[E])||d(S,E,x)),f(S,T,!0,!0),i&&(g[T]=x)),A&&h==C&&z&&z.name!==C&&(!i&&b?p(j,"name",C):(P=!0,R=function(){return o(z,this)})),h)if(O={values:I(C),keys:v?R:I(_),entries:I(w)},k)for(B in O)(y||P||!(B in j))&&d(j,B,O[B]);else r({target:n,proto:!0,forced:y||P},O);return i&&!k||j[E]===R||d(j,E,R,{name:h}),g[n]=R,O}},7235:(e,n,t)=>{var r=t(857),o=t(2597),i=t(6061),a=t(3070).f;e.exports=function(e){var n=r.Symbol||(r.Symbol={});o(n,e)||a(n,e,{value:i.f(e)})}},9781:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},317:(e,n,t)=>{var r=t(7854),o=t(111),i=r.document,a=o(i)&&o(i.createElement);e.exports=function(e){return a?i.createElement(e):{}}},8324:e=>{e.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},8509:(e,n,t)=>{var r=t(317)("span").classList,o=r&&r.constructor&&r.constructor.prototype;e.exports=o===Object.prototype?void 0:o},8886:(e,n,t)=>{var r=t(8113).match(/firefox\/(\d+)/i);e.exports=!!r&&+r[1]},256:(e,n,t)=>{var r=t(8113);e.exports=/MSIE|Trident/.test(r)},5268:(e,n,t)=>{var r=t(4326),o=t(7854);e.exports="process"==r(o.process)},8113:(e,n,t)=>{var r=t(5005);e.exports=r("navigator","userAgent")||""},7392:(e,n,t)=>{var r,o,i=t(7854),a=t(8113),l=i.process,c=i.Deno,u=l&&l.versions||c&&c.version,s=u&&u.v8;s&&(o=(r=s.split("."))[0]>0&&r[0]<4?1:+(r[0]+r[1])),!o&&a&&(!(r=a.match(/Edge\/(\d+)/))||r[1]>=74)&&(r=a.match(/Chrome\/(\d+)/))&&(o=+r[1]),e.exports=o},8008:(e,n,t)=>{var r=t(8113).match(/AppleWebKit\/(\d+)\./);e.exports=!!r&&+r[1]},748:e=>{e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},2109:(e,n,t)=>{var r=t(7854),o=t(1236).f,i=t(8880),a=t(1320),l=t(3505),c=t(9920),u=t(4705);e.exports=function(e,n){var t,s,f,p,d,h=e.target,g=e.global,v=e.stat;if(t=g?r:v?r[h]||l(h,{}):(r[h]||{}).prototype)for(s in n){if(p=n[s],f=e.noTargetGet?(d=o(t,s))&&d.value:t[s],!u(g?s:h+(v?".":"#")+s,e.forced)&&void 0!==f){if(typeof p==typeof f)continue;c(p,f)}(e.sham||f&&f.sham)&&i(p,"sham",!0),a(t,s,p,e)}}},7293:e=>{e.exports=function(e){try{return!!e()}catch(e){return!0}}},7007:(e,n,t)=>{"use strict";t(4916);var r=t(1702),o=t(1320),i=t(2261),a=t(7293),l=t(5112),c=t(8880),u=l("species"),s=RegExp.prototype;e.exports=function(e,n,t,f){var p=l(e),d=!a((function(){var n={};return n[p]=function(){return 7},7!=""[e](n)})),h=d&&!a((function(){var n=!1,t=/a/;return"split"===e&&((t={}).constructor={},t.constructor[u]=function(){return t},t.flags="",t[p]=/./[p]),t.exec=function(){return n=!0,null},t[p](""),!n}));if(!d||!h||t){var g=r(/./[p]),v=n(p,""[e],(function(e,n,t,o,a){var l=r(e),c=n.exec;return c===i||c===s.exec?d&&!a?{done:!0,value:g(n,t,o)}:{done:!0,value:l(t,n,o)}:{done:!1}}));o(String.prototype,e,v[0]),o(s,p,v[1])}f&&c(s[p],"sham",!0)}},6677:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){return Object.isExtensible(Object.preventExtensions({}))}))},2104:e=>{var n=Function.prototype,t=n.apply,r=n.bind,o=n.call;e.exports="object"==typeof Reflect&&Reflect.apply||(r?o.bind(t):function(){return o.apply(t,arguments)})},9974:(e,n,t)=>{var r=t(1702),o=t(9662),i=r(r.bind);e.exports=function(e,n){return o(e),void 0===n?e:i?i(e,n):function(){return e.apply(n,arguments)}}},7065:(e,n,t)=>{"use strict";var r=t(7854),o=t(1702),i=t(9662),a=t(111),l=t(2597),c=t(206),u=r.Function,s=o([].concat),f=o([].join),p={},d=function(e,n,t){if(!l(p,n)){for(var r=[],o=0;o{var n=Function.prototype.call;e.exports=n.bind?n.bind(n):function(){return n.apply(n,arguments)}},6530:(e,n,t)=>{var r=t(9781),o=t(2597),i=Function.prototype,a=r&&Object.getOwnPropertyDescriptor,l=o(i,"name"),c=l&&"something"===function(){}.name,u=l&&(!r||r&&a(i,"name").configurable);e.exports={EXISTS:l,PROPER:c,CONFIGURABLE:u}},1702:e=>{var n=Function.prototype,t=n.bind,r=n.call,o=t&&t.bind(r);e.exports=t?function(e){return e&&o(r,e)}:function(e){return e&&function(){return r.apply(e,arguments)}}},5005:(e,n,t)=>{var r=t(7854),o=t(614),i=function(e){return o(e)?e:void 0};e.exports=function(e,n){return arguments.length<2?i(r[e]):r[e]&&r[e][n]}},1246:(e,n,t)=>{var r=t(648),o=t(8173),i=t(7497),a=t(5112)("iterator");e.exports=function(e){if(null!=e)return o(e,a)||o(e,"@@iterator")||i[r(e)]}},8554:(e,n,t)=>{var r=t(7854),o=t(6916),i=t(9662),a=t(9670),l=t(6330),c=t(1246),u=r.TypeError;e.exports=function(e,n){var t=arguments.length<2?c(e):n;if(i(t))return a(o(t,e));throw u(l(e)+" is not iterable")}},8173:(e,n,t)=>{var r=t(9662);e.exports=function(e,n){var t=e[n];return null==t?void 0:r(t)}},647:(e,n,t)=>{var r=t(1702),o=t(7908),i=Math.floor,a=r("".charAt),l=r("".replace),c=r("".slice),u=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,s=/\$([$&'`]|\d{1,2})/g;e.exports=function(e,n,t,r,f,p){var d=t+e.length,h=r.length,g=s;return void 0!==f&&(f=o(f),g=u),l(p,g,(function(o,l){var u;switch(a(l,0)){case"$":return"$";case"&":return e;case"`":return c(n,0,t);case"'":return c(n,d);case"<":u=f[c(l,1,-1)];break;default:var s=+l;if(0===s)return o;if(s>h){var p=i(s/10);return 0===p?o:p<=h?void 0===r[p-1]?a(l,1):r[p-1]+a(l,1):o}u=r[s-1]}return void 0===u?"":u}))}},7854:(e,n,t)=>{var r=function(e){return e&&e.Math==Math&&e};e.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof t.g&&t.g)||function(){return this}()||Function("return this")()},2597:(e,n,t)=>{var r=t(1702),o=t(7908),i=r({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,n){return i(o(e),n)}},3501:e=>{e.exports={}},490:(e,n,t)=>{var r=t(5005);e.exports=r("document","documentElement")},4664:(e,n,t)=>{var r=t(9781),o=t(7293),i=t(317);e.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},8361:(e,n,t)=>{var r=t(7854),o=t(1702),i=t(7293),a=t(4326),l=r.Object,c=o("".split);e.exports=i((function(){return!l("z").propertyIsEnumerable(0)}))?function(e){return"String"==a(e)?c(e,""):l(e)}:l},9587:(e,n,t)=>{var r=t(614),o=t(111),i=t(7674);e.exports=function(e,n,t){var a,l;return i&&r(a=n.constructor)&&a!==t&&o(l=a.prototype)&&l!==t.prototype&&i(e,l),e}},2788:(e,n,t)=>{var r=t(1702),o=t(614),i=t(5465),a=r(Function.toString);o(i.inspectSource)||(i.inspectSource=function(e){return a(e)}),e.exports=i.inspectSource},2423:(e,n,t)=>{var r=t(2109),o=t(1702),i=t(3501),a=t(111),l=t(2597),c=t(3070).f,u=t(8006),s=t(1156),f=t(2050),p=t(9711),d=t(6677),h=!1,g=p("meta"),v=0,A=function(e){c(e,g,{value:{objectID:"O"+v++,weakData:{}}})},b=e.exports={enable:function(){b.enable=function(){},h=!0;var e=u.f,n=o([].splice),t={};t[g]=1,e(t).length&&(u.f=function(t){for(var r=e(t),o=0,i=r.length;o{var r,o,i,a=t(8536),l=t(7854),c=t(1702),u=t(111),s=t(8880),f=t(2597),p=t(5465),d=t(6200),h=t(3501),g="Object already initialized",v=l.TypeError,A=l.WeakMap;if(a||p.state){var b=p.state||(p.state=new A),m=c(b.get),y=c(b.has),E=c(b.set);r=function(e,n){if(y(b,e))throw new v(g);return n.facade=e,E(b,e,n),n},o=function(e){return m(b,e)||{}},i=function(e){return y(b,e)}}else{var _=d("state");h[_]=!0,r=function(e,n){if(f(e,_))throw new v(g);return n.facade=e,s(e,_,n),n},o=function(e){return f(e,_)?e[_]:{}},i=function(e){return f(e,_)}}e.exports={set:r,get:o,has:i,enforce:function(e){return i(e)?o(e):r(e,{})},getterFor:function(e){return function(n){var t;if(!u(n)||(t=o(n)).type!==e)throw v("Incompatible receiver, "+e+" required");return t}}}},7659:(e,n,t)=>{var r=t(5112),o=t(7497),i=r("iterator"),a=Array.prototype;e.exports=function(e){return void 0!==e&&(o.Array===e||a[i]===e)}},3157:(e,n,t)=>{var r=t(4326);e.exports=Array.isArray||function(e){return"Array"==r(e)}},614:e=>{e.exports=function(e){return"function"==typeof e}},4411:(e,n,t)=>{var r=t(1702),o=t(7293),i=t(614),a=t(648),l=t(5005),c=t(2788),u=function(){},s=[],f=l("Reflect","construct"),p=/^\s*(?:class|function)\b/,d=r(p.exec),h=!p.exec(u),g=function(e){if(!i(e))return!1;try{return f(u,s,e),!0}catch(e){return!1}};e.exports=!f||o((function(){var e;return g(g.call)||!g(Object)||!g((function(){e=!0}))||e}))?function(e){if(!i(e))return!1;switch(a(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}return h||!!d(p,c(e))}:g},4705:(e,n,t)=>{var r=t(7293),o=t(614),i=/#|\.prototype\./,a=function(e,n){var t=c[l(e)];return t==s||t!=u&&(o(n)?r(n):!!n)},l=a.normalize=function(e){return String(e).replace(i,".").toLowerCase()},c=a.data={},u=a.NATIVE="N",s=a.POLYFILL="P";e.exports=a},111:(e,n,t)=>{var r=t(614);e.exports=function(e){return"object"==typeof e?null!==e:r(e)}},1913:e=>{e.exports=!1},7850:(e,n,t)=>{var r=t(111),o=t(4326),i=t(5112)("match");e.exports=function(e){var n;return r(e)&&(void 0!==(n=e[i])?!!n:"RegExp"==o(e))}},2190:(e,n,t)=>{var r=t(7854),o=t(5005),i=t(614),a=t(7976),l=t(3307),c=r.Object;e.exports=l?function(e){return"symbol"==typeof e}:function(e){var n=o("Symbol");return i(n)&&a(n.prototype,c(e))}},408:(e,n,t)=>{var r=t(7854),o=t(9974),i=t(6916),a=t(9670),l=t(6330),c=t(7659),u=t(6244),s=t(7976),f=t(8554),p=t(1246),d=t(9212),h=r.TypeError,g=function(e,n){this.stopped=e,this.result=n},v=g.prototype;e.exports=function(e,n,t){var r,A,b,m,y,E,_,C=t&&t.that,w=!(!t||!t.AS_ENTRIES),x=!(!t||!t.IS_ITERATOR),k=!(!t||!t.INTERRUPTED),S=o(n,C),O=function(e){return r&&d(r,"normal",e),new g(!0,e)},B=function(e){return w?(a(e),k?S(e[0],e[1],O):S(e[0],e[1])):k?S(e,O):S(e)};if(x)r=e;else{if(!(A=p(e)))throw h(l(e)+" is not iterable");if(c(A)){for(b=0,m=u(e);m>b;b++)if((y=B(e[b]))&&s(v,y))return y;return new g(!1)}r=f(e,A)}for(E=r.next;!(_=i(E,r)).done;){try{y=B(_.value)}catch(e){d(r,"throw",e)}if("object"==typeof y&&y&&s(v,y))return y}return new g(!1)}},9212:(e,n,t)=>{var r=t(6916),o=t(9670),i=t(8173);e.exports=function(e,n,t){var a,l;o(e);try{if(!(a=i(e,"return"))){if("throw"===n)throw t;return t}a=r(a,e)}catch(e){l=!0,a=e}if("throw"===n)throw t;if(l)throw a;return o(a),t}},3383:(e,n,t)=>{"use strict";var r,o,i,a=t(7293),l=t(614),c=t(30),u=t(9518),s=t(1320),f=t(5112),p=t(1913),d=f("iterator"),h=!1;[].keys&&("next"in(i=[].keys())?(o=u(u(i)))!==Object.prototype&&(r=o):h=!0),null==r||a((function(){var e={};return r[d].call(e)!==e}))?r={}:p&&(r=c(r)),l(r[d])||s(r,d,(function(){return this})),e.exports={IteratorPrototype:r,BUGGY_SAFARI_ITERATORS:h}},7497:e=>{e.exports={}},6244:(e,n,t)=>{var r=t(7466);e.exports=function(e){return r(e.length)}},133:(e,n,t)=>{var r=t(7392),o=t(7293);e.exports=!!Object.getOwnPropertySymbols&&!o((function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&r&&r<41}))},8536:(e,n,t)=>{var r=t(7854),o=t(614),i=t(2788),a=r.WeakMap;e.exports=o(a)&&/native code/.test(i(a))},3929:(e,n,t)=>{var r=t(7854),o=t(7850),i=r.TypeError;e.exports=function(e){if(o(e))throw i("The method doesn't accept regular expressions");return e}},1574:(e,n,t)=>{"use strict";var r=t(9781),o=t(1702),i=t(6916),a=t(7293),l=t(1956),c=t(5181),u=t(5296),s=t(7908),f=t(8361),p=Object.assign,d=Object.defineProperty,h=o([].concat);e.exports=!p||a((function(){if(r&&1!==p({b:1},p(d({},"a",{enumerable:!0,get:function(){d(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var e={},n={},t=Symbol(),o="abcdefghijklmnopqrst";return e[t]=7,o.split("").forEach((function(e){n[e]=e})),7!=p({},e)[t]||l(p({},n)).join("")!=o}))?function(e,n){for(var t=s(e),o=arguments.length,a=1,p=c.f,d=u.f;o>a;)for(var g,v=f(arguments[a++]),A=p?h(l(v),p(v)):l(v),b=A.length,m=0;b>m;)g=A[m++],r&&!i(d,v,g)||(t[g]=v[g]);return t}:p},30:(e,n,t)=>{var r,o=t(9670),i=t(6048),a=t(748),l=t(3501),c=t(490),u=t(317),s=t(6200),f=s("IE_PROTO"),p=function(){},d=function(e){return" - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

acceptEitherSuccessAsync

-
-

Returns a new CompletionStage that, when either given stage success, is executed using this stage's default asynchronous execution facility, with the corresponding result as argument to the supplied action.

This method is the same as CompletableFuture.acceptEitherAsync except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also


Returns a new CompletionStage that, when either given stage success, is executed using the supplied executor, with the corresponding result as argument to the supplied action.

This method is the same as CompletableFuture.acceptEitherAsync except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

executor

the executor to use for asynchronous execution

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/accept-either-success.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/accept-either-success.html deleted file mode 100644 index c5cb0251..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/accept-either-success.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - acceptEitherSuccess - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

acceptEitherSuccess

-
-

Returns a new CompletableFuture that, when either given stage success, is executed with the corresponding result as argument to the supplied action.

This method is the same as CompletableFuture.acceptEither except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html deleted file mode 100644 index 357594cf..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allOfCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allOfCffu

-
-
fun Collection<Cffu<*>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is completed when all the given Cffus complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given Cffus are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no Cffus are provided, returns a Cffu completed with the value null.

This method is the same as CffuFactory.allOf, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun Array<out Cffu<*>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is completed when all the given Cffus complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given Cffus are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no Cffus are provided, returns a Cffu completed with the value null.

This method is the same as CffuFactory.allOf, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allOfCffuCf")
fun Collection<CompletableFuture<*>>.allOfCffu(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is completed when all the given CompletableFutures complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given CompletableFutures are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no CompletableFutures are provided, returns a Cffu completed with the value null.

This method is the same as CffuFactory.allOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html deleted file mode 100644 index bfdb1005..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allOfCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allOfCompletableFuture

-
-

Returns a new CompletableFuture that is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given CompletableFutures are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If no CompletableFutures are provided, returns a CompletableFuture completed with the value null.

Among the applications of this method is to await completion of a set of independent CompletableFutures before continuing a program, as in: CompletableFuture.allOf(c1, c2, c3).join();. Returns a new CompletableFuture that is completed when all the given CompletableFutures complete.

This method is the same as CompletableFuture.allOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html deleted file mode 100644 index e3faf8a3..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allOfFastFailCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allOfFastFailCffu

-
-
fun Collection<Cffu<*>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is successful when all the given Cffus success, the results(Cffu<Void>) of the given Cffus are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value null.

This method is the same as CffuFactory.allOfFastFail, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun Array<out Cffu<*>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is successful when all the given Cffus success, the results(Cffu<Void>) of the given Cffus are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value null.

This method is the same as CffuFactory.allOfFastFail, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allOfFastFailCffuCf")
fun Collection<CompletableFuture<*>>.allOfFastFailCffu(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is successful when all the given CompletableFutures success, the results(Cffu<Void>) of the given CompletableFutures are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value null.

This method is the same as CffuFactory.allOfFastFail, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html deleted file mode 100644 index a4fa92b8..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allOfFastFailCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allOfFastFailCompletableFuture

-
-

Returns a new CompletableFuture that is successful when all the given CompletableFutures success, the results(CompletableFuture<Void>) of the given CompletableFutures are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value null.

This method is the same as CompletableFutureUtils.allOfFastFail, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html deleted file mode 100644 index bcbc838b..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allResultsOfCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allResultsOfCffu

-
-
fun <T> Collection<Cffu<out T>>.allResultsOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu is completed when all the given Cffus complete. If any of the given Cffus complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value empty list.

This method is the same as allOfCffu, except the returned Cffu contains the results of input Cffus.

This method is the same as CffuFactory.allResultsOf, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<out Cffu<out T>>.allResultsOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu is completed when all the given Cffus complete. If any of the given Cffus complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value empty list.

This method is the same as allOfCffu, except the returned Cffu contains the results of input Cffus.

This method is the same as CffuFactory.allResultsOf, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allResultsOfCffuCf")
fun <T> Collection<CompletableFuture<out T>>.allResultsOfCffu(cffuFactory: CffuFactory): Cffu<List<T>>
fun <T> Array<out CompletableFuture<out T>>.allResultsOfCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given CompletableFutures, the new Cffu is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

This method is the same as allOfCffu, except the returned Cffu contains the results of input CompletableFutures.

This method is the same as CffuFactory.allResultsOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-completable-future.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-completable-future.html deleted file mode 100644 index 86900377..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allResultsOfCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allResultsOfCompletableFuture

-
-

Returns a new CompletableFuture with the results in the same order of all the given CompletableFutures, the returned new CompletableFuture is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value empty list.

This method is the same as allOfCompletableFuture, except the returned CompletableFuture contains the results of input CompletableFutures.

This method is the same as CompletableFutureUtils.allResultsOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html deleted file mode 100644 index b1d0ae38..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allResultsOfFastFailCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allResultsOfFastFailCffu

-
-
fun <T> Collection<Cffu<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu success when all the given Cffus success. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

This method is the same as allOfFastFailCffu, except the returned Cffu contains the results of input Cffus.

This method is the same as CffuFactory.allResultsOfFastFail, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<out Cffu<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu success when all the given Cffus success. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

This method is the same as allOfFastFailCffu, except the returned Cffu contains the results of input Cffus.

This method is the same as CffuFactory.allResultsOfFastFail, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allResultsOfFastFailCffuCf")
fun <T> Collection<CompletableFuture<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given CompletableFutures, the new Cffu success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

This method is the same as allOfFastFailCffu, except the returned Cffu contains the results of input Cffus.

This method is the same as CffuFactory.allResultsOfFastFail, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-completable-future.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-completable-future.html deleted file mode 100644 index f1e3daf3..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allResultsOfFastFailCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allResultsOfFastFailCompletableFuture

-
-

Returns a new CompletableFuture with the results in the same order of all the given CompletableFutures, the new CompletableFuture success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value empty list.

This method is the same as allOfFastFailCompletableFuture, except the returned CompletableFuture contains the results of input CompletableFutures.

This method is the same as CompletableFutureUtils.allResultsOfFastFail, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html deleted file mode 100644 index e8c86182..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allTupleOfFastFail - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allTupleOfFastFail

-
-

Returns a new CompletableFuture that is successful when the given two CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is successful when the given two CompletableFutures success

See also

Throws

if any of the given CompletableFutures are {@code null}


Returns a new CompletableFuture that is successful when the given three CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is successful when the given three CompletableFutures success

See also

Throws

if any of the given CompletableFutures are {@code null}


Returns a new CompletableFuture that is successful when the given 4 CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is successful when the given 4 CompletableFutures success

See also

Throws

if any of the given CompletableFutures are {@code null}


Returns a new CompletableFuture that is successful when the given 5 CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is successful when the given 5 CompletableFutures success

See also

Throws

if any of the given CompletableFutures are {@code null}

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html deleted file mode 100644 index 6fbf6a51..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allTupleOf - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allTupleOf

-
-

Returns a new CompletableFuture that is completed when the given two CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 2 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null


Returns a new CompletableFuture that is completed when the given three CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 3 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null


Returns a new CompletableFuture that is completed when the given 4 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 4 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null


Returns a new CompletableFuture that is completed when the given 5 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 5 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html deleted file mode 100644 index afbf05a0..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - anyOfCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

anyOfCffu

-
-
fun <T> Collection<Cffu<out T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

This method is the same as CffuFactory.anyOf, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<out Cffu<out T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

This method is the same as CffuFactory.anyOf, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "anyOfCffuCf")
fun <T> Collection<CompletableFuture<out T>>.anyOfCffu(cffuFactory: CffuFactory): Cffu<T>
fun <T> Array<out CompletableFuture<out T>>.anyOfCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is completed when any of the given CompletableFutures complete, with the same result.

This method is the same as CffuFactory.anyOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html deleted file mode 100644 index d5b012f1..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - anyOfCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

anyOfCompletableFuture

-
-

Returns a new CompletableFuture that is completed when any of the given CompletableFutures complete, with the same result. Otherwise, if it completed exceptionally, the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns an incomplete CompletableFuture.

This method is the same as CompletableFutureUtils.anyOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html deleted file mode 100644 index 81e97d5d..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - anyOfSuccessCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

anyOfSuccessCffu

-
-
fun <T> Collection<Cffu<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is successful when any of the given Cffus success, with the same result. Otherwise, all the given Cffus complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given Cffus as its cause. If no Cffus are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

This method is the same as CffuFactory.anyOfSuccess, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<out Cffu<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is successful when any of the given Cffus success, with the same result. Otherwise, all the given Cffus complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given Cffus as its cause. If no Cffus are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

This method is the same as CffuFactory.anyOfSuccess, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "anyOfSuccessCffuCf")
fun <T> Collection<CompletableFuture<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory): Cffu<T>
fun <T> Array<out CompletableFuture<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

This method is the same as CffuFactory.anyOfSuccess, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html deleted file mode 100644 index 7346ce7b..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - anyOfSuccessCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

anyOfSuccessCompletableFuture

-
-

Returns a new CompletableFuture that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new CompletableFuture that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

This method is the same as CompletableFutureUtils.anyOfSuccess, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success-async.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success-async.html deleted file mode 100644 index 8b8dc642..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - applyToEitherSuccessAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

applyToEitherSuccessAsync

-
-

Returns a new CompletionStage that, when either given stage success, is executed using this stage's default asynchronous execution facility, with the corresponding result as argument to the supplied function.

This method is the same as CompletableFuture.applyToEitherAsync except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

fn

the function to use to compute the value of the returned CompletableFuture

the function's return type

See also


Returns a new CompletionStage that, when either given stage success, is executed using the supplied executor, with the corresponding result as argument to the supplied function.

This method is the same as CompletableFuture.applyToEitherAsync except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

fn

the function to use to compute the value of the returned CompletableFuture

executor

the executor to use for asynchronous execution

the function's return type

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success.html deleted file mode 100644 index e81b0c72..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - applyToEitherSuccess - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

applyToEitherSuccess

-
-

Returns a new CompletionStage that, when either given stage success, is executed with the corresponding result as argument to the supplied function.

This method is the same as CompletableFuture.applyToEither except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

fn

the function to use to compute the value of the returned CompletableFuture

the function's return type

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/as-cffu.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/as-cffu.html deleted file mode 100644 index 398f9f64..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/as-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - asCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

asCffu

-
-
fun <T> CompletionStage<T>.asCffu(cffuFactory: CffuFactory): Cffu<T>

Wrap an existed CompletableFuture/CompletionStage to Cffu.

This method is the same as CffuFactory.asCffu, providing this method is convenient for method chaining.

See also


Wrap input CompletableFuture/CompletionStage collection elements to Cffu by CffuFactory.asCffu.

This method is the same as CffuFactory.asCffuArray, providing this method is convenient for method chaining.

See also


fun <T> Array<out CompletionStage<T>>.asCffu(cffuFactory: CffuFactory): Array<Cffu<T>>

Wrap input CompletableFuture/CompletionStage array elements to Cffu by CffuFactory.asCffu.

This method is the same as CffuFactory.asCffuArray, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html deleted file mode 100644 index 94c61daf..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - cffuState - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

cffuState

-
-

Returns the computation state(CffuState), this method is equivalent to CompletableFuture.state with java version compatibility logic, so you can invoke in old java 18-.

Return

the computation state

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html deleted file mode 100644 index 87cd6259..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - cffuUnwrap - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

cffuUnwrap

-
-

Unwrap input Cffu collection elements by Cffu.cffuUnwrap.

This method is the same as CffuFactory.cffuArrayUnwrap, providing this method is convenient for method chaining.

See also


Unwrap input Cffu array elements by Cffu.cffuUnwrap.

This method is the same as CffuFactory.cffuArrayUnwrap, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/complete-async.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/complete-async.html deleted file mode 100644 index e581eb64..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/complete-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - completeAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

completeAsync

-
-

Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the default executor.

Return

given CompletableFuture

Parameters

supplier

a function returning the value to be used to complete given CompletableFuture


Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the given executor.

Return

given CompletableFuture

Parameters

supplier

a function returning the value to be used to complete given CompletableFuture

executor

the executor to use for asynchronous execution

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/complete-on-timeout.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/complete-on-timeout.html deleted file mode 100644 index 372f8b8d..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/complete-on-timeout.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - completeOnTimeout - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

completeOnTimeout

-
-

Completes given CompletableFuture with the given value if not otherwise completed before the given timeout.

Return

given CompletableFuture

Parameters

value

the value to use upon timeout

timeout

how long to wait before completing normally with the given value, in units of unit

unit

a TimeUnit determining how to interpret the timeout parameter

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/component1.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/component1.html deleted file mode 100644 index 1f19686f..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/component1.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - component1 - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

component1

-
-
operator fun <T1, T2> Tuple2<T1, T2>.component1(): T1
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component1(): T1
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component1(): T1
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component1(): T1
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/component2.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/component2.html deleted file mode 100644 index 2cd464b0..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/component2.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - component2 - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

component2

-
-
operator fun <T1, T2> Tuple2<T1, T2>.component2(): T2
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component2(): T2
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component2(): T2
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component2(): T2
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/component3.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/component3.html deleted file mode 100644 index 5d82e265..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/component3.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - component3 - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

component3

-
-
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component3(): T3
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component3(): T3
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component3(): T3
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/component4.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/component4.html deleted file mode 100644 index 8519a0ab..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/component4.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - component4 - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

component4

-
-
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component4(): T4
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component4(): T4
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/component5.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/component5.html deleted file mode 100644 index 681d8c6c..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/component5.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - component5 - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

component5

-
-
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component5(): T5
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/copy.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/copy.html deleted file mode 100644 index ee96d516..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/copy.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - copy - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

copy

-
-

Returns a new CompletableFuture that is completed normally with the same value as this CompletableFuture when it completes normally. If this CompletableFuture completes exceptionally, then the returned CompletableFuture completes exceptionally with a CompletionException with this exception as cause. The behavior is equivalent to thenApply(x -> x). This method may be useful as a form of "defensive copying", to prevent clients from completing, while still being able to arrange dependent actions.

Return

the new CompletableFuture

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/exception-now.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/exception-now.html deleted file mode 100644 index 0e827ae0..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/exception-now.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - exceptionNow - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

exceptionNow

-
-

Returns the exception thrown by the task, without waiting.

This method is for cases where the caller knows that the task has already completed with an exception.

Return

the exception thrown by the task

See also

Throws

if the task has not completed, the task completed normally, or the task was cancelled

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-async.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-async.html deleted file mode 100644 index 4153edf8..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - exceptionallyAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

exceptionallyAsync

-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using given stage's default asynchronous execution facility. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the value of the returned CompletionStage if given CompletionStage completed exceptionally


Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using the supplied Executor. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the value of the returned CompletionStage if given CompletionStage completed exceptionally

executor

the executor to use for asynchronous execution

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose-async.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose-async.html deleted file mode 100644 index 162df6f1..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - exceptionallyComposeAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

exceptionallyComposeAsync

-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using given stage's default asynchronous execution facility.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the returned CompletionStage if given CompletionStage completed exceptionally


Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using the supplied Executor.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the returned CompletionStage if given CompletionStage completed exceptionally

executor

the executor to use for asynchronous execution

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose.html deleted file mode 100644 index 7094bf18..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - exceptionallyCompose - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

exceptionallyCompose

-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the returned CompletionStage if given CompletionStage completed exceptionally

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/index.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/index.html deleted file mode 100644 index 54310573..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/index.html +++ /dev/null @@ -1,823 +0,0 @@ - - - - - io.foldright.cffu.kotlin - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

Package-level declarations

-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when either given stage success, is executed with the corresponding result as argument to the supplied action.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when either given stage success, is executed using this stage's default asynchronous execution facility, with the corresponding result as argument to the supplied action.

Returns a new CompletionStage that, when either given stage success, is executed using the supplied executor, with the corresponding result as argument to the supplied action.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun Array<out Cffu<*>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>
fun Collection<Cffu<*>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is completed when all the given Cffus complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given Cffus are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no Cffus are provided, returns a Cffu completed with the value null.

@JvmName(name = "allOfCffuCf")
fun Collection<CompletableFuture<*>>.allOfCffu(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is completed when all the given CompletableFutures complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given CompletableFutures are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no CompletableFutures are provided, returns a Cffu completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given CompletableFutures are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If no CompletableFutures are provided, returns a CompletableFuture completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun Array<out Cffu<*>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>
fun Collection<Cffu<*>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is successful when all the given Cffus success, the results(Cffu<Void>) of the given Cffus are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value null.

@JvmName(name = "allOfFastFailCffuCf")
fun Collection<CompletableFuture<*>>.allOfFastFailCffu(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is successful when all the given CompletableFutures success, the results(Cffu<Void>) of the given CompletableFutures are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is successful when all the given CompletableFutures success, the results(CompletableFuture<Void>) of the given CompletableFutures are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<out Cffu<out T>>.allResultsOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>
fun <T> Collection<Cffu<out T>>.allResultsOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu is completed when all the given Cffus complete. If any of the given Cffus complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value empty list.

fun <T> Array<out CompletableFuture<out T>>.allResultsOfCffu(cffuFactory: CffuFactory): Cffu<List<T>>
@JvmName(name = "allResultsOfCffuCf")
fun <T> Collection<CompletableFuture<out T>>.allResultsOfCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given CompletableFutures, the new Cffu is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture with the results in the same order of all the given CompletableFutures, the returned new CompletableFuture is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value empty list.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<out Cffu<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>
fun <T> Collection<Cffu<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu success when all the given Cffus success. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

@JvmName(name = "allResultsOfFastFailCffuCf")
fun <T> Collection<CompletableFuture<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given CompletableFutures, the new Cffu success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture with the results in the same order of all the given CompletableFutures, the new CompletableFuture success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value empty list.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed when the given two CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is completed when the given three CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is completed when the given 4 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is completed when the given 5 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is successful when the given two CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is successful when the given three CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is successful when the given 4 CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is successful when the given 5 CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<out Cffu<out T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>
fun <T> Collection<Cffu<out T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

fun <T> Array<out CompletableFuture<out T>>.anyOfCffu(cffuFactory: CffuFactory): Cffu<T>
@JvmName(name = "anyOfCffuCf")
fun <T> Collection<CompletableFuture<out T>>.anyOfCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is completed when any of the given CompletableFutures complete, with the same result.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed when any of the given CompletableFutures complete, with the same result. Otherwise, if it completed exceptionally, the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns an incomplete CompletableFuture.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<out Cffu<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>
fun <T> Collection<Cffu<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is successful when any of the given Cffus success, with the same result. Otherwise, all the given Cffus complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given Cffus as its cause. If no Cffus are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

fun <T> Array<out CompletableFuture<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory): Cffu<T>
@JvmName(name = "anyOfSuccessCffuCf")
fun <T> Collection<CompletableFuture<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new CompletableFuture that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when either given stage success, is executed with the corresponding result as argument to the supplied function.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when either given stage success, is executed using this stage's default asynchronous execution facility, with the corresponding result as argument to the supplied function.

Returns a new CompletionStage that, when either given stage success, is executed using the supplied executor, with the corresponding result as argument to the supplied function.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> CompletionStage<T>.asCffu(cffuFactory: CffuFactory): Cffu<T>
fun <T> Array<out CompletionStage<T>>.asCffu(cffuFactory: CffuFactory): Array<Cffu<T>>

Wrap input CompletableFuture/CompletionStage array elements to Cffu by CffuFactory.asCffu.

Wrap input CompletableFuture/CompletionStage collection elements to Cffu by CffuFactory.asCffu.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the computation state(CffuState), this method is equivalent to CompletableFuture.state with java version compatibility logic, so you can invoke in old java 18-.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Unwrap input Cffu array elements by Cffu.cffuUnwrap.

Unwrap input Cffu collection elements by Cffu.cffuUnwrap.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the default executor.

Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the given executor.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Completes given CompletableFuture with the given value if not otherwise completed before the given timeout.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2> Tuple2<T1, T2>.component1(): T1
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component1(): T1
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component1(): T1
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component1(): T1
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2> Tuple2<T1, T2>.component2(): T2
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component2(): T2
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component2(): T2
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component2(): T2
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component3(): T3
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component3(): T3
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component3(): T3
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component4(): T4
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component4(): T4
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component5(): T5
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed normally with the same value as this CompletableFuture when it completes normally. If this CompletableFuture completes exceptionally, then the returned CompletableFuture completes exceptionally with a CompletionException with this exception as cause. The behavior is equivalent to thenApply(x -> x). This method may be useful as a form of "defensive copying", to prevent clients from completing, while still being able to arrange dependent actions.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using given stage's default asynchronous execution facility. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using the supplied Executor. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using given stage's default asynchronous execution facility.

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using the supplied Executor.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the exception thrown by the task, without waiting.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> CompletableFuture<T>.join(timeout: Long, unit: TimeUnit): T

Waits if necessary for at most the given time for the computation to complete, and then retrieves its result value when complete, or throws an (unchecked) exception if completed exceptionally.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that is completed normally with the same value as given CompletableFuture when it completes normally, and cannot be independently completed or otherwise used in ways not defined by the methods of interface CompletionStage. If given CompletableFuture completes exceptionally, then the returned CompletionStage completes exceptionally with a CompletionException with given exception as cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new incomplete CompletableFuture of the type to be returned by a CompletionStage method.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Exceptionally completes this CompletableFuture with a TimeoutException if not otherwise completed before the given timeout.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T, C : CompletionStage<out T>> C.peek(action: BiConsumer<in T, in Throwable>): C

Peeks the result by executing the given action when this stage completes, returns this stage.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T, C : CompletionStage<out T>> C.peekAsync(action: BiConsumer<in T, in Throwable>): C

Peeks the result by executing the given action when this stage completes, executes the given action using this stage's default asynchronous execution facility, returns this stage.

fun <T, C : CompletionStage<out T>> C.peekAsync(action: BiConsumer<in T, in Throwable>, executor: Executor): C

Peeks the result by executing the given action when this stage completes, executes the given action using the supplied Executor, returns this stage.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the computed result, without waiting.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action using CompletableFuture's default asynchronous execution facility. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action using the supplied executor. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when either given stage success, executes the given action. Otherwise, all two given CompletionStage complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletionStage as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when either given stage success, executes the given action using CompletableFuture's default asynchronous execution facility. Otherwise, all two given CompletionStage complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletionStage as its cause.

Returns a new CompletableFuture that, when either given stage success, executes the given action using the supplied executor. Otherwise, all two given CompletionStage complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletionStage as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed with the two results as arguments to the supplied action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using CompletableFuture's default asynchronous execution facility, with the two results as arguments to the supplied action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using the supplied executor, with the two results as arguments to the supplied action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T, U, V> CompletionStage<out T>.thenCombineFastFail(cf2: CompletionStage<out U>, fn: BiFunction<in T, in U, out V>): CompletableFuture<V>

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed with the two results as arguments to the supplied function. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using CompletableFuture's default asynchronous execution facility, with the two results as arguments to the supplied function. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

fun <T, U, V> CompletionStage<out T>.thenCombineFastFailAsync(cf2: CompletionStage<out U>, fn: BiFunction<in T, in U, out V>, executor: Executor): CompletableFuture<V>

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using the supplied executor, with the two results as arguments to the supplied function. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
-
-
-
-
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/join.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/join.html deleted file mode 100644 index f7d1380a..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/join.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - join - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

join

-
-
fun <T> CompletableFuture<T>.join(timeout: Long, unit: TimeUnit): T

Waits if necessary for at most the given time for the computation to complete, and then retrieves its result value when complete, or throws an (unchecked) exception if completed exceptionally.

NOTE: Calling this method

val result = cf.join(timeout, unit);

is the same as:

val result = cf.copy() // defensive copy to avoid writing this cf unexpectedly
.orTimeout(timeout, unit)
.join();
}

CAUTION: if the wait timed out, this method throws an (unchecked) CompletionException with the TimeoutException as its cause; NOT throws a (checked) TimeoutException like CompletableFuture.get.

Return

the result value

Parameters

timeout

the maximum time to wait

unit

the time unit of the timeout argument

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/minimal-completion-stage.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/minimal-completion-stage.html deleted file mode 100644 index 8503ec96..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/minimal-completion-stage.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - minimalCompletionStage - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

minimalCompletionStage

-
-

Returns a new CompletionStage that is completed normally with the same value as given CompletableFuture when it completes normally, and cannot be independently completed or otherwise used in ways not defined by the methods of interface CompletionStage. If given CompletableFuture completes exceptionally, then the returned CompletionStage completes exceptionally with a CompletionException with given exception as cause.

CAUTION: if run on old Java 8, just return a normal CompletableFuture which is NOT with a minimal CompletionStage.

Return

the new CompletionStage

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/new-incomplete-future.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/new-incomplete-future.html deleted file mode 100644 index face1dd4..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/new-incomplete-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - newIncompleteFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

newIncompleteFuture

-
-

Returns a new incomplete CompletableFuture of the type to be returned by a CompletionStage method.

Return

a new CompletableFuture

Parameters

the type of the value
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/or-timeout.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/or-timeout.html deleted file mode 100644 index 2bd585de..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/or-timeout.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - orTimeout - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

orTimeout

-
-

Exceptionally completes this CompletableFuture with a TimeoutException if not otherwise completed before the given timeout.

Return

this CompletableFuture

Parameters

timeout

how long to wait before completing exceptionally with a TimeoutException, in units of unit

unit

a TimeUnit determining how to interpret the timeout parameter

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/peek-async.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/peek-async.html deleted file mode 100644 index 952d496f..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/peek-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - peekAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

peekAsync

-
-
fun <T, C : CompletionStage<out T>> C.peekAsync(action: BiConsumer<in T, in Throwable>): C

Peeks the result by executing the given action when this stage completes, executes the given action using this stage's default asynchronous execution facility, returns this stage.

When this stage is complete, the given action is invoked with the result (or null if none) and the exception (or null if none) of this stage as arguments. Whether the supplied action throws an exception or not, do NOT affect this cffu.

Unlike method handle and like method whenComplete, this method is not designed to translate completion outcomes.

Return

this stage

Parameters

action

the action to perform

See also


fun <T, C : CompletionStage<out T>> C.peekAsync(action: BiConsumer<in T, in Throwable>, executor: Executor): C

Peeks the result by executing the given action when this stage completes, executes the given action using the supplied Executor, returns this stage.

When this stage is complete, the given action is invoked with the result (or null if none) and the exception (or null if none) of this stage as arguments. Whether the supplied action throws an exception or not, do NOT affect this cffu.

Unlike method handle and like method whenComplete, this method is not designed to translate completion outcomes.

Return

this stage

Parameters

action

the action to perform

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/peek.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/peek.html deleted file mode 100644 index 11a3bc6f..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/peek.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - peek - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

peek

-
-
fun <T, C : CompletionStage<out T>> C.peek(action: BiConsumer<in T, in Throwable>): C

Peeks the result by executing the given action when this stage completes, returns this stage.

When this stage is complete, the given action is invoked with the result (or null if none) and the exception (or null if none) of this stage as arguments. Whether the supplied action throws an exception or not, do NOT affect this cffu.

Unlike method handle and like method whenComplete, this method is not designed to translate completion outcomes.

Return

this stage

Parameters

action

the action to perform

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/result-now.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/result-now.html deleted file mode 100644 index 6aefb291..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/result-now.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - resultNow - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

resultNow

-
-

Returns the computed result, without waiting.

This method is for cases where the caller knows that the task has already completed successfully, for example when filtering Future objects for the successful tasks and using a mapping operation to obtain results.

val results = futures
.filter { it.state() == Future.State.SUCCESS }
.map { it.resultNow() }
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail-async.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail-async.html deleted file mode 100644 index ce6db922..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - runAfterBothFastFailAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

runAfterBothFastFailAsync

-
-

Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action using CompletableFuture's default asynchronous execution facility. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.runAfterBothAsync except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also


Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action using the supplied executor. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.runAfterBothAsync except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail.html deleted file mode 100644 index ee88848b..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - runAfterBothFastFail - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

runAfterBothFastFail

-
-

Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.runAfterBoth except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success-async.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success-async.html deleted file mode 100644 index a0e31d96..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - runAfterEitherSuccessAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

runAfterEitherSuccessAsync

-
-

Returns a new CompletableFuture that, when either given stage success, executes the given action using CompletableFuture's default asynchronous execution facility. Otherwise, all two given CompletionStage complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletionStage as its cause.

This method is the same as CompletableFuture.runAfterEitherAsync except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also


Returns a new CompletableFuture that, when either given stage success, executes the given action using the supplied executor. Otherwise, all two given CompletionStage complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletionStage as its cause.

This method is the same as CompletableFuture.runAfterEitherAsync except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success.html deleted file mode 100644 index 85c05cee..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - runAfterEitherSuccess - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

runAfterEitherSuccess

-
-

Returns a new CompletableFuture that, when either given stage success, executes the given action. Otherwise, all two given CompletionStage complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletionStage as its cause.

This method is the same as CompletableFuture.runAfterEither except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail-async.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail-async.html deleted file mode 100644 index 7d418a87..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - thenAcceptBothFastFailAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

thenAcceptBothFastFailAsync

-
-

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using CompletableFuture's default asynchronous execution facility, with the two results as arguments to the supplied action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.thenAcceptBothAsync except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also


Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using the supplied executor, with the two results as arguments to the supplied action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.thenAcceptBothAsync except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail.html deleted file mode 100644 index 97b6046b..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - thenAcceptBothFastFail - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

thenAcceptBothFastFail

-
-

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed with the two results as arguments to the supplied action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.thenAcceptBoth except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail-async.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail-async.html deleted file mode 100644 index a5bdcdcf..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - thenCombineFastFailAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

thenCombineFastFailAsync

-
-

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using CompletableFuture's default asynchronous execution facility, with the two results as arguments to the supplied function. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.thenCombineAsync except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

fn

the function to use to compute the value of the returned CompletableFuture

See also


fun <T, U, V> CompletionStage<out T>.thenCombineFastFailAsync(cf2: CompletionStage<out U>, fn: BiFunction<in T, in U, out V>, executor: Executor): CompletableFuture<V>

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using the supplied executor, with the two results as arguments to the supplied function. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.thenCombineAsync except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

fn

the function to use to compute the value of the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail.html deleted file mode 100644 index 791d27b7..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - thenCombineFastFail - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

thenCombineFastFail

-
-
fun <T, U, V> CompletionStage<out T>.thenCombineFastFail(cf2: CompletionStage<out U>, fn: BiFunction<in T, in U, out V>): CompletableFuture<V>

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed with the two results as arguments to the supplied function. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.thenCombine except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

fn

the function to use to compute the value of the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html b/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html deleted file mode 100644 index efcf6fa9..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - toCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

toCompletableFuture

-
-

Convert Cffu collection elements to CompletableFuture by Cffu.toCompletableFuture.

This method is the same as CffuFactory.anyOf, providing this method is convenient for method chaining.

See also


Convert Cffu array elements to CompletableFuture by Cffu.toCompletableFuture.

This method is the same as CffuFactory.anyOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha1/cffu-kotlin/package-list b/dokka/1.0.0-Alpha1/cffu-kotlin/package-list deleted file mode 100644 index 9ddc240d..00000000 --- a/dokka/1.0.0-Alpha1/cffu-kotlin/package-list +++ /dev/null @@ -1,107 +0,0 @@ -$dokka.format:html-v1 -$dokka.linkExtension:html -$dokka.location:io.foldright.cffu.kotlin////PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/index.html -$dokka.location:io.foldright.cffu.kotlin//acceptEitherSuccess/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Consumer[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/accept-either-success.html -$dokka.location:io.foldright.cffu.kotlin//acceptEitherSuccessAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Consumer[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/accept-either-success-async.html -$dokka.location:io.foldright.cffu.kotlin//acceptEitherSuccessAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Consumer[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/accept-either-success-async.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.Array[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allOfCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.Array[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOf/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOf/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOf/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOf/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOfFastFail/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOfFastFail/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOfFastFail/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOfFastFail/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//applyToEitherSuccess/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success.html -$dokka.location:io.foldright.cffu.kotlin//applyToEitherSuccessAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success-async.html -$dokka.location:io.foldright.cffu.kotlin//applyToEitherSuccessAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success-async.html -$dokka.location:io.foldright.cffu.kotlin//asCffu/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/as-cffu.html -$dokka.location:io.foldright.cffu.kotlin//asCffu/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/as-cffu.html -$dokka.location:io.foldright.cffu.kotlin//asCffu/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/as-cffu.html -$dokka.location:io.foldright.cffu.kotlin//cffuState/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html -$dokka.location:io.foldright.cffu.kotlin//cffuUnwrap/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html -$dokka.location:io.foldright.cffu.kotlin//cffuUnwrap/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html -$dokka.location:io.foldright.cffu.kotlin//completeAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Supplier[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/complete-async.html -$dokka.location:io.foldright.cffu.kotlin//completeAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Supplier[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/complete-async.html -$dokka.location:io.foldright.cffu.kotlin//completeOnTimeout/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#TypeParam(bounds=[kotlin.Any?])#kotlin.Long#java.util.concurrent.TimeUnit/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/complete-on-timeout.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple2[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple3[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple2[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple3[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component3/io.foldright.cffu.tuple.Tuple3[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component3.html -$dokka.location:io.foldright.cffu.kotlin//component3/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component3.html -$dokka.location:io.foldright.cffu.kotlin//component3/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component3.html -$dokka.location:io.foldright.cffu.kotlin//component4/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component4.html -$dokka.location:io.foldright.cffu.kotlin//component4/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component4.html -$dokka.location:io.foldright.cffu.kotlin//component5/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component5.html -$dokka.location:io.foldright.cffu.kotlin//copy/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/copy.html -$dokka.location:io.foldright.cffu.kotlin//exceptionNow/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exception-now.html -$dokka.location:io.foldright.cffu.kotlin//exceptionallyAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[kotlin.Throwable,TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-async.html -$dokka.location:io.foldright.cffu.kotlin//exceptionallyAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[kotlin.Throwable,TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-async.html -$dokka.location:io.foldright.cffu.kotlin//exceptionallyCompose/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[kotlin.Throwable,java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose.html -$dokka.location:io.foldright.cffu.kotlin//exceptionallyComposeAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[kotlin.Throwable,java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose-async.html -$dokka.location:io.foldright.cffu.kotlin//exceptionallyComposeAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[kotlin.Throwable,java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose-async.html -$dokka.location:io.foldright.cffu.kotlin//join/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#kotlin.Long#java.util.concurrent.TimeUnit/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/join.html -$dokka.location:io.foldright.cffu.kotlin//minimalCompletionStage/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/minimal-completion-stage.html -$dokka.location:io.foldright.cffu.kotlin//newIncompleteFuture/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/new-incomplete-future.html -$dokka.location:io.foldright.cffu.kotlin//orTimeout/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#kotlin.Long#java.util.concurrent.TimeUnit/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/or-timeout.html -$dokka.location:io.foldright.cffu.kotlin//peek/TypeParam(bounds=[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]])#java.util.function.BiConsumer[TypeParam(bounds=[kotlin.Any?]),kotlin.Throwable]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/peek.html -$dokka.location:io.foldright.cffu.kotlin//peekAsync/TypeParam(bounds=[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]])#java.util.function.BiConsumer[TypeParam(bounds=[kotlin.Any?]),kotlin.Throwable]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/peek-async.html -$dokka.location:io.foldright.cffu.kotlin//peekAsync/TypeParam(bounds=[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]])#java.util.function.BiConsumer[TypeParam(bounds=[kotlin.Any?]),kotlin.Throwable]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/peek-async.html -$dokka.location:io.foldright.cffu.kotlin//resultNow/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/result-now.html -$dokka.location:io.foldright.cffu.kotlin//runAfterBothFastFail/java.util.concurrent.CompletionStage[*]#java.util.concurrent.CompletionStage[*]#java.lang.Runnable/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//runAfterBothFastFailAsync/java.util.concurrent.CompletionStage[*]#java.util.concurrent.CompletionStage[*]#java.lang.Runnable#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail-async.html -$dokka.location:io.foldright.cffu.kotlin//runAfterBothFastFailAsync/java.util.concurrent.CompletionStage[*]#java.util.concurrent.CompletionStage[*]#java.lang.Runnable/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail-async.html -$dokka.location:io.foldright.cffu.kotlin//runAfterEitherSuccess/java.util.concurrent.CompletionStage[*]#java.util.concurrent.CompletionStage[*]#java.lang.Runnable/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success.html -$dokka.location:io.foldright.cffu.kotlin//runAfterEitherSuccessAsync/java.util.concurrent.CompletionStage[*]#java.util.concurrent.CompletionStage[*]#java.lang.Runnable#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success-async.html -$dokka.location:io.foldright.cffu.kotlin//runAfterEitherSuccessAsync/java.util.concurrent.CompletionStage[*]#java.util.concurrent.CompletionStage[*]#java.lang.Runnable/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success-async.html -$dokka.location:io.foldright.cffu.kotlin//thenAcceptBothFastFail/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.BiConsumer[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//thenAcceptBothFastFailAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.BiConsumer[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail-async.html -$dokka.location:io.foldright.cffu.kotlin//thenAcceptBothFastFailAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.BiConsumer[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail-async.html -$dokka.location:io.foldright.cffu.kotlin//thenCombineFastFail/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.BiFunction[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//thenCombineFastFailAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.BiFunction[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail-async.html -$dokka.location:io.foldright.cffu.kotlin//thenCombineFastFailAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.BiFunction[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail-async.html -$dokka.location:io.foldright.cffu.kotlin//toCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//toCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html -io.foldright.cffu.kotlin - diff --git a/dokka/1.0.0-Alpha1/images/anchor-copy-button.svg b/dokka/1.0.0-Alpha1/images/anchor-copy-button.svg deleted file mode 100644 index 19c1fa3f..00000000 --- a/dokka/1.0.0-Alpha1/images/anchor-copy-button.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/dokka/1.0.0-Alpha1/images/arrow_down.svg b/dokka/1.0.0-Alpha1/images/arrow_down.svg deleted file mode 100644 index 639aaf12..00000000 --- a/dokka/1.0.0-Alpha1/images/arrow_down.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/dokka/1.0.0-Alpha1/images/burger.svg b/dokka/1.0.0-Alpha1/images/burger.svg deleted file mode 100644 index fcca732b..00000000 --- a/dokka/1.0.0-Alpha1/images/burger.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha1/images/copy-icon.svg b/dokka/1.0.0-Alpha1/images/copy-icon.svg deleted file mode 100644 index 2cb02ec6..00000000 --- a/dokka/1.0.0-Alpha1/images/copy-icon.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/dokka/1.0.0-Alpha1/images/copy-successful-icon.svg b/dokka/1.0.0-Alpha1/images/copy-successful-icon.svg deleted file mode 100644 index c4b95383..00000000 --- a/dokka/1.0.0-Alpha1/images/copy-successful-icon.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/dokka/1.0.0-Alpha1/images/footer-go-to-link.svg b/dokka/1.0.0-Alpha1/images/footer-go-to-link.svg deleted file mode 100644 index a87add7a..00000000 --- a/dokka/1.0.0-Alpha1/images/footer-go-to-link.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/dokka/1.0.0-Alpha1/images/go-to-top-icon.svg b/dokka/1.0.0-Alpha1/images/go-to-top-icon.svg deleted file mode 100644 index abc3d1ce..00000000 --- a/dokka/1.0.0-Alpha1/images/go-to-top-icon.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/dokka/1.0.0-Alpha1/images/homepage.svg b/dokka/1.0.0-Alpha1/images/homepage.svg deleted file mode 100644 index e3c83b1c..00000000 --- a/dokka/1.0.0-Alpha1/images/homepage.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/dokka/1.0.0-Alpha1/images/logo-icon.svg b/dokka/1.0.0-Alpha1/images/logo-icon.svg deleted file mode 100644 index e42f9570..00000000 --- a/dokka/1.0.0-Alpha1/images/logo-icon.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha1/images/nav-icons/abstract-class-kotlin.svg b/dokka/1.0.0-Alpha1/images/nav-icons/abstract-class-kotlin.svg deleted file mode 100644 index 19d6148c..00000000 --- a/dokka/1.0.0-Alpha1/images/nav-icons/abstract-class-kotlin.svg +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha1/images/nav-icons/abstract-class.svg b/dokka/1.0.0-Alpha1/images/nav-icons/abstract-class.svg deleted file mode 100644 index 60182030..00000000 --- a/dokka/1.0.0-Alpha1/images/nav-icons/abstract-class.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha1/images/nav-icons/annotation-kotlin.svg b/dokka/1.0.0-Alpha1/images/nav-icons/annotation-kotlin.svg deleted file mode 100644 index b90f508c..00000000 --- a/dokka/1.0.0-Alpha1/images/nav-icons/annotation-kotlin.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha1/images/nav-icons/annotation.svg b/dokka/1.0.0-Alpha1/images/nav-icons/annotation.svg deleted file mode 100644 index b80c54b4..00000000 --- a/dokka/1.0.0-Alpha1/images/nav-icons/annotation.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha1/images/nav-icons/class-kotlin.svg b/dokka/1.0.0-Alpha1/images/nav-icons/class-kotlin.svg deleted file mode 100644 index 797a2423..00000000 --- a/dokka/1.0.0-Alpha1/images/nav-icons/class-kotlin.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha1/images/nav-icons/class.svg b/dokka/1.0.0-Alpha1/images/nav-icons/class.svg deleted file mode 100644 index 3f1ad167..00000000 --- a/dokka/1.0.0-Alpha1/images/nav-icons/class.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha1/images/nav-icons/enum-kotlin.svg b/dokka/1.0.0-Alpha1/images/nav-icons/enum-kotlin.svg deleted file mode 100644 index 775a7cc9..00000000 --- a/dokka/1.0.0-Alpha1/images/nav-icons/enum-kotlin.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha1/images/nav-icons/enum.svg b/dokka/1.0.0-Alpha1/images/nav-icons/enum.svg deleted file mode 100644 index fa7f2476..00000000 --- a/dokka/1.0.0-Alpha1/images/nav-icons/enum.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha1/images/nav-icons/exception-class.svg b/dokka/1.0.0-Alpha1/images/nav-icons/exception-class.svg deleted file mode 100644 index c0b2bdeb..00000000 --- a/dokka/1.0.0-Alpha1/images/nav-icons/exception-class.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha1/images/nav-icons/field-value.svg b/dokka/1.0.0-Alpha1/images/nav-icons/field-value.svg deleted file mode 100644 index 2771ee56..00000000 --- a/dokka/1.0.0-Alpha1/images/nav-icons/field-value.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - diff --git a/dokka/1.0.0-Alpha1/images/nav-icons/field-variable.svg b/dokka/1.0.0-Alpha1/images/nav-icons/field-variable.svg deleted file mode 100644 index e2d2bbd0..00000000 --- a/dokka/1.0.0-Alpha1/images/nav-icons/field-variable.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - diff --git a/dokka/1.0.0-Alpha1/images/nav-icons/function.svg b/dokka/1.0.0-Alpha1/images/nav-icons/function.svg deleted file mode 100644 index f0da64a0..00000000 --- a/dokka/1.0.0-Alpha1/images/nav-icons/function.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha1/images/nav-icons/interface-kotlin.svg b/dokka/1.0.0-Alpha1/images/nav-icons/interface-kotlin.svg deleted file mode 100644 index 5e163260..00000000 --- a/dokka/1.0.0-Alpha1/images/nav-icons/interface-kotlin.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha1/images/nav-icons/interface.svg b/dokka/1.0.0-Alpha1/images/nav-icons/interface.svg deleted file mode 100644 index 32063ba2..00000000 --- a/dokka/1.0.0-Alpha1/images/nav-icons/interface.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha1/images/nav-icons/object.svg b/dokka/1.0.0-Alpha1/images/nav-icons/object.svg deleted file mode 100644 index 31f0ee3e..00000000 --- a/dokka/1.0.0-Alpha1/images/nav-icons/object.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha1/images/nav-icons/typealias-kotlin.svg b/dokka/1.0.0-Alpha1/images/nav-icons/typealias-kotlin.svg deleted file mode 100644 index f4bb238b..00000000 --- a/dokka/1.0.0-Alpha1/images/nav-icons/typealias-kotlin.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha1/images/theme-toggle.svg b/dokka/1.0.0-Alpha1/images/theme-toggle.svg deleted file mode 100644 index df86202b..00000000 --- a/dokka/1.0.0-Alpha1/images/theme-toggle.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/dokka/1.0.0-Alpha1/index.html b/dokka/1.0.0-Alpha1/index.html index 4c656486..400af7fb 100644 --- a/dokka/1.0.0-Alpha1/index.html +++ b/dokka/1.0.0-Alpha1/index.html @@ -1,99 +1,8 @@ - - - - - cffu-kotlin - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

cffu-kotlin

-
-

Packages

-
-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
- -
-
-
- + + + + + diff --git a/dokka/1.0.0-Alpha1/navigation.html b/dokka/1.0.0-Alpha1/navigation.html deleted file mode 100644 index 1e563431..00000000 --- a/dokka/1.0.0-Alpha1/navigation.html +++ /dev/null @@ -1,154 +0,0 @@ - - diff --git a/dokka/1.0.0-Alpha1/scripts/clipboard.js b/dokka/1.0.0-Alpha1/scripts/clipboard.js deleted file mode 100644 index 7a4f33c5..00000000 --- a/dokka/1.0.0-Alpha1/scripts/clipboard.js +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. - */ - -window.addEventListener('load', () => { - document.querySelectorAll('span.copy-icon').forEach(element => { - element.addEventListener('click', (el) => copyElementsContentToClipboard(element)); - }) - - document.querySelectorAll('span.anchor-icon').forEach(element => { - element.addEventListener('click', (el) => { - if(element.hasAttribute('pointing-to')){ - const location = hrefWithoutCurrentlyUsedAnchor() + '#' + element.getAttribute('pointing-to') - copyTextToClipboard(element, location) - } - }); - }) -}) - -const copyElementsContentToClipboard = (element) => { - const selection = window.getSelection(); - const range = document.createRange(); - range.selectNodeContents(element.parentNode.parentNode); - selection.removeAllRanges(); - selection.addRange(range); - - copyAndShowPopup(element, () => selection.removeAllRanges()) -} - -const copyTextToClipboard = (element, text) => { - var textarea = document.createElement("textarea"); - textarea.textContent = text; - textarea.style.position = "fixed"; - document.body.appendChild(textarea); - textarea.select(); - - copyAndShowPopup(element, () => document.body.removeChild(textarea)) -} - -const copyAndShowPopup = (element, after) => { - try { - document.execCommand('copy'); - element.nextElementSibling.classList.add('active-popup'); - setTimeout(() => { - element.nextElementSibling.classList.remove('active-popup'); - }, 1200); - } catch (e) { - console.error('Failed to write to clipboard:', e) - } - finally { - if(after) after() - } -} - -const hrefWithoutCurrentlyUsedAnchor = () => window.location.href.split('#')[0] - diff --git a/dokka/1.0.0-Alpha1/scripts/main.js b/dokka/1.0.0-Alpha1/scripts/main.js deleted file mode 100644 index ba6c3473..00000000 --- a/dokka/1.0.0-Alpha1/scripts/main.js +++ /dev/null @@ -1,44 +0,0 @@ -(()=>{var e={8527:e=>{e.exports=''},5570:e=>{e.exports=''},107:e=>{e.exports=''},7224:e=>{e.exports=''},538:e=>{e.exports=''},1924:(e,n,t)=>{"use strict";var r=t(210),o=t(5559),i=o(r("String.prototype.indexOf"));e.exports=function(e,n){var t=r(e,!!n);return"function"==typeof t&&i(e,".prototype.")>-1?o(t):t}},5559:(e,n,t)=>{"use strict";var r=t(8612),o=t(210),i=o("%Function.prototype.apply%"),a=o("%Function.prototype.call%"),l=o("%Reflect.apply%",!0)||r.call(a,i),c=o("%Object.getOwnPropertyDescriptor%",!0),u=o("%Object.defineProperty%",!0),s=o("%Math.max%");if(u)try{u({},"a",{value:1})}catch(e){u=null}e.exports=function(e){var n=l(r,a,arguments);if(c&&u){var t=c(n,"length");t.configurable&&u(n,"length",{value:1+s(0,e.length-(arguments.length-1))})}return n};var f=function(){return l(r,i,arguments)};u?u(e.exports,"apply",{value:f}):e.exports.apply=f},4184:(e,n)=>{var t; -/*! - Copyright (c) 2018 Jed Watson. - Licensed under the MIT License (MIT), see - http://jedwatson.github.io/classnames -*/!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],n=0;n{"use strict";e.exports=function(e,n){var t=this,r=t.constructor;return t.options=Object.assign({storeInstancesGlobally:!0},n||{}),t.callbacks={},t.directMap={},t.sequenceLevels={},t.resetTimer=null,t.ignoreNextKeyup=!1,t.ignoreNextKeypress=!1,t.nextExpectedAction=!1,t.element=e,t.addEvents(),t.options.storeInstancesGlobally&&r.instances.push(t),t},e.exports.prototype.bind=t(2207),e.exports.prototype.bindMultiple=t(3396),e.exports.prototype.unbind=t(9208),e.exports.prototype.trigger=t(9855),e.exports.prototype.reset=t(6214),e.exports.prototype.stopCallback=t(3450),e.exports.prototype.handleKey=t(3067),e.exports.prototype.addEvents=t(718),e.exports.prototype.bindSingle=t(8763),e.exports.prototype.getKeyInfo=t(5825),e.exports.prototype.pickBestAction=t(8608),e.exports.prototype.getReverseMap=t(3956),e.exports.prototype.getMatches=t(3373),e.exports.prototype.resetSequences=t(3346),e.exports.prototype.fireCallback=t(2684),e.exports.prototype.bindSequence=t(7103),e.exports.prototype.resetSequenceTimer=t(7309),e.exports.prototype.detach=t(7554),e.exports.instances=[],e.exports.reset=t(1822),e.exports.REVERSE_MAP=null},718:(e,n,t)=>{"use strict";e.exports=function(){var e=this,n=t(4323),r=e.element;e.eventHandler=t(9646).bind(e),n(r,"keypress",e.eventHandler),n(r,"keydown",e.eventHandler),n(r,"keyup",e.eventHandler)}},2207:e=>{"use strict";e.exports=function(e,n,t){return e=e instanceof Array?e:[e],this.bindMultiple(e,n,t),this}},3396:e=>{"use strict";e.exports=function(e,n,t){for(var r=0;r{"use strict";e.exports=function(e,n,r,o){var i=this;function a(n){return function(){i.nextExpectedAction=n,++i.sequenceLevels[e],i.resetSequenceTimer()}}function l(n){var a;i.fireCallback(r,n,e),"keyup"!==o&&(a=t(6770),i.ignoreNextKeyup=a(n)),setTimeout((function(){i.resetSequences()}),10)}i.sequenceLevels[e]=0;for(var c=0;c{"use strict";e.exports=function(e,n,t,r,o){var i=this;i.directMap[e+":"+t]=n;var a,l=(e=e.replace(/\s+/g," ")).split(" ");l.length>1?i.bindSequence(e,l,n,t):(a=i.getKeyInfo(e,t),i.callbacks[a.key]=i.callbacks[a.key]||[],i.getMatches(a.key,a.modifiers,{type:a.action},r,e,o),i.callbacks[a.key][r?"unshift":"push"]({callback:n,modifiers:a.modifiers,action:a.action,seq:r,level:o,combo:e}))}},7554:(e,n,t)=>{var r=t(4323).off;e.exports=function(){var e=this,n=e.element;r(n,"keypress",e.eventHandler),r(n,"keydown",e.eventHandler),r(n,"keyup",e.eventHandler)}},4323:e=>{function n(e,n,t,r){return!e.addEventListener&&(n="on"+n),(e.addEventListener||e.attachEvent).call(e,n,t,r),t}e.exports=n,e.exports.on=n,e.exports.off=function(e,n,t,r){return!e.removeEventListener&&(n="on"+n),(e.removeEventListener||e.detachEvent).call(e,n,t,r),t}},2684:(e,n,t)=>{"use strict";e.exports=function(e,n,r,o){this.stopCallback(n,n.target||n.srcElement,r,o)||!1===e(n,r)&&(t(1350)(n),t(6103)(n))}},5825:(e,n,t)=>{"use strict";e.exports=function(e,n){var r,o,i,a,l,c,u=[];for(r=t(4520)(e),a=t(7549),l=t(5355),c=t(8581),i=0;i{"use strict";e.exports=function(e,n,r,o,i,a){var l,c,u,s,f=this,p=[],d=r.type;"keypress"!==d||r.code&&"Arrow"===r.code.slice(0,5)||(f.callbacks["any-character"]||[]).forEach((function(e){p.push(e)}));if(!f.callbacks[e])return p;for(u=t(8581),"keyup"===d&&u(e)&&(n=[e]),l=0;l{"use strict";e.exports=function(){var e,n=this.constructor;if(!n.REVERSE_MAP)for(var r in n.REVERSE_MAP={},e=t(4766))r>95&&r<112||e.hasOwnProperty(r)&&(n.REVERSE_MAP[e[r]]=r);return n.REVERSE_MAP}},3067:(e,n,t)=>{"use strict";e.exports=function(e,n,r){var o,i,a,l,c=this,u={},s=0,f=!1;for(o=c.getMatches(e,n,r),i=0;i{"use strict";e.exports=function(e){var n,r=this;"number"!=typeof e.which&&(e.which=e.keyCode);var o=t(6770)(e);void 0!==o&&("keyup"!==e.type||r.ignoreNextKeyup!==o?(n=t(4610),r.handleKey(o,n(e),e)):r.ignoreNextKeyup=!1)}},5532:e=>{"use strict";e.exports=function(e,n){return e.sort().join(",")===n.sort().join(",")}},8608:e=>{"use strict";e.exports=function(e,n,t){return t||(t=this.getReverseMap()[e]?"keydown":"keypress"),"keypress"===t&&n.length&&(t="keydown"),t}},6214:e=>{"use strict";e.exports=function(){return this.callbacks={},this.directMap={},this}},7309:e=>{"use strict";e.exports=function(){var e=this;clearTimeout(e.resetTimer),e.resetTimer=setTimeout((function(){e.resetSequences()}),1e3)}},3346:e=>{"use strict";e.exports=function(e){var n=this;e=e||{};var t,r=!1;for(t in n.sequenceLevels)e[t]?r=!0:n.sequenceLevels[t]=0;r||(n.nextExpectedAction=!1)}},3450:e=>{"use strict";e.exports=function(e,n){if((" "+n.className+" ").indexOf(" combokeys ")>-1)return!1;var t=n.tagName.toLowerCase();return"input"===t||"select"===t||"textarea"===t||n.isContentEditable}},9855:e=>{"use strict";e.exports=function(e,n){return this.directMap[e+":"+n]&&this.directMap[e+":"+n]({},e),this}},9208:e=>{"use strict";e.exports=function(e,n){return this.bind(e,(function(){}),n)}},1822:e=>{"use strict";e.exports=function(){this.instances.forEach((function(e){e.reset()}))}},6770:(e,n,t)=>{"use strict";e.exports=function(e){var n,r;if(n=t(4766),r=t(5295),"keypress"===e.type){var o=String.fromCharCode(e.which);return e.shiftKey||(o=o.toLowerCase()),o}return void 0!==n[e.which]?n[e.which]:void 0!==r[e.which]?r[e.which]:String.fromCharCode(e.which).toLowerCase()}},4610:e=>{"use strict";e.exports=function(e){var n=[];return e.shiftKey&&n.push("shift"),e.altKey&&n.push("alt"),e.ctrlKey&&n.push("ctrl"),e.metaKey&&n.push("meta"),n}},8581:e=>{"use strict";e.exports=function(e){return"shift"===e||"ctrl"===e||"alt"===e||"meta"===e}},4520:e=>{"use strict";e.exports=function(e){return"+"===e?["+"]:e.split("+")}},1350:e=>{"use strict";e.exports=function(e){e.preventDefault?e.preventDefault():e.returnValue=!1}},5355:e=>{"use strict";e.exports={"~":"`","!":"1","@":"2","#":"3",$:"4","%":"5","^":"6","&":"7","*":"8","(":"9",")":"0",_:"-","+":"=",":":";",'"':"'","<":",",">":".","?":"/","|":"\\"}},7549:e=>{"use strict";e.exports={option:"alt",command:"meta",return:"enter",escape:"esc",mod:/Mac|iPod|iPhone|iPad/.test(navigator.platform)?"meta":"ctrl"}},5295:e=>{"use strict";e.exports={106:"*",107:"plus",109:"minus",110:".",111:"/",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"}},4766:e=>{"use strict";e.exports={8:"backspace",9:"tab",13:"enter",16:"shift",17:"ctrl",18:"alt",20:"capslock",27:"esc",32:"space",33:"pageup",34:"pagedown",35:"end",36:"home",37:"left",38:"up",39:"right",40:"down",45:"ins",46:"del",91:"meta",93:"meta",173:"minus",187:"plus",189:"minus",224:"meta"};for(var n=1;n<20;++n)e.exports[111+n]="f"+n;for(n=0;n<=9;++n)e.exports[n+96]=n},6103:e=>{"use strict";e.exports=function(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0}},3362:()=>{var e;!function(){var e=Math.PI,n=2*e,t=e/180,r=document.createElement("div");document.head.appendChild(r);var o=self.ConicGradient=function(e){o.all.push(this),e=e||{},this.canvas=document.createElement("canvas"),this.context=this.canvas.getContext("2d"),this.repeating=!!e.repeating,this.size=e.size||Math.max(innerWidth,innerHeight),this.canvas.width=this.canvas.height=this.size;var n=e.stops;this.stops=(n||"").split(/\s*,(?![^(]*\))\s*/),this.from=0;for(var t=0;t0){var i=this.stops[0].clone();i.pos=0,this.stops.unshift(i)}if(void 0===this.stops[this.stops.length-1].pos)this.stops[this.stops.length-1].pos=1;else if(!this.repeating&&this.stops[this.stops.length-1].pos<1){var a=this.stops[this.stops.length-1].clone();a.pos=1,this.stops.push(a)}if(this.stops.forEach((function(e,n){if(void 0===e.pos){for(var t=n+1;this[t];t++)if(void 0!==this[t].pos){e.pos=this[n-1].pos+(this[t].pos-this[n-1].pos)/(t-n+1);break}}else n>0&&(e.pos=Math.max(e.pos,this[n-1].pos))}),this.stops),this.repeating){var l=(n=this.stops.slice())[n.length-1].pos-n[0].pos;for(t=0;this.stops[this.stops.length-1].pos<1&&t<1e4;t++)for(var c=0;c'},get png(){return this.canvas.toDataURL()},get r(){return Math.sqrt(2)*this.size/2},paint:function(){var e,n,r,o=this.context,i=this.r,a=this.size/2,l=0,c=this.stops[l];o.translate(this.size/2,this.size/2),o.rotate(-90*t),o.rotate(this.from*t),o.translate(-this.size/2,-this.size/2);for(var u=0;u<360;){if(u/360+1e-5>=c.pos){do{e=c,l++,c=this.stops[l]}while(c&&c!=e&&c.pos===e.pos);if(!c)break;var s=e.color+""==c.color+""&&e!=c;n=e.color.map((function(e,n){return c.color[n]-e}))}r=(u/360-e.pos)/(c.pos-e.pos);var f=s?c.color:n.map((function(n,t){var o=n*r+e.color[t];return t<3?255&o:o}));if(o.fillStyle="rgba("+f.join(",")+")",o.beginPath(),o.moveTo(a,a),s)var p=360*(c.pos-e.pos);else p=.5;var d=u*t,h=(d=Math.min(360*t,d))+p*t;h=Math.min(360*t,h+.02),o.arc(a,a,i,d,h),o.closePath(),o.fill(),u+=p}}},o.ColorStop=function(e,t){if(this.gradient=e,t){var r=t.match(/^(.+?)(?:\s+([\d.]+)(%|deg|turn|grad|rad)?)?(?:\s+([\d.]+)(%|deg|turn|grad|rad)?)?\s*$/);if(this.color=o.ColorStop.colorToRGBA(r[1]),r[2]){var i=r[3];"%"==i||"0"===r[2]&&!i?this.pos=r[2]/100:"turn"==i?this.pos=+r[2]:"deg"==i?this.pos=r[2]/360:"grad"==i?this.pos=r[2]/400:"rad"==i&&(this.pos=r[2]/n)}r[4]&&(this.next=new o.ColorStop(e,r[1]+" "+r[4]+r[5]))}},o.ColorStop.prototype={clone:function(){var e=new o.ColorStop(this.gradient);return e.color=this.color,e.pos=this.pos,e},toString:function(){return"rgba("+this.color.join(", ")+") "+100*this.pos+"%"}},o.ColorStop.colorToRGBA=function(e){if(!Array.isArray(e)&&-1==e.indexOf("from")){r.style.color=e;var n=getComputedStyle(r).color.match(/rgba?\(([\d.]+), ([\d.]+), ([\d.]+)(?:, ([\d.]+))?\)/);return n&&(n.shift(),(n=n.map((function(e){return+e})))[3]=isNaN(n[3])?1:n[3]),n||[0,0,0,0]}return e}}(),self.StyleFix&&((e=document.createElement("p")).style.backgroundImage="conic-gradient(white, black)",e.style.backgroundImage=PrefixFree.prefix+"conic-gradient(white, black)",e.style.backgroundImage||StyleFix.register((function(e,n){return e.indexOf("conic-gradient")>-1&&(e=e.replace(/(?:repeating-)?conic-gradient\(\s*((?:\([^()]+\)|[^;()}])+?)\)/g,(function(e,n){return new ConicGradient({stops:n,repeating:e.indexOf("repeating-")>-1})}))),e})))},9662:(e,n,t)=>{var r=t(7854),o=t(614),i=t(6330),a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not a function")}},9483:(e,n,t)=>{var r=t(7854),o=t(4411),i=t(6330),a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not a constructor")}},6077:(e,n,t)=>{var r=t(7854),o=t(614),i=r.String,a=r.TypeError;e.exports=function(e){if("object"==typeof e||o(e))return e;throw a("Can't set "+i(e)+" as a prototype")}},1223:(e,n,t)=>{var r=t(5112),o=t(30),i=t(3070),a=r("unscopables"),l=Array.prototype;null==l[a]&&i.f(l,a,{configurable:!0,value:o(null)}),e.exports=function(e){l[a][e]=!0}},1530:(e,n,t)=>{"use strict";var r=t(8710).charAt;e.exports=function(e,n,t){return n+(t?r(e,n).length:1)}},5787:(e,n,t)=>{var r=t(7854),o=t(7976),i=r.TypeError;e.exports=function(e,n){if(o(n,e))return e;throw i("Incorrect invocation")}},9670:(e,n,t)=>{var r=t(7854),o=t(111),i=r.String,a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not an object")}},7556:(e,n,t)=>{var r=t(7293);e.exports=r((function(){if("function"==typeof ArrayBuffer){var e=new ArrayBuffer(8);Object.isExtensible(e)&&Object.defineProperty(e,"a",{value:8})}}))},8533:(e,n,t)=>{"use strict";var r=t(2092).forEach,o=t(9341)("forEach");e.exports=o?[].forEach:function(e){return r(this,e,arguments.length>1?arguments[1]:void 0)}},8457:(e,n,t)=>{"use strict";var r=t(7854),o=t(9974),i=t(6916),a=t(7908),l=t(3411),c=t(7659),u=t(4411),s=t(6244),f=t(6135),p=t(8554),d=t(1246),h=r.Array;e.exports=function(e){var n=a(e),t=u(this),r=arguments.length,g=r>1?arguments[1]:void 0,v=void 0!==g;v&&(g=o(g,r>2?arguments[2]:void 0));var A,b,m,y,E,_,C=d(n),w=0;if(!C||this==h&&c(C))for(A=s(n),b=t?new this(A):h(A);A>w;w++)_=v?g(n[w],w):n[w],f(b,w,_);else for(E=(y=p(n,C)).next,b=t?new this:[];!(m=i(E,y)).done;w++)_=v?l(y,g,[m.value,w],!0):m.value,f(b,w,_);return b.length=w,b}},1318:(e,n,t)=>{var r=t(5656),o=t(1400),i=t(6244),a=function(e){return function(n,t,a){var l,c=r(n),u=i(c),s=o(a,u);if(e&&t!=t){for(;u>s;)if((l=c[s++])!=l)return!0}else for(;u>s;s++)if((e||s in c)&&c[s]===t)return e||s||0;return!e&&-1}};e.exports={includes:a(!0),indexOf:a(!1)}},2092:(e,n,t)=>{var r=t(9974),o=t(1702),i=t(8361),a=t(7908),l=t(6244),c=t(5417),u=o([].push),s=function(e){var n=1==e,t=2==e,o=3==e,s=4==e,f=6==e,p=7==e,d=5==e||f;return function(h,g,v,A){for(var b,m,y=a(h),E=i(y),_=r(g,v),C=l(E),w=0,x=A||c,k=n?x(h,C):t||p?x(h,0):void 0;C>w;w++)if((d||w in E)&&(m=_(b=E[w],w,y),e))if(n)k[w]=m;else if(m)switch(e){case 3:return!0;case 5:return b;case 6:return w;case 2:u(k,b)}else switch(e){case 4:return!1;case 7:u(k,b)}return f?-1:o||s?s:k}};e.exports={forEach:s(0),map:s(1),filter:s(2),some:s(3),every:s(4),find:s(5),findIndex:s(6),filterReject:s(7)}},1194:(e,n,t)=>{var r=t(7293),o=t(5112),i=t(7392),a=o("species");e.exports=function(e){return i>=51||!r((function(){var n=[];return(n.constructor={})[a]=function(){return{foo:1}},1!==n[e](Boolean).foo}))}},9341:(e,n,t)=>{"use strict";var r=t(7293);e.exports=function(e,n){var t=[][e];return!!t&&r((function(){t.call(null,n||function(){throw 1},1)}))}},3671:(e,n,t)=>{var r=t(7854),o=t(9662),i=t(7908),a=t(8361),l=t(6244),c=r.TypeError,u=function(e){return function(n,t,r,u){o(t);var s=i(n),f=a(s),p=l(s),d=e?p-1:0,h=e?-1:1;if(r<2)for(;;){if(d in f){u=f[d],d+=h;break}if(d+=h,e?d<0:p<=d)throw c("Reduce of empty array with no initial value")}for(;e?d>=0:p>d;d+=h)d in f&&(u=t(u,f[d],d,s));return u}};e.exports={left:u(!1),right:u(!0)}},206:(e,n,t)=>{var r=t(1702);e.exports=r([].slice)},4362:(e,n,t)=>{var r=t(206),o=Math.floor,i=function(e,n){var t=e.length,c=o(t/2);return t<8?a(e,n):l(e,i(r(e,0,c),n),i(r(e,c),n),n)},a=function(e,n){for(var t,r,o=e.length,i=1;i0;)e[r]=e[--r];r!==i++&&(e[r]=t)}return e},l=function(e,n,t,r){for(var o=n.length,i=t.length,a=0,l=0;a{var r=t(7854),o=t(3157),i=t(4411),a=t(111),l=t(5112)("species"),c=r.Array;e.exports=function(e){var n;return o(e)&&(n=e.constructor,(i(n)&&(n===c||o(n.prototype))||a(n)&&null===(n=n[l]))&&(n=void 0)),void 0===n?c:n}},5417:(e,n,t)=>{var r=t(7475);e.exports=function(e,n){return new(r(e))(0===n?0:n)}},3411:(e,n,t)=>{var r=t(9670),o=t(9212);e.exports=function(e,n,t,i){try{return i?n(r(t)[0],t[1]):n(t)}catch(n){o(e,"throw",n)}}},7072:(e,n,t)=>{var r=t(5112)("iterator"),o=!1;try{var i=0,a={next:function(){return{done:!!i++}},return:function(){o=!0}};a[r]=function(){return this},Array.from(a,(function(){throw 2}))}catch(e){}e.exports=function(e,n){if(!n&&!o)return!1;var t=!1;try{var i={};i[r]=function(){return{next:function(){return{done:t=!0}}}},e(i)}catch(e){}return t}},4326:(e,n,t)=>{var r=t(1702),o=r({}.toString),i=r("".slice);e.exports=function(e){return i(o(e),8,-1)}},648:(e,n,t)=>{var r=t(7854),o=t(1694),i=t(614),a=t(4326),l=t(5112)("toStringTag"),c=r.Object,u="Arguments"==a(function(){return arguments}());e.exports=o?a:function(e){var n,t,r;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(t=function(e,n){try{return e[n]}catch(e){}}(n=c(e),l))?t:u?a(n):"Object"==(r=a(n))&&i(n.callee)?"Arguments":r}},5631:(e,n,t)=>{"use strict";var r=t(3070).f,o=t(30),i=t(2248),a=t(9974),l=t(5787),c=t(408),u=t(654),s=t(6340),f=t(9781),p=t(2423).fastKey,d=t(9909),h=d.set,g=d.getterFor;e.exports={getConstructor:function(e,n,t,u){var s=e((function(e,r){l(e,d),h(e,{type:n,index:o(null),first:void 0,last:void 0,size:0}),f||(e.size=0),null!=r&&c(r,e[u],{that:e,AS_ENTRIES:t})})),d=s.prototype,v=g(n),A=function(e,n,t){var r,o,i=v(e),a=b(e,n);return a?a.value=t:(i.last=a={index:o=p(n,!0),key:n,value:t,previous:r=i.last,next:void 0,removed:!1},i.first||(i.first=a),r&&(r.next=a),f?i.size++:e.size++,"F"!==o&&(i.index[o]=a)),e},b=function(e,n){var t,r=v(e),o=p(n);if("F"!==o)return r.index[o];for(t=r.first;t;t=t.next)if(t.key==n)return t};return i(d,{clear:function(){for(var e=v(this),n=e.index,t=e.first;t;)t.removed=!0,t.previous&&(t.previous=t.previous.next=void 0),delete n[t.index],t=t.next;e.first=e.last=void 0,f?e.size=0:this.size=0},delete:function(e){var n=this,t=v(n),r=b(n,e);if(r){var o=r.next,i=r.previous;delete t.index[r.index],r.removed=!0,i&&(i.next=o),o&&(o.previous=i),t.first==r&&(t.first=o),t.last==r&&(t.last=i),f?t.size--:n.size--}return!!r},forEach:function(e){for(var n,t=v(this),r=a(e,arguments.length>1?arguments[1]:void 0);n=n?n.next:t.first;)for(r(n.value,n.key,this);n&&n.removed;)n=n.previous},has:function(e){return!!b(this,e)}}),i(d,t?{get:function(e){var n=b(this,e);return n&&n.value},set:function(e,n){return A(this,0===e?0:e,n)}}:{add:function(e){return A(this,e=0===e?0:e,e)}}),f&&r(d,"size",{get:function(){return v(this).size}}),s},setStrong:function(e,n,t){var r=n+" Iterator",o=g(n),i=g(r);u(e,n,(function(e,n){h(this,{type:r,target:e,state:o(e),kind:n,last:void 0})}),(function(){for(var e=i(this),n=e.kind,t=e.last;t&&t.removed;)t=t.previous;return e.target&&(e.last=t=t?t.next:e.state.first)?"keys"==n?{value:t.key,done:!1}:"values"==n?{value:t.value,done:!1}:{value:[t.key,t.value],done:!1}:(e.target=void 0,{value:void 0,done:!0})}),t?"entries":"values",!t,!0),s(n)}}},9320:(e,n,t)=>{"use strict";var r=t(1702),o=t(2248),i=t(2423).getWeakData,a=t(9670),l=t(111),c=t(5787),u=t(408),s=t(2092),f=t(2597),p=t(9909),d=p.set,h=p.getterFor,g=s.find,v=s.findIndex,A=r([].splice),b=0,m=function(e){return e.frozen||(e.frozen=new y)},y=function(){this.entries=[]},E=function(e,n){return g(e.entries,(function(e){return e[0]===n}))};y.prototype={get:function(e){var n=E(this,e);if(n)return n[1]},has:function(e){return!!E(this,e)},set:function(e,n){var t=E(this,e);t?t[1]=n:this.entries.push([e,n])},delete:function(e){var n=v(this.entries,(function(n){return n[0]===e}));return~n&&A(this.entries,n,1),!!~n}},e.exports={getConstructor:function(e,n,t,r){var s=e((function(e,o){c(e,p),d(e,{type:n,id:b++,frozen:void 0}),null!=o&&u(o,e[r],{that:e,AS_ENTRIES:t})})),p=s.prototype,g=h(n),v=function(e,n,t){var r=g(e),o=i(a(n),!0);return!0===o?m(r).set(n,t):o[r.id]=t,e};return o(p,{delete:function(e){var n=g(this);if(!l(e))return!1;var t=i(e);return!0===t?m(n).delete(e):t&&f(t,n.id)&&delete t[n.id]},has:function(e){var n=g(this);if(!l(e))return!1;var t=i(e);return!0===t?m(n).has(e):t&&f(t,n.id)}}),o(p,t?{get:function(e){var n=g(this);if(l(e)){var t=i(e);return!0===t?m(n).get(e):t?t[n.id]:void 0}},set:function(e,n){return v(this,e,n)}}:{add:function(e){return v(this,e,!0)}}),s}}},7710:(e,n,t)=>{"use strict";var r=t(2109),o=t(7854),i=t(1702),a=t(4705),l=t(1320),c=t(2423),u=t(408),s=t(5787),f=t(614),p=t(111),d=t(7293),h=t(7072),g=t(8003),v=t(9587);e.exports=function(e,n,t){var A=-1!==e.indexOf("Map"),b=-1!==e.indexOf("Weak"),m=A?"set":"add",y=o[e],E=y&&y.prototype,_=y,C={},w=function(e){var n=i(E[e]);l(E,e,"add"==e?function(e){return n(this,0===e?0:e),this}:"delete"==e?function(e){return!(b&&!p(e))&&n(this,0===e?0:e)}:"get"==e?function(e){return b&&!p(e)?void 0:n(this,0===e?0:e)}:"has"==e?function(e){return!(b&&!p(e))&&n(this,0===e?0:e)}:function(e,t){return n(this,0===e?0:e,t),this})};if(a(e,!f(y)||!(b||E.forEach&&!d((function(){(new y).entries().next()})))))_=t.getConstructor(n,e,A,m),c.enable();else if(a(e,!0)){var x=new _,k=x[m](b?{}:-0,1)!=x,S=d((function(){x.has(1)})),O=h((function(e){new y(e)})),B=!b&&d((function(){for(var e=new y,n=5;n--;)e[m](n,n);return!e.has(-0)}));O||((_=n((function(e,n){s(e,E);var t=v(new y,e,_);return null!=n&&u(n,t[m],{that:t,AS_ENTRIES:A}),t}))).prototype=E,E.constructor=_),(S||B)&&(w("delete"),w("has"),A&&w("get")),(B||k)&&w(m),b&&E.clear&&delete E.clear}return C[e]=_,r({global:!0,forced:_!=y},C),g(_,e),b||t.setStrong(_,e,A),_}},9920:(e,n,t)=>{var r=t(2597),o=t(3887),i=t(1236),a=t(3070);e.exports=function(e,n){for(var t=o(n),l=a.f,c=i.f,u=0;u{var r=t(5112)("match");e.exports=function(e){var n=/./;try{"/./"[e](n)}catch(t){try{return n[r]=!1,"/./"[e](n)}catch(e){}}return!1}},8544:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e)!==e.prototype}))},4230:(e,n,t)=>{var r=t(1702),o=t(4488),i=t(1340),a=/"/g,l=r("".replace);e.exports=function(e,n,t,r){var c=i(o(e)),u="<"+n;return""!==t&&(u+=" "+t+'="'+l(i(r),a,""")+'"'),u+">"+c+""}},4994:(e,n,t)=>{"use strict";var r=t(3383).IteratorPrototype,o=t(30),i=t(9114),a=t(8003),l=t(7497),c=function(){return this};e.exports=function(e,n,t){var u=n+" Iterator";return e.prototype=o(r,{next:i(1,t)}),a(e,u,!1,!0),l[u]=c,e}},8880:(e,n,t)=>{var r=t(9781),o=t(3070),i=t(9114);e.exports=r?function(e,n,t){return o.f(e,n,i(1,t))}:function(e,n,t){return e[n]=t,e}},9114:e=>{e.exports=function(e,n){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:n}}},6135:(e,n,t)=>{"use strict";var r=t(4948),o=t(3070),i=t(9114);e.exports=function(e,n,t){var a=r(n);a in e?o.f(e,a,i(0,t)):e[a]=t}},8709:(e,n,t)=>{"use strict";var r=t(7854),o=t(9670),i=t(2140),a=r.TypeError;e.exports=function(e){if(o(this),"string"===e||"default"===e)e="string";else if("number"!==e)throw a("Incorrect hint");return i(this,e)}},654:(e,n,t)=>{"use strict";var r=t(2109),o=t(6916),i=t(1913),a=t(6530),l=t(614),c=t(4994),u=t(9518),s=t(7674),f=t(8003),p=t(8880),d=t(1320),h=t(5112),g=t(7497),v=t(3383),A=a.PROPER,b=a.CONFIGURABLE,m=v.IteratorPrototype,y=v.BUGGY_SAFARI_ITERATORS,E=h("iterator"),_="keys",C="values",w="entries",x=function(){return this};e.exports=function(e,n,t,a,h,v,k){c(t,n,a);var S,O,B,I=function(e){if(e===h&&R)return R;if(!y&&e in j)return j[e];switch(e){case _:case C:case w:return function(){return new t(this,e)}}return function(){return new t(this)}},T=n+" Iterator",P=!1,j=e.prototype,z=j[E]||j["@@iterator"]||h&&j[h],R=!y&&z||I(h),M="Array"==n&&j.entries||z;if(M&&(S=u(M.call(new e)))!==Object.prototype&&S.next&&(i||u(S)===m||(s?s(S,m):l(S[E])||d(S,E,x)),f(S,T,!0,!0),i&&(g[T]=x)),A&&h==C&&z&&z.name!==C&&(!i&&b?p(j,"name",C):(P=!0,R=function(){return o(z,this)})),h)if(O={values:I(C),keys:v?R:I(_),entries:I(w)},k)for(B in O)(y||P||!(B in j))&&d(j,B,O[B]);else r({target:n,proto:!0,forced:y||P},O);return i&&!k||j[E]===R||d(j,E,R,{name:h}),g[n]=R,O}},7235:(e,n,t)=>{var r=t(857),o=t(2597),i=t(6061),a=t(3070).f;e.exports=function(e){var n=r.Symbol||(r.Symbol={});o(n,e)||a(n,e,{value:i.f(e)})}},9781:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},317:(e,n,t)=>{var r=t(7854),o=t(111),i=r.document,a=o(i)&&o(i.createElement);e.exports=function(e){return a?i.createElement(e):{}}},8324:e=>{e.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},8509:(e,n,t)=>{var r=t(317)("span").classList,o=r&&r.constructor&&r.constructor.prototype;e.exports=o===Object.prototype?void 0:o},8886:(e,n,t)=>{var r=t(8113).match(/firefox\/(\d+)/i);e.exports=!!r&&+r[1]},256:(e,n,t)=>{var r=t(8113);e.exports=/MSIE|Trident/.test(r)},5268:(e,n,t)=>{var r=t(4326),o=t(7854);e.exports="process"==r(o.process)},8113:(e,n,t)=>{var r=t(5005);e.exports=r("navigator","userAgent")||""},7392:(e,n,t)=>{var r,o,i=t(7854),a=t(8113),l=i.process,c=i.Deno,u=l&&l.versions||c&&c.version,s=u&&u.v8;s&&(o=(r=s.split("."))[0]>0&&r[0]<4?1:+(r[0]+r[1])),!o&&a&&(!(r=a.match(/Edge\/(\d+)/))||r[1]>=74)&&(r=a.match(/Chrome\/(\d+)/))&&(o=+r[1]),e.exports=o},8008:(e,n,t)=>{var r=t(8113).match(/AppleWebKit\/(\d+)\./);e.exports=!!r&&+r[1]},748:e=>{e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},2109:(e,n,t)=>{var r=t(7854),o=t(1236).f,i=t(8880),a=t(1320),l=t(3505),c=t(9920),u=t(4705);e.exports=function(e,n){var t,s,f,p,d,h=e.target,g=e.global,v=e.stat;if(t=g?r:v?r[h]||l(h,{}):(r[h]||{}).prototype)for(s in n){if(p=n[s],f=e.noTargetGet?(d=o(t,s))&&d.value:t[s],!u(g?s:h+(v?".":"#")+s,e.forced)&&void 0!==f){if(typeof p==typeof f)continue;c(p,f)}(e.sham||f&&f.sham)&&i(p,"sham",!0),a(t,s,p,e)}}},7293:e=>{e.exports=function(e){try{return!!e()}catch(e){return!0}}},7007:(e,n,t)=>{"use strict";t(4916);var r=t(1702),o=t(1320),i=t(2261),a=t(7293),l=t(5112),c=t(8880),u=l("species"),s=RegExp.prototype;e.exports=function(e,n,t,f){var p=l(e),d=!a((function(){var n={};return n[p]=function(){return 7},7!=""[e](n)})),h=d&&!a((function(){var n=!1,t=/a/;return"split"===e&&((t={}).constructor={},t.constructor[u]=function(){return t},t.flags="",t[p]=/./[p]),t.exec=function(){return n=!0,null},t[p](""),!n}));if(!d||!h||t){var g=r(/./[p]),v=n(p,""[e],(function(e,n,t,o,a){var l=r(e),c=n.exec;return c===i||c===s.exec?d&&!a?{done:!0,value:g(n,t,o)}:{done:!0,value:l(t,n,o)}:{done:!1}}));o(String.prototype,e,v[0]),o(s,p,v[1])}f&&c(s[p],"sham",!0)}},6677:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){return Object.isExtensible(Object.preventExtensions({}))}))},2104:e=>{var n=Function.prototype,t=n.apply,r=n.bind,o=n.call;e.exports="object"==typeof Reflect&&Reflect.apply||(r?o.bind(t):function(){return o.apply(t,arguments)})},9974:(e,n,t)=>{var r=t(1702),o=t(9662),i=r(r.bind);e.exports=function(e,n){return o(e),void 0===n?e:i?i(e,n):function(){return e.apply(n,arguments)}}},7065:(e,n,t)=>{"use strict";var r=t(7854),o=t(1702),i=t(9662),a=t(111),l=t(2597),c=t(206),u=r.Function,s=o([].concat),f=o([].join),p={},d=function(e,n,t){if(!l(p,n)){for(var r=[],o=0;o{var n=Function.prototype.call;e.exports=n.bind?n.bind(n):function(){return n.apply(n,arguments)}},6530:(e,n,t)=>{var r=t(9781),o=t(2597),i=Function.prototype,a=r&&Object.getOwnPropertyDescriptor,l=o(i,"name"),c=l&&"something"===function(){}.name,u=l&&(!r||r&&a(i,"name").configurable);e.exports={EXISTS:l,PROPER:c,CONFIGURABLE:u}},1702:e=>{var n=Function.prototype,t=n.bind,r=n.call,o=t&&t.bind(r);e.exports=t?function(e){return e&&o(r,e)}:function(e){return e&&function(){return r.apply(e,arguments)}}},5005:(e,n,t)=>{var r=t(7854),o=t(614),i=function(e){return o(e)?e:void 0};e.exports=function(e,n){return arguments.length<2?i(r[e]):r[e]&&r[e][n]}},1246:(e,n,t)=>{var r=t(648),o=t(8173),i=t(7497),a=t(5112)("iterator");e.exports=function(e){if(null!=e)return o(e,a)||o(e,"@@iterator")||i[r(e)]}},8554:(e,n,t)=>{var r=t(7854),o=t(6916),i=t(9662),a=t(9670),l=t(6330),c=t(1246),u=r.TypeError;e.exports=function(e,n){var t=arguments.length<2?c(e):n;if(i(t))return a(o(t,e));throw u(l(e)+" is not iterable")}},8173:(e,n,t)=>{var r=t(9662);e.exports=function(e,n){var t=e[n];return null==t?void 0:r(t)}},647:(e,n,t)=>{var r=t(1702),o=t(7908),i=Math.floor,a=r("".charAt),l=r("".replace),c=r("".slice),u=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,s=/\$([$&'`]|\d{1,2})/g;e.exports=function(e,n,t,r,f,p){var d=t+e.length,h=r.length,g=s;return void 0!==f&&(f=o(f),g=u),l(p,g,(function(o,l){var u;switch(a(l,0)){case"$":return"$";case"&":return e;case"`":return c(n,0,t);case"'":return c(n,d);case"<":u=f[c(l,1,-1)];break;default:var s=+l;if(0===s)return o;if(s>h){var p=i(s/10);return 0===p?o:p<=h?void 0===r[p-1]?a(l,1):r[p-1]+a(l,1):o}u=r[s-1]}return void 0===u?"":u}))}},7854:(e,n,t)=>{var r=function(e){return e&&e.Math==Math&&e};e.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof t.g&&t.g)||function(){return this}()||Function("return this")()},2597:(e,n,t)=>{var r=t(1702),o=t(7908),i=r({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,n){return i(o(e),n)}},3501:e=>{e.exports={}},490:(e,n,t)=>{var r=t(5005);e.exports=r("document","documentElement")},4664:(e,n,t)=>{var r=t(9781),o=t(7293),i=t(317);e.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},8361:(e,n,t)=>{var r=t(7854),o=t(1702),i=t(7293),a=t(4326),l=r.Object,c=o("".split);e.exports=i((function(){return!l("z").propertyIsEnumerable(0)}))?function(e){return"String"==a(e)?c(e,""):l(e)}:l},9587:(e,n,t)=>{var r=t(614),o=t(111),i=t(7674);e.exports=function(e,n,t){var a,l;return i&&r(a=n.constructor)&&a!==t&&o(l=a.prototype)&&l!==t.prototype&&i(e,l),e}},2788:(e,n,t)=>{var r=t(1702),o=t(614),i=t(5465),a=r(Function.toString);o(i.inspectSource)||(i.inspectSource=function(e){return a(e)}),e.exports=i.inspectSource},2423:(e,n,t)=>{var r=t(2109),o=t(1702),i=t(3501),a=t(111),l=t(2597),c=t(3070).f,u=t(8006),s=t(1156),f=t(2050),p=t(9711),d=t(6677),h=!1,g=p("meta"),v=0,A=function(e){c(e,g,{value:{objectID:"O"+v++,weakData:{}}})},b=e.exports={enable:function(){b.enable=function(){},h=!0;var e=u.f,n=o([].splice),t={};t[g]=1,e(t).length&&(u.f=function(t){for(var r=e(t),o=0,i=r.length;o{var r,o,i,a=t(8536),l=t(7854),c=t(1702),u=t(111),s=t(8880),f=t(2597),p=t(5465),d=t(6200),h=t(3501),g="Object already initialized",v=l.TypeError,A=l.WeakMap;if(a||p.state){var b=p.state||(p.state=new A),m=c(b.get),y=c(b.has),E=c(b.set);r=function(e,n){if(y(b,e))throw new v(g);return n.facade=e,E(b,e,n),n},o=function(e){return m(b,e)||{}},i=function(e){return y(b,e)}}else{var _=d("state");h[_]=!0,r=function(e,n){if(f(e,_))throw new v(g);return n.facade=e,s(e,_,n),n},o=function(e){return f(e,_)?e[_]:{}},i=function(e){return f(e,_)}}e.exports={set:r,get:o,has:i,enforce:function(e){return i(e)?o(e):r(e,{})},getterFor:function(e){return function(n){var t;if(!u(n)||(t=o(n)).type!==e)throw v("Incompatible receiver, "+e+" required");return t}}}},7659:(e,n,t)=>{var r=t(5112),o=t(7497),i=r("iterator"),a=Array.prototype;e.exports=function(e){return void 0!==e&&(o.Array===e||a[i]===e)}},3157:(e,n,t)=>{var r=t(4326);e.exports=Array.isArray||function(e){return"Array"==r(e)}},614:e=>{e.exports=function(e){return"function"==typeof e}},4411:(e,n,t)=>{var r=t(1702),o=t(7293),i=t(614),a=t(648),l=t(5005),c=t(2788),u=function(){},s=[],f=l("Reflect","construct"),p=/^\s*(?:class|function)\b/,d=r(p.exec),h=!p.exec(u),g=function(e){if(!i(e))return!1;try{return f(u,s,e),!0}catch(e){return!1}};e.exports=!f||o((function(){var e;return g(g.call)||!g(Object)||!g((function(){e=!0}))||e}))?function(e){if(!i(e))return!1;switch(a(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}return h||!!d(p,c(e))}:g},4705:(e,n,t)=>{var r=t(7293),o=t(614),i=/#|\.prototype\./,a=function(e,n){var t=c[l(e)];return t==s||t!=u&&(o(n)?r(n):!!n)},l=a.normalize=function(e){return String(e).replace(i,".").toLowerCase()},c=a.data={},u=a.NATIVE="N",s=a.POLYFILL="P";e.exports=a},111:(e,n,t)=>{var r=t(614);e.exports=function(e){return"object"==typeof e?null!==e:r(e)}},1913:e=>{e.exports=!1},7850:(e,n,t)=>{var r=t(111),o=t(4326),i=t(5112)("match");e.exports=function(e){var n;return r(e)&&(void 0!==(n=e[i])?!!n:"RegExp"==o(e))}},2190:(e,n,t)=>{var r=t(7854),o=t(5005),i=t(614),a=t(7976),l=t(3307),c=r.Object;e.exports=l?function(e){return"symbol"==typeof e}:function(e){var n=o("Symbol");return i(n)&&a(n.prototype,c(e))}},408:(e,n,t)=>{var r=t(7854),o=t(9974),i=t(6916),a=t(9670),l=t(6330),c=t(7659),u=t(6244),s=t(7976),f=t(8554),p=t(1246),d=t(9212),h=r.TypeError,g=function(e,n){this.stopped=e,this.result=n},v=g.prototype;e.exports=function(e,n,t){var r,A,b,m,y,E,_,C=t&&t.that,w=!(!t||!t.AS_ENTRIES),x=!(!t||!t.IS_ITERATOR),k=!(!t||!t.INTERRUPTED),S=o(n,C),O=function(e){return r&&d(r,"normal",e),new g(!0,e)},B=function(e){return w?(a(e),k?S(e[0],e[1],O):S(e[0],e[1])):k?S(e,O):S(e)};if(x)r=e;else{if(!(A=p(e)))throw h(l(e)+" is not iterable");if(c(A)){for(b=0,m=u(e);m>b;b++)if((y=B(e[b]))&&s(v,y))return y;return new g(!1)}r=f(e,A)}for(E=r.next;!(_=i(E,r)).done;){try{y=B(_.value)}catch(e){d(r,"throw",e)}if("object"==typeof y&&y&&s(v,y))return y}return new g(!1)}},9212:(e,n,t)=>{var r=t(6916),o=t(9670),i=t(8173);e.exports=function(e,n,t){var a,l;o(e);try{if(!(a=i(e,"return"))){if("throw"===n)throw t;return t}a=r(a,e)}catch(e){l=!0,a=e}if("throw"===n)throw t;if(l)throw a;return o(a),t}},3383:(e,n,t)=>{"use strict";var r,o,i,a=t(7293),l=t(614),c=t(30),u=t(9518),s=t(1320),f=t(5112),p=t(1913),d=f("iterator"),h=!1;[].keys&&("next"in(i=[].keys())?(o=u(u(i)))!==Object.prototype&&(r=o):h=!0),null==r||a((function(){var e={};return r[d].call(e)!==e}))?r={}:p&&(r=c(r)),l(r[d])||s(r,d,(function(){return this})),e.exports={IteratorPrototype:r,BUGGY_SAFARI_ITERATORS:h}},7497:e=>{e.exports={}},6244:(e,n,t)=>{var r=t(7466);e.exports=function(e){return r(e.length)}},133:(e,n,t)=>{var r=t(7392),o=t(7293);e.exports=!!Object.getOwnPropertySymbols&&!o((function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&r&&r<41}))},8536:(e,n,t)=>{var r=t(7854),o=t(614),i=t(2788),a=r.WeakMap;e.exports=o(a)&&/native code/.test(i(a))},3929:(e,n,t)=>{var r=t(7854),o=t(7850),i=r.TypeError;e.exports=function(e){if(o(e))throw i("The method doesn't accept regular expressions");return e}},1574:(e,n,t)=>{"use strict";var r=t(9781),o=t(1702),i=t(6916),a=t(7293),l=t(1956),c=t(5181),u=t(5296),s=t(7908),f=t(8361),p=Object.assign,d=Object.defineProperty,h=o([].concat);e.exports=!p||a((function(){if(r&&1!==p({b:1},p(d({},"a",{enumerable:!0,get:function(){d(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var e={},n={},t=Symbol(),o="abcdefghijklmnopqrst";return e[t]=7,o.split("").forEach((function(e){n[e]=e})),7!=p({},e)[t]||l(p({},n)).join("")!=o}))?function(e,n){for(var t=s(e),o=arguments.length,a=1,p=c.f,d=u.f;o>a;)for(var g,v=f(arguments[a++]),A=p?h(l(v),p(v)):l(v),b=A.length,m=0;b>m;)g=A[m++],r&&!i(d,v,g)||(t[g]=v[g]);return t}:p},30:(e,n,t)=>{var r,o=t(9670),i=t(6048),a=t(748),l=t(3501),c=t(490),u=t(317),s=t(6200),f=s("IE_PROTO"),p=function(){},d=function(e){return" - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

acceptEitherSuccessAsync

-
-

Returns a new CompletionStage that, when either given stage success, is executed using this stage's default asynchronous execution facility, with the corresponding result as argument to the supplied action.

This method is the same as CompletableFuture.acceptEitherAsync except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also


Returns a new CompletionStage that, when either given stage success, is executed using the supplied executor, with the corresponding result as argument to the supplied action.

This method is the same as CompletableFuture.acceptEitherAsync except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

executor

the executor to use for asynchronous execution

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/accept-either-success.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/accept-either-success.html deleted file mode 100644 index c5cb0251..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/accept-either-success.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - acceptEitherSuccess - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

acceptEitherSuccess

-
-

Returns a new CompletableFuture that, when either given stage success, is executed with the corresponding result as argument to the supplied action.

This method is the same as CompletableFuture.acceptEither except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html deleted file mode 100644 index 3fc81985..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allOfCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allOfCffu

-
-
fun Collection<Cffu<*>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is completed when all the given Cffus complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given Cffus are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no Cffus are provided, returns a Cffu completed with the value null.

This method is the same as CffuFactory.allOf, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun Array<out Cffu<*>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is completed when all the given Cffus complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given Cffus are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no Cffus are provided, returns a Cffu completed with the value null.

This method is the same as CffuFactory.allOf, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allOfCffuCf")
fun Collection<CompletableFuture<*>>.allOfCffu(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is completed when all the given CompletableFutures complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given CompletableFutures are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no CompletableFutures are provided, returns a Cffu completed with the value null.

This method is the same as CffuFactory.allOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html deleted file mode 100644 index 48683f4a..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allOfCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allOfCompletableFuture

-
-

Returns a new CompletableFuture that is completed when all the given stages complete. If any of the given stages complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given stages are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If no stages are provided, returns a CompletableFuture completed with the value null.

If you need the results of given stages, prefer below methods:

This method is the same as CompletableFutureUtils.allOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html deleted file mode 100644 index 1a522478..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allOfFastFailCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allOfFastFailCffu

-
-
fun Collection<Cffu<*>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is successful when all the given Cffus success, the results(Cffu<Void>) of the given Cffus are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value null.

This method is the same as CffuFactory.allOfFastFail, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun Array<out Cffu<*>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is successful when all the given Cffus success, the results(Cffu<Void>) of the given Cffus are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value null.

This method is the same as CffuFactory.allOfFastFail, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allOfFastFailCffuCf")
fun Collection<CompletableFuture<*>>.allOfFastFailCffu(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is successful when all the given CompletableFutures success, the results(Cffu<Void>) of the given CompletableFutures are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value null.

This method is the same as CffuFactory.allOfFastFail, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html deleted file mode 100644 index 932e7015..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allOfFastFailCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allOfFastFailCompletableFuture

-
-

Returns a new CompletableFuture that is successful when all the given CompletableFutures success, the results(CompletableFuture<Void>) of the given CompletableFutures are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value null.

If you need the results of given stages, prefer below methods:

This method is the same as CompletableFutureUtils.allOfFastFail, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html deleted file mode 100644 index dc6435bd..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allResultsOfCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allResultsOfCffu

-
-
fun <T> Collection<Cffu<out T>>.allResultsOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu is completed when all the given Cffus complete. If any of the given Cffus complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value empty list.

This method is the same as allOfCffu, except the returned Cffu contains the results of input Cffus.

This method is the same as CffuFactory.allResultsOf, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<out Cffu<out T>>.allResultsOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu is completed when all the given Cffus complete. If any of the given Cffus complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value empty list.

This method is the same as allOfCffu, except the returned Cffu contains the results of input Cffus.

This method is the same as CffuFactory.allResultsOf, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allResultsOfCffuCf")
fun <T> Collection<CompletableFuture<out T>>.allResultsOfCffu(cffuFactory: CffuFactory): Cffu<List<T>>
fun <T> Array<out CompletableFuture<out T>>.allResultsOfCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given CompletableFutures, the new Cffu is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

This method is the same as allOfCffu, except the returned Cffu contains the results of input CompletableFutures.

This method is the same as CffuFactory.allResultsOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-completable-future.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-completable-future.html deleted file mode 100644 index 59350f83..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allResultsOfCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allResultsOfCompletableFuture

-
-

Returns a new CompletableFuture with the results in the same order of all the given CompletableFutures, the returned new CompletableFuture is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value empty list.

This method is the same as allOfCompletableFuture, except the returned CompletableFuture contains the results of input CompletableFutures.

This method is the same as CompletableFutureUtils.allResultsOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html deleted file mode 100644 index 7819de0a..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allResultsOfFastFailCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allResultsOfFastFailCffu

-
-
fun <T> Collection<Cffu<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu success when all the given Cffus success. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

This method is the same as allOfFastFailCffu, except the returned Cffu contains the results of input Cffus.

This method is the same as CffuFactory.allResultsOfFastFail, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<out Cffu<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu success when all the given Cffus success. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

This method is the same as allOfFastFailCffu, except the returned Cffu contains the results of input Cffus.

This method is the same as CffuFactory.allResultsOfFastFail, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allResultsOfFastFailCffuCf")
fun <T> Collection<CompletableFuture<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given CompletableFutures, the new Cffu success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

This method is the same as allOfFastFailCffu, except the returned Cffu contains the results of input Cffus.

This method is the same as CffuFactory.allResultsOfFastFail, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-completable-future.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-completable-future.html deleted file mode 100644 index 82386b21..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allResultsOfFastFailCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allResultsOfFastFailCompletableFuture

-
-

Returns a new CompletableFuture with the results in the same order of all the given CompletableFutures, the new CompletableFuture success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value empty list.

This method is the same as allOfFastFailCompletableFuture, except the returned CompletableFuture contains the results of input CompletableFutures.

This method is the same as CompletableFutureUtils.allResultsOfFastFail, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html deleted file mode 100644 index 536a4f72..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allTupleOfFastFail - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allTupleOfFastFail

-
-

Returns a new CompletableFuture that is successful when the given two CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is successful when the given two CompletableFutures success

See also

Throws

if any of the given CompletableFutures are {@code null}


Returns a new CompletableFuture that is successful when the given three CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is successful when the given three CompletableFutures success

See also

Throws

if any of the given CompletableFutures are {@code null}


Returns a new CompletableFuture that is successful when the given 4 CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is successful when the given 4 CompletableFutures success

See also

Throws

if any of the given CompletableFutures are {@code null}


Returns a new CompletableFuture that is successful when the given 5 CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is successful when the given 5 CompletableFutures success

See also

Throws

if any of the given CompletableFutures are {@code null}

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html deleted file mode 100644 index ccd8a80d..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allTupleOf - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allTupleOf

-
-

Returns a new CompletableFuture that is completed when the given two CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 2 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null


Returns a new CompletableFuture that is completed when the given three CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 3 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null


Returns a new CompletableFuture that is completed when the given 4 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 4 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null


Returns a new CompletableFuture that is completed when the given 5 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 5 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html deleted file mode 100644 index 85720a23..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - anyOfCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

anyOfCffu

-
-
fun <T> Collection<Cffu<out T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

This method is the same as CffuFactory.anyOf, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<out Cffu<out T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

This method is the same as CffuFactory.anyOf, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "anyOfCffuCf")
fun <T> Collection<CompletableFuture<out T>>.anyOfCffu(cffuFactory: CffuFactory): Cffu<T>
fun <T> Array<out CompletableFuture<out T>>.anyOfCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is completed when any of the given CompletableFutures complete, with the same result.

This method is the same as CffuFactory.anyOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html deleted file mode 100644 index da14a5d0..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - anyOfCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

anyOfCompletableFuture

-
-

Returns a new CompletableFuture that is completed when any of the given CompletableFutures complete, with the same result. Otherwise, if it completed exceptionally, the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns an incomplete CompletableFuture.

This method is the same as CompletableFutureUtils.anyOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html deleted file mode 100644 index ca800afe..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - anyOfSuccessCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

anyOfSuccessCffu

-
-
fun <T> Collection<Cffu<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is successful when any of the given Cffus success, with the same result. Otherwise, all the given Cffus complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given Cffus as its cause. If no Cffus are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

This method is the same as CffuFactory.anyOfSuccess, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<out Cffu<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is successful when any of the given Cffus success, with the same result. Otherwise, all the given Cffus complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given Cffus as its cause. If no Cffus are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

This method is the same as CffuFactory.anyOfSuccess, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "anyOfSuccessCffuCf")
fun <T> Collection<CompletableFuture<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory): Cffu<T>
fun <T> Array<out CompletableFuture<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

This method is the same as CffuFactory.anyOfSuccess, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html deleted file mode 100644 index 47354fd7..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - anyOfSuccessCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

anyOfSuccessCompletableFuture

-
-

Returns a new CompletableFuture that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new CompletableFuture that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

This method is the same as CompletableFutureUtils.anyOfSuccess, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success-async.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success-async.html deleted file mode 100644 index 8b8dc642..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - applyToEitherSuccessAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

applyToEitherSuccessAsync

-
-

Returns a new CompletionStage that, when either given stage success, is executed using this stage's default asynchronous execution facility, with the corresponding result as argument to the supplied function.

This method is the same as CompletableFuture.applyToEitherAsync except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

fn

the function to use to compute the value of the returned CompletableFuture

the function's return type

See also


Returns a new CompletionStage that, when either given stage success, is executed using the supplied executor, with the corresponding result as argument to the supplied function.

This method is the same as CompletableFuture.applyToEitherAsync except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

fn

the function to use to compute the value of the returned CompletableFuture

executor

the executor to use for asynchronous execution

the function's return type

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success.html deleted file mode 100644 index e81b0c72..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - applyToEitherSuccess - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

applyToEitherSuccess

-
-

Returns a new CompletionStage that, when either given stage success, is executed with the corresponding result as argument to the supplied function.

This method is the same as CompletableFuture.applyToEither except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

fn

the function to use to compute the value of the returned CompletableFuture

the function's return type

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html deleted file mode 100644 index 7eaff3a1..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - cffuState - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

cffuState

-
-

Returns the computation state(CffuState), this method is equivalent to CompletableFuture.state with java version compatibility logic, so you can invoke in old java 18-.

Return

the computation state

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html deleted file mode 100644 index 1f79898d..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - cffuUnwrap - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

cffuUnwrap

-
-

Unwrap input Cffu collection elements by Cffu.cffuUnwrap.

This method is the same as CffuFactory.cffuArrayUnwrap, providing this method is convenient for method chaining.

See also


Unwrap input Cffu array elements by Cffu.cffuUnwrap.

This method is the same as CffuFactory.cffuArrayUnwrap, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/complete-async.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/complete-async.html deleted file mode 100644 index e581eb64..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/complete-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - completeAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

completeAsync

-
-

Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the default executor.

Return

given CompletableFuture

Parameters

supplier

a function returning the value to be used to complete given CompletableFuture


Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the given executor.

Return

given CompletableFuture

Parameters

supplier

a function returning the value to be used to complete given CompletableFuture

executor

the executor to use for asynchronous execution

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/complete-on-timeout.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/complete-on-timeout.html deleted file mode 100644 index 372f8b8d..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/complete-on-timeout.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - completeOnTimeout - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

completeOnTimeout

-
-

Completes given CompletableFuture with the given value if not otherwise completed before the given timeout.

Return

given CompletableFuture

Parameters

value

the value to use upon timeout

timeout

how long to wait before completing normally with the given value, in units of unit

unit

a TimeUnit determining how to interpret the timeout parameter

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/component1.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/component1.html deleted file mode 100644 index 10d5c9cc..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/component1.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - component1 - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

component1

-
-
operator fun <T1, T2> Tuple2<T1, T2>.component1(): T1
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component1(): T1
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component1(): T1
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component1(): T1
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/component2.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/component2.html deleted file mode 100644 index 1a2daa55..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/component2.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - component2 - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

component2

-
-
operator fun <T1, T2> Tuple2<T1, T2>.component2(): T2
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component2(): T2
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component2(): T2
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component2(): T2
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/component3.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/component3.html deleted file mode 100644 index 96e312de..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/component3.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - component3 - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

component3

-
-
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component3(): T3
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component3(): T3
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component3(): T3
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/component4.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/component4.html deleted file mode 100644 index 112517d2..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/component4.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - component4 - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

component4

-
-
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component4(): T4
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component4(): T4
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/component5.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/component5.html deleted file mode 100644 index bcc0d815..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/component5.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - component5 - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

component5

-
-
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component5(): T5
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/copy.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/copy.html deleted file mode 100644 index ee96d516..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/copy.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - copy - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

copy

-
-

Returns a new CompletableFuture that is completed normally with the same value as this CompletableFuture when it completes normally. If this CompletableFuture completes exceptionally, then the returned CompletableFuture completes exceptionally with a CompletionException with this exception as cause. The behavior is equivalent to thenApply(x -> x). This method may be useful as a form of "defensive copying", to prevent clients from completing, while still being able to arrange dependent actions.

Return

the new CompletableFuture

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/exception-now.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/exception-now.html deleted file mode 100644 index 0e827ae0..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/exception-now.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - exceptionNow - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

exceptionNow

-
-

Returns the exception thrown by the task, without waiting.

This method is for cases where the caller knows that the task has already completed with an exception.

Return

the exception thrown by the task

See also

Throws

if the task has not completed, the task completed normally, or the task was cancelled

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-async.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-async.html deleted file mode 100644 index 4153edf8..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - exceptionallyAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

exceptionallyAsync

-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using given stage's default asynchronous execution facility. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the value of the returned CompletionStage if given CompletionStage completed exceptionally


Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using the supplied Executor. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the value of the returned CompletionStage if given CompletionStage completed exceptionally

executor

the executor to use for asynchronous execution

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose-async.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose-async.html deleted file mode 100644 index 162df6f1..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - exceptionallyComposeAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

exceptionallyComposeAsync

-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using given stage's default asynchronous execution facility.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the returned CompletionStage if given CompletionStage completed exceptionally


Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using the supplied Executor.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the returned CompletionStage if given CompletionStage completed exceptionally

executor

the executor to use for asynchronous execution

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose.html deleted file mode 100644 index 7094bf18..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - exceptionallyCompose - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

exceptionallyCompose

-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the returned CompletionStage if given CompletionStage completed exceptionally

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/index.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/index.html deleted file mode 100644 index ffa4c6b1..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/index.html +++ /dev/null @@ -1,823 +0,0 @@ - - - - - io.foldright.cffu.kotlin - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

Package-level declarations

-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when either given stage success, is executed with the corresponding result as argument to the supplied action.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when either given stage success, is executed using this stage's default asynchronous execution facility, with the corresponding result as argument to the supplied action.

Returns a new CompletionStage that, when either given stage success, is executed using the supplied executor, with the corresponding result as argument to the supplied action.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun Array<out Cffu<*>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>
fun Collection<Cffu<*>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is completed when all the given Cffus complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given Cffus are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no Cffus are provided, returns a Cffu completed with the value null.

@JvmName(name = "allOfCffuCf")
fun Collection<CompletableFuture<*>>.allOfCffu(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is completed when all the given CompletableFutures complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given CompletableFutures are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no CompletableFutures are provided, returns a Cffu completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed when all the given stages complete. If any of the given stages complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given stages are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If no stages are provided, returns a CompletableFuture completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun Array<out Cffu<*>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>
fun Collection<Cffu<*>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is successful when all the given Cffus success, the results(Cffu<Void>) of the given Cffus are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value null.

@JvmName(name = "allOfFastFailCffuCf")
fun Collection<CompletableFuture<*>>.allOfFastFailCffu(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is successful when all the given CompletableFutures success, the results(Cffu<Void>) of the given CompletableFutures are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is successful when all the given CompletableFutures success, the results(CompletableFuture<Void>) of the given CompletableFutures are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<out Cffu<out T>>.allResultsOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>
fun <T> Collection<Cffu<out T>>.allResultsOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu is completed when all the given Cffus complete. If any of the given Cffus complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value empty list.

fun <T> Array<out CompletableFuture<out T>>.allResultsOfCffu(cffuFactory: CffuFactory): Cffu<List<T>>
@JvmName(name = "allResultsOfCffuCf")
fun <T> Collection<CompletableFuture<out T>>.allResultsOfCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given CompletableFutures, the new Cffu is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture with the results in the same order of all the given CompletableFutures, the returned new CompletableFuture is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value empty list.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<out Cffu<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>
fun <T> Collection<Cffu<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu success when all the given Cffus success. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

@JvmName(name = "allResultsOfFastFailCffuCf")
fun <T> Collection<CompletableFuture<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given CompletableFutures, the new Cffu success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture with the results in the same order of all the given CompletableFutures, the new CompletableFuture success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value empty list.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed when the given two CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is completed when the given three CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is completed when the given 4 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is completed when the given 5 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is successful when the given two CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is successful when the given three CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is successful when the given 4 CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is successful when the given 5 CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<out Cffu<out T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>
fun <T> Collection<Cffu<out T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

fun <T> Array<out CompletableFuture<out T>>.anyOfCffu(cffuFactory: CffuFactory): Cffu<T>
@JvmName(name = "anyOfCffuCf")
fun <T> Collection<CompletableFuture<out T>>.anyOfCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is completed when any of the given CompletableFutures complete, with the same result.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed when any of the given CompletableFutures complete, with the same result. Otherwise, if it completed exceptionally, the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns an incomplete CompletableFuture.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<out Cffu<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>
fun <T> Collection<Cffu<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is successful when any of the given Cffus success, with the same result. Otherwise, all the given Cffus complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given Cffus as its cause. If no Cffus are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

fun <T> Array<out CompletableFuture<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory): Cffu<T>
@JvmName(name = "anyOfSuccessCffuCf")
fun <T> Collection<CompletableFuture<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new CompletableFuture that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when either given stage success, is executed with the corresponding result as argument to the supplied function.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when either given stage success, is executed using this stage's default asynchronous execution facility, with the corresponding result as argument to the supplied function.

Returns a new CompletionStage that, when either given stage success, is executed using the supplied executor, with the corresponding result as argument to the supplied function.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the computation state(CffuState), this method is equivalent to CompletableFuture.state with java version compatibility logic, so you can invoke in old java 18-.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Unwrap input Cffu array elements by Cffu.cffuUnwrap.

Unwrap input Cffu collection elements by Cffu.cffuUnwrap.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the default executor.

Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the given executor.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Completes given CompletableFuture with the given value if not otherwise completed before the given timeout.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2> Tuple2<T1, T2>.component1(): T1
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component1(): T1
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component1(): T1
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component1(): T1
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2> Tuple2<T1, T2>.component2(): T2
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component2(): T2
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component2(): T2
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component2(): T2
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component3(): T3
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component3(): T3
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component3(): T3
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component4(): T4
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component4(): T4
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component5(): T5
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed normally with the same value as this CompletableFuture when it completes normally. If this CompletableFuture completes exceptionally, then the returned CompletableFuture completes exceptionally with a CompletionException with this exception as cause. The behavior is equivalent to thenApply(x -> x). This method may be useful as a form of "defensive copying", to prevent clients from completing, while still being able to arrange dependent actions.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using given stage's default asynchronous execution facility. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using the supplied Executor. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using given stage's default asynchronous execution facility.

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using the supplied Executor.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the exception thrown by the task, without waiting.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> CompletableFuture<T>.join(timeout: Long, unit: TimeUnit): T

Waits if necessary for at most the given time for the computation to complete, and then retrieves its result value when complete, or throws an (unchecked) exception if completed exceptionally.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that is completed normally with the same value as given CompletableFuture when it completes normally, and cannot be independently completed or otherwise used in ways not defined by the methods of interface CompletionStage. If given CompletableFuture completes exceptionally, then the returned CompletionStage completes exceptionally with a CompletionException with given exception as cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new incomplete CompletableFuture of the type to be returned by a CompletionStage method.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Exceptionally completes this CompletableFuture with a TimeoutException if not otherwise completed before the given timeout.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T, C : CompletionStage<out T>> C.peek(action: BiConsumer<in T, in Throwable>): C

Peeks the result by executing the given action when this stage completes, returns this stage.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T, C : CompletionStage<out T>> C.peekAsync(action: BiConsumer<in T, in Throwable>): C

Peeks the result by executing the given action when this stage completes, executes the given action using this stage's default asynchronous execution facility, returns this stage.

fun <T, C : CompletionStage<out T>> C.peekAsync(action: BiConsumer<in T, in Throwable>, executor: Executor): C

Peeks the result by executing the given action when this stage completes, executes the given action using the supplied Executor, returns this stage.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the computed result, without waiting.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action using CompletableFuture's default asynchronous execution facility. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action using the supplied executor. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when either given stage success, executes the given action. Otherwise, all two given CompletionStage complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletionStage as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when either given stage success, executes the given action using CompletableFuture's default asynchronous execution facility. Otherwise, all two given CompletionStage complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletionStage as its cause.

Returns a new CompletableFuture that, when either given stage success, executes the given action using the supplied executor. Otherwise, all two given CompletionStage complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletionStage as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed with the two results as arguments to the supplied action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using CompletableFuture's default asynchronous execution facility, with the two results as arguments to the supplied action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using the supplied executor, with the two results as arguments to the supplied action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T, U, V> CompletionStage<out T>.thenCombineFastFail(cf2: CompletionStage<out U>, fn: BiFunction<in T, in U, out V>): CompletableFuture<V>

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed with the two results as arguments to the supplied function. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using CompletableFuture's default asynchronous execution facility, with the two results as arguments to the supplied function. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

fun <T, U, V> CompletionStage<out T>.thenCombineFastFailAsync(cf2: CompletionStage<out U>, fn: BiFunction<in T, in U, out V>, executor: Executor): CompletableFuture<V>

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using the supplied executor, with the two results as arguments to the supplied function. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> CompletionStage<T>.toCffu(cffuFactory: CffuFactory): Cffu<T>
fun <T> Array<out CompletionStage<T>>.toCffu(cffuFactory: CffuFactory): Array<Cffu<T>>

Wrap input CompletableFuture/CompletionStage array elements to Cffu by CffuFactory.toCffu.

Wrap input CompletableFuture/CompletionStage collection elements to Cffu by CffuFactory.toCffu.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
-
-
-
-
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/join.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/join.html deleted file mode 100644 index f7d1380a..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/join.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - join - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

join

-
-
fun <T> CompletableFuture<T>.join(timeout: Long, unit: TimeUnit): T

Waits if necessary for at most the given time for the computation to complete, and then retrieves its result value when complete, or throws an (unchecked) exception if completed exceptionally.

NOTE: Calling this method

val result = cf.join(timeout, unit);

is the same as:

val result = cf.copy() // defensive copy to avoid writing this cf unexpectedly
.orTimeout(timeout, unit)
.join();
}

CAUTION: if the wait timed out, this method throws an (unchecked) CompletionException with the TimeoutException as its cause; NOT throws a (checked) TimeoutException like CompletableFuture.get.

Return

the result value

Parameters

timeout

the maximum time to wait

unit

the time unit of the timeout argument

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/minimal-completion-stage.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/minimal-completion-stage.html deleted file mode 100644 index 8503ec96..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/minimal-completion-stage.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - minimalCompletionStage - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

minimalCompletionStage

-
-

Returns a new CompletionStage that is completed normally with the same value as given CompletableFuture when it completes normally, and cannot be independently completed or otherwise used in ways not defined by the methods of interface CompletionStage. If given CompletableFuture completes exceptionally, then the returned CompletionStage completes exceptionally with a CompletionException with given exception as cause.

CAUTION: if run on old Java 8, just return a normal CompletableFuture which is NOT with a minimal CompletionStage.

Return

the new CompletionStage

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/new-incomplete-future.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/new-incomplete-future.html deleted file mode 100644 index face1dd4..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/new-incomplete-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - newIncompleteFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

newIncompleteFuture

-
-

Returns a new incomplete CompletableFuture of the type to be returned by a CompletionStage method.

Return

a new CompletableFuture

Parameters

the type of the value
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/or-timeout.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/or-timeout.html deleted file mode 100644 index 2bd585de..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/or-timeout.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - orTimeout - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

orTimeout

-
-

Exceptionally completes this CompletableFuture with a TimeoutException if not otherwise completed before the given timeout.

Return

this CompletableFuture

Parameters

timeout

how long to wait before completing exceptionally with a TimeoutException, in units of unit

unit

a TimeUnit determining how to interpret the timeout parameter

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/peek-async.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/peek-async.html deleted file mode 100644 index 952d496f..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/peek-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - peekAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

peekAsync

-
-
fun <T, C : CompletionStage<out T>> C.peekAsync(action: BiConsumer<in T, in Throwable>): C

Peeks the result by executing the given action when this stage completes, executes the given action using this stage's default asynchronous execution facility, returns this stage.

When this stage is complete, the given action is invoked with the result (or null if none) and the exception (or null if none) of this stage as arguments. Whether the supplied action throws an exception or not, do NOT affect this cffu.

Unlike method handle and like method whenComplete, this method is not designed to translate completion outcomes.

Return

this stage

Parameters

action

the action to perform

See also


fun <T, C : CompletionStage<out T>> C.peekAsync(action: BiConsumer<in T, in Throwable>, executor: Executor): C

Peeks the result by executing the given action when this stage completes, executes the given action using the supplied Executor, returns this stage.

When this stage is complete, the given action is invoked with the result (or null if none) and the exception (or null if none) of this stage as arguments. Whether the supplied action throws an exception or not, do NOT affect this cffu.

Unlike method handle and like method whenComplete, this method is not designed to translate completion outcomes.

Return

this stage

Parameters

action

the action to perform

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/peek.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/peek.html deleted file mode 100644 index 11a3bc6f..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/peek.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - peek - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

peek

-
-
fun <T, C : CompletionStage<out T>> C.peek(action: BiConsumer<in T, in Throwable>): C

Peeks the result by executing the given action when this stage completes, returns this stage.

When this stage is complete, the given action is invoked with the result (or null if none) and the exception (or null if none) of this stage as arguments. Whether the supplied action throws an exception or not, do NOT affect this cffu.

Unlike method handle and like method whenComplete, this method is not designed to translate completion outcomes.

Return

this stage

Parameters

action

the action to perform

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/result-now.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/result-now.html deleted file mode 100644 index 6aefb291..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/result-now.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - resultNow - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

resultNow

-
-

Returns the computed result, without waiting.

This method is for cases where the caller knows that the task has already completed successfully, for example when filtering Future objects for the successful tasks and using a mapping operation to obtain results.

val results = futures
.filter { it.state() == Future.State.SUCCESS }
.map { it.resultNow() }
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail-async.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail-async.html deleted file mode 100644 index ce6db922..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - runAfterBothFastFailAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

runAfterBothFastFailAsync

-
-

Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action using CompletableFuture's default asynchronous execution facility. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.runAfterBothAsync except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also


Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action using the supplied executor. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.runAfterBothAsync except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail.html deleted file mode 100644 index ee88848b..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - runAfterBothFastFail - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

runAfterBothFastFail

-
-

Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.runAfterBoth except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success-async.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success-async.html deleted file mode 100644 index a0e31d96..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - runAfterEitherSuccessAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

runAfterEitherSuccessAsync

-
-

Returns a new CompletableFuture that, when either given stage success, executes the given action using CompletableFuture's default asynchronous execution facility. Otherwise, all two given CompletionStage complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletionStage as its cause.

This method is the same as CompletableFuture.runAfterEitherAsync except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also


Returns a new CompletableFuture that, when either given stage success, executes the given action using the supplied executor. Otherwise, all two given CompletionStage complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletionStage as its cause.

This method is the same as CompletableFuture.runAfterEitherAsync except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success.html deleted file mode 100644 index 85c05cee..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - runAfterEitherSuccess - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

runAfterEitherSuccess

-
-

Returns a new CompletableFuture that, when either given stage success, executes the given action. Otherwise, all two given CompletionStage complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletionStage as its cause.

This method is the same as CompletableFuture.runAfterEither except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail-async.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail-async.html deleted file mode 100644 index 7d418a87..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - thenAcceptBothFastFailAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

thenAcceptBothFastFailAsync

-
-

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using CompletableFuture's default asynchronous execution facility, with the two results as arguments to the supplied action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.thenAcceptBothAsync except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also


Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using the supplied executor, with the two results as arguments to the supplied action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.thenAcceptBothAsync except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail.html deleted file mode 100644 index 97b6046b..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - thenAcceptBothFastFail - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

thenAcceptBothFastFail

-
-

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed with the two results as arguments to the supplied action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.thenAcceptBoth except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail-async.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail-async.html deleted file mode 100644 index a5bdcdcf..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - thenCombineFastFailAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

thenCombineFastFailAsync

-
-

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using CompletableFuture's default asynchronous execution facility, with the two results as arguments to the supplied function. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.thenCombineAsync except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

fn

the function to use to compute the value of the returned CompletableFuture

See also


fun <T, U, V> CompletionStage<out T>.thenCombineFastFailAsync(cf2: CompletionStage<out U>, fn: BiFunction<in T, in U, out V>, executor: Executor): CompletableFuture<V>

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using the supplied executor, with the two results as arguments to the supplied function. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.thenCombineAsync except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

fn

the function to use to compute the value of the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail.html deleted file mode 100644 index 791d27b7..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - thenCombineFastFail - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

thenCombineFastFail

-
-
fun <T, U, V> CompletionStage<out T>.thenCombineFastFail(cf2: CompletionStage<out U>, fn: BiFunction<in T, in U, out V>): CompletableFuture<V>

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed with the two results as arguments to the supplied function. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.thenCombine except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

fn

the function to use to compute the value of the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/to-cffu.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/to-cffu.html deleted file mode 100644 index 5e3053ad..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/to-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - toCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

toCffu

-
-
fun <T> CompletionStage<T>.toCffu(cffuFactory: CffuFactory): Cffu<T>

Wrap an existed CompletableFuture/CompletionStage to Cffu.

This method is the same as CffuFactory.toCffu, providing this method is convenient for method chaining.

See also


Wrap input CompletableFuture/CompletionStage collection elements to Cffu by CffuFactory.toCffu.

This method is the same as CffuFactory.toCffuArray, providing this method is convenient for method chaining.

See also


fun <T> Array<out CompletionStage<T>>.toCffu(cffuFactory: CffuFactory): Array<Cffu<T>>

Wrap input CompletableFuture/CompletionStage array elements to Cffu by CffuFactory.toCffu.

This method is the same as CffuFactory.toCffuArray, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html b/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html deleted file mode 100644 index 0153e699..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - toCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

toCompletableFuture

-
-

Convert Cffu collection elements to CompletableFuture by Cffu.toCompletableFuture.

This method is the same as CffuFactory.anyOf, providing this method is convenient for method chaining.

See also


Convert Cffu array elements to CompletableFuture by Cffu.toCompletableFuture.

This method is the same as CffuFactory.anyOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha2/cffu-kotlin/package-list b/dokka/1.0.0-Alpha2/cffu-kotlin/package-list deleted file mode 100644 index 6dfc097b..00000000 --- a/dokka/1.0.0-Alpha2/cffu-kotlin/package-list +++ /dev/null @@ -1,107 +0,0 @@ -$dokka.format:html-v1 -$dokka.linkExtension:html -$dokka.location:io.foldright.cffu.kotlin////PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/index.html -$dokka.location:io.foldright.cffu.kotlin//acceptEitherSuccess/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Consumer[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/accept-either-success.html -$dokka.location:io.foldright.cffu.kotlin//acceptEitherSuccessAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Consumer[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/accept-either-success-async.html -$dokka.location:io.foldright.cffu.kotlin//acceptEitherSuccessAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Consumer[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/accept-either-success-async.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.Array[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allOfCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.Array[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOf/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOf/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOf/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOf/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOfFastFail/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOfFastFail/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOfFastFail/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOfFastFail/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//applyToEitherSuccess/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success.html -$dokka.location:io.foldright.cffu.kotlin//applyToEitherSuccessAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success-async.html -$dokka.location:io.foldright.cffu.kotlin//applyToEitherSuccessAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success-async.html -$dokka.location:io.foldright.cffu.kotlin//cffuState/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html -$dokka.location:io.foldright.cffu.kotlin//cffuUnwrap/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html -$dokka.location:io.foldright.cffu.kotlin//cffuUnwrap/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html -$dokka.location:io.foldright.cffu.kotlin//completeAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Supplier[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/complete-async.html -$dokka.location:io.foldright.cffu.kotlin//completeAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Supplier[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/complete-async.html -$dokka.location:io.foldright.cffu.kotlin//completeOnTimeout/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#TypeParam(bounds=[kotlin.Any?])#kotlin.Long#java.util.concurrent.TimeUnit/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/complete-on-timeout.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple2[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple3[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple2[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple3[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component3/io.foldright.cffu.tuple.Tuple3[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component3.html -$dokka.location:io.foldright.cffu.kotlin//component3/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component3.html -$dokka.location:io.foldright.cffu.kotlin//component3/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component3.html -$dokka.location:io.foldright.cffu.kotlin//component4/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component4.html -$dokka.location:io.foldright.cffu.kotlin//component4/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component4.html -$dokka.location:io.foldright.cffu.kotlin//component5/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component5.html -$dokka.location:io.foldright.cffu.kotlin//copy/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/copy.html -$dokka.location:io.foldright.cffu.kotlin//exceptionNow/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exception-now.html -$dokka.location:io.foldright.cffu.kotlin//exceptionallyAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[kotlin.Throwable,TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-async.html -$dokka.location:io.foldright.cffu.kotlin//exceptionallyAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[kotlin.Throwable,TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-async.html -$dokka.location:io.foldright.cffu.kotlin//exceptionallyCompose/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[kotlin.Throwable,java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose.html -$dokka.location:io.foldright.cffu.kotlin//exceptionallyComposeAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[kotlin.Throwable,java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose-async.html -$dokka.location:io.foldright.cffu.kotlin//exceptionallyComposeAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[kotlin.Throwable,java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose-async.html -$dokka.location:io.foldright.cffu.kotlin//join/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#kotlin.Long#java.util.concurrent.TimeUnit/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/join.html -$dokka.location:io.foldright.cffu.kotlin//minimalCompletionStage/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/minimal-completion-stage.html -$dokka.location:io.foldright.cffu.kotlin//newIncompleteFuture/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/new-incomplete-future.html -$dokka.location:io.foldright.cffu.kotlin//orTimeout/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#kotlin.Long#java.util.concurrent.TimeUnit/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/or-timeout.html -$dokka.location:io.foldright.cffu.kotlin//peek/TypeParam(bounds=[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]])#java.util.function.BiConsumer[TypeParam(bounds=[kotlin.Any?]),kotlin.Throwable]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/peek.html -$dokka.location:io.foldright.cffu.kotlin//peekAsync/TypeParam(bounds=[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]])#java.util.function.BiConsumer[TypeParam(bounds=[kotlin.Any?]),kotlin.Throwable]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/peek-async.html -$dokka.location:io.foldright.cffu.kotlin//peekAsync/TypeParam(bounds=[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]])#java.util.function.BiConsumer[TypeParam(bounds=[kotlin.Any?]),kotlin.Throwable]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/peek-async.html -$dokka.location:io.foldright.cffu.kotlin//resultNow/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/result-now.html -$dokka.location:io.foldright.cffu.kotlin//runAfterBothFastFail/java.util.concurrent.CompletionStage[*]#java.util.concurrent.CompletionStage[*]#java.lang.Runnable/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//runAfterBothFastFailAsync/java.util.concurrent.CompletionStage[*]#java.util.concurrent.CompletionStage[*]#java.lang.Runnable#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail-async.html -$dokka.location:io.foldright.cffu.kotlin//runAfterBothFastFailAsync/java.util.concurrent.CompletionStage[*]#java.util.concurrent.CompletionStage[*]#java.lang.Runnable/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail-async.html -$dokka.location:io.foldright.cffu.kotlin//runAfterEitherSuccess/java.util.concurrent.CompletionStage[*]#java.util.concurrent.CompletionStage[*]#java.lang.Runnable/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success.html -$dokka.location:io.foldright.cffu.kotlin//runAfterEitherSuccessAsync/java.util.concurrent.CompletionStage[*]#java.util.concurrent.CompletionStage[*]#java.lang.Runnable#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success-async.html -$dokka.location:io.foldright.cffu.kotlin//runAfterEitherSuccessAsync/java.util.concurrent.CompletionStage[*]#java.util.concurrent.CompletionStage[*]#java.lang.Runnable/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success-async.html -$dokka.location:io.foldright.cffu.kotlin//thenAcceptBothFastFail/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.BiConsumer[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//thenAcceptBothFastFailAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.BiConsumer[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail-async.html -$dokka.location:io.foldright.cffu.kotlin//thenAcceptBothFastFailAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.BiConsumer[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail-async.html -$dokka.location:io.foldright.cffu.kotlin//thenCombineFastFail/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.BiFunction[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//thenCombineFastFailAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.BiFunction[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail-async.html -$dokka.location:io.foldright.cffu.kotlin//thenCombineFastFailAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.BiFunction[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail-async.html -$dokka.location:io.foldright.cffu.kotlin//toCffu/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/to-cffu.html -$dokka.location:io.foldright.cffu.kotlin//toCffu/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/to-cffu.html -$dokka.location:io.foldright.cffu.kotlin//toCffu/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/to-cffu.html -$dokka.location:io.foldright.cffu.kotlin//toCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//toCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html -io.foldright.cffu.kotlin - diff --git a/dokka/1.0.0-Alpha2/images/anchor-copy-button.svg b/dokka/1.0.0-Alpha2/images/anchor-copy-button.svg deleted file mode 100644 index 19c1fa3f..00000000 --- a/dokka/1.0.0-Alpha2/images/anchor-copy-button.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/dokka/1.0.0-Alpha2/images/arrow_down.svg b/dokka/1.0.0-Alpha2/images/arrow_down.svg deleted file mode 100644 index 639aaf12..00000000 --- a/dokka/1.0.0-Alpha2/images/arrow_down.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/dokka/1.0.0-Alpha2/images/burger.svg b/dokka/1.0.0-Alpha2/images/burger.svg deleted file mode 100644 index fcca732b..00000000 --- a/dokka/1.0.0-Alpha2/images/burger.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha2/images/copy-icon.svg b/dokka/1.0.0-Alpha2/images/copy-icon.svg deleted file mode 100644 index 2cb02ec6..00000000 --- a/dokka/1.0.0-Alpha2/images/copy-icon.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/dokka/1.0.0-Alpha2/images/copy-successful-icon.svg b/dokka/1.0.0-Alpha2/images/copy-successful-icon.svg deleted file mode 100644 index c4b95383..00000000 --- a/dokka/1.0.0-Alpha2/images/copy-successful-icon.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/dokka/1.0.0-Alpha2/images/footer-go-to-link.svg b/dokka/1.0.0-Alpha2/images/footer-go-to-link.svg deleted file mode 100644 index a87add7a..00000000 --- a/dokka/1.0.0-Alpha2/images/footer-go-to-link.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/dokka/1.0.0-Alpha2/images/go-to-top-icon.svg b/dokka/1.0.0-Alpha2/images/go-to-top-icon.svg deleted file mode 100644 index abc3d1ce..00000000 --- a/dokka/1.0.0-Alpha2/images/go-to-top-icon.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/dokka/1.0.0-Alpha2/images/homepage.svg b/dokka/1.0.0-Alpha2/images/homepage.svg deleted file mode 100644 index e3c83b1c..00000000 --- a/dokka/1.0.0-Alpha2/images/homepage.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/dokka/1.0.0-Alpha2/images/logo-icon.svg b/dokka/1.0.0-Alpha2/images/logo-icon.svg deleted file mode 100644 index e42f9570..00000000 --- a/dokka/1.0.0-Alpha2/images/logo-icon.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha2/images/nav-icons/abstract-class-kotlin.svg b/dokka/1.0.0-Alpha2/images/nav-icons/abstract-class-kotlin.svg deleted file mode 100644 index 19d6148c..00000000 --- a/dokka/1.0.0-Alpha2/images/nav-icons/abstract-class-kotlin.svg +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha2/images/nav-icons/abstract-class.svg b/dokka/1.0.0-Alpha2/images/nav-icons/abstract-class.svg deleted file mode 100644 index 60182030..00000000 --- a/dokka/1.0.0-Alpha2/images/nav-icons/abstract-class.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha2/images/nav-icons/annotation-kotlin.svg b/dokka/1.0.0-Alpha2/images/nav-icons/annotation-kotlin.svg deleted file mode 100644 index b90f508c..00000000 --- a/dokka/1.0.0-Alpha2/images/nav-icons/annotation-kotlin.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha2/images/nav-icons/annotation.svg b/dokka/1.0.0-Alpha2/images/nav-icons/annotation.svg deleted file mode 100644 index b80c54b4..00000000 --- a/dokka/1.0.0-Alpha2/images/nav-icons/annotation.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha2/images/nav-icons/class-kotlin.svg b/dokka/1.0.0-Alpha2/images/nav-icons/class-kotlin.svg deleted file mode 100644 index 797a2423..00000000 --- a/dokka/1.0.0-Alpha2/images/nav-icons/class-kotlin.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha2/images/nav-icons/class.svg b/dokka/1.0.0-Alpha2/images/nav-icons/class.svg deleted file mode 100644 index 3f1ad167..00000000 --- a/dokka/1.0.0-Alpha2/images/nav-icons/class.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha2/images/nav-icons/enum-kotlin.svg b/dokka/1.0.0-Alpha2/images/nav-icons/enum-kotlin.svg deleted file mode 100644 index 775a7cc9..00000000 --- a/dokka/1.0.0-Alpha2/images/nav-icons/enum-kotlin.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha2/images/nav-icons/enum.svg b/dokka/1.0.0-Alpha2/images/nav-icons/enum.svg deleted file mode 100644 index fa7f2476..00000000 --- a/dokka/1.0.0-Alpha2/images/nav-icons/enum.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha2/images/nav-icons/exception-class.svg b/dokka/1.0.0-Alpha2/images/nav-icons/exception-class.svg deleted file mode 100644 index c0b2bdeb..00000000 --- a/dokka/1.0.0-Alpha2/images/nav-icons/exception-class.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha2/images/nav-icons/field-value.svg b/dokka/1.0.0-Alpha2/images/nav-icons/field-value.svg deleted file mode 100644 index 2771ee56..00000000 --- a/dokka/1.0.0-Alpha2/images/nav-icons/field-value.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - diff --git a/dokka/1.0.0-Alpha2/images/nav-icons/field-variable.svg b/dokka/1.0.0-Alpha2/images/nav-icons/field-variable.svg deleted file mode 100644 index e2d2bbd0..00000000 --- a/dokka/1.0.0-Alpha2/images/nav-icons/field-variable.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - diff --git a/dokka/1.0.0-Alpha2/images/nav-icons/function.svg b/dokka/1.0.0-Alpha2/images/nav-icons/function.svg deleted file mode 100644 index f0da64a0..00000000 --- a/dokka/1.0.0-Alpha2/images/nav-icons/function.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha2/images/nav-icons/interface-kotlin.svg b/dokka/1.0.0-Alpha2/images/nav-icons/interface-kotlin.svg deleted file mode 100644 index 5e163260..00000000 --- a/dokka/1.0.0-Alpha2/images/nav-icons/interface-kotlin.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha2/images/nav-icons/interface.svg b/dokka/1.0.0-Alpha2/images/nav-icons/interface.svg deleted file mode 100644 index 32063ba2..00000000 --- a/dokka/1.0.0-Alpha2/images/nav-icons/interface.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha2/images/nav-icons/object.svg b/dokka/1.0.0-Alpha2/images/nav-icons/object.svg deleted file mode 100644 index 31f0ee3e..00000000 --- a/dokka/1.0.0-Alpha2/images/nav-icons/object.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha2/images/nav-icons/typealias-kotlin.svg b/dokka/1.0.0-Alpha2/images/nav-icons/typealias-kotlin.svg deleted file mode 100644 index f4bb238b..00000000 --- a/dokka/1.0.0-Alpha2/images/nav-icons/typealias-kotlin.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha2/images/theme-toggle.svg b/dokka/1.0.0-Alpha2/images/theme-toggle.svg deleted file mode 100644 index df86202b..00000000 --- a/dokka/1.0.0-Alpha2/images/theme-toggle.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/dokka/1.0.0-Alpha2/index.html b/dokka/1.0.0-Alpha2/index.html index 4c656486..7b59c6f0 100644 --- a/dokka/1.0.0-Alpha2/index.html +++ b/dokka/1.0.0-Alpha2/index.html @@ -1,99 +1,8 @@ - - - - - cffu-kotlin - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

cffu-kotlin

-
-

Packages

-
-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
- -
-
-
- + + + + + diff --git a/dokka/1.0.0-Alpha2/navigation.html b/dokka/1.0.0-Alpha2/navigation.html deleted file mode 100644 index 97282251..00000000 --- a/dokka/1.0.0-Alpha2/navigation.html +++ /dev/null @@ -1,154 +0,0 @@ - - diff --git a/dokka/1.0.0-Alpha2/scripts/clipboard.js b/dokka/1.0.0-Alpha2/scripts/clipboard.js deleted file mode 100644 index 7a4f33c5..00000000 --- a/dokka/1.0.0-Alpha2/scripts/clipboard.js +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. - */ - -window.addEventListener('load', () => { - document.querySelectorAll('span.copy-icon').forEach(element => { - element.addEventListener('click', (el) => copyElementsContentToClipboard(element)); - }) - - document.querySelectorAll('span.anchor-icon').forEach(element => { - element.addEventListener('click', (el) => { - if(element.hasAttribute('pointing-to')){ - const location = hrefWithoutCurrentlyUsedAnchor() + '#' + element.getAttribute('pointing-to') - copyTextToClipboard(element, location) - } - }); - }) -}) - -const copyElementsContentToClipboard = (element) => { - const selection = window.getSelection(); - const range = document.createRange(); - range.selectNodeContents(element.parentNode.parentNode); - selection.removeAllRanges(); - selection.addRange(range); - - copyAndShowPopup(element, () => selection.removeAllRanges()) -} - -const copyTextToClipboard = (element, text) => { - var textarea = document.createElement("textarea"); - textarea.textContent = text; - textarea.style.position = "fixed"; - document.body.appendChild(textarea); - textarea.select(); - - copyAndShowPopup(element, () => document.body.removeChild(textarea)) -} - -const copyAndShowPopup = (element, after) => { - try { - document.execCommand('copy'); - element.nextElementSibling.classList.add('active-popup'); - setTimeout(() => { - element.nextElementSibling.classList.remove('active-popup'); - }, 1200); - } catch (e) { - console.error('Failed to write to clipboard:', e) - } - finally { - if(after) after() - } -} - -const hrefWithoutCurrentlyUsedAnchor = () => window.location.href.split('#')[0] - diff --git a/dokka/1.0.0-Alpha2/scripts/main.js b/dokka/1.0.0-Alpha2/scripts/main.js deleted file mode 100644 index ba6c3473..00000000 --- a/dokka/1.0.0-Alpha2/scripts/main.js +++ /dev/null @@ -1,44 +0,0 @@ -(()=>{var e={8527:e=>{e.exports=''},5570:e=>{e.exports=''},107:e=>{e.exports=''},7224:e=>{e.exports=''},538:e=>{e.exports=''},1924:(e,n,t)=>{"use strict";var r=t(210),o=t(5559),i=o(r("String.prototype.indexOf"));e.exports=function(e,n){var t=r(e,!!n);return"function"==typeof t&&i(e,".prototype.")>-1?o(t):t}},5559:(e,n,t)=>{"use strict";var r=t(8612),o=t(210),i=o("%Function.prototype.apply%"),a=o("%Function.prototype.call%"),l=o("%Reflect.apply%",!0)||r.call(a,i),c=o("%Object.getOwnPropertyDescriptor%",!0),u=o("%Object.defineProperty%",!0),s=o("%Math.max%");if(u)try{u({},"a",{value:1})}catch(e){u=null}e.exports=function(e){var n=l(r,a,arguments);if(c&&u){var t=c(n,"length");t.configurable&&u(n,"length",{value:1+s(0,e.length-(arguments.length-1))})}return n};var f=function(){return l(r,i,arguments)};u?u(e.exports,"apply",{value:f}):e.exports.apply=f},4184:(e,n)=>{var t; -/*! - Copyright (c) 2018 Jed Watson. - Licensed under the MIT License (MIT), see - http://jedwatson.github.io/classnames -*/!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],n=0;n{"use strict";e.exports=function(e,n){var t=this,r=t.constructor;return t.options=Object.assign({storeInstancesGlobally:!0},n||{}),t.callbacks={},t.directMap={},t.sequenceLevels={},t.resetTimer=null,t.ignoreNextKeyup=!1,t.ignoreNextKeypress=!1,t.nextExpectedAction=!1,t.element=e,t.addEvents(),t.options.storeInstancesGlobally&&r.instances.push(t),t},e.exports.prototype.bind=t(2207),e.exports.prototype.bindMultiple=t(3396),e.exports.prototype.unbind=t(9208),e.exports.prototype.trigger=t(9855),e.exports.prototype.reset=t(6214),e.exports.prototype.stopCallback=t(3450),e.exports.prototype.handleKey=t(3067),e.exports.prototype.addEvents=t(718),e.exports.prototype.bindSingle=t(8763),e.exports.prototype.getKeyInfo=t(5825),e.exports.prototype.pickBestAction=t(8608),e.exports.prototype.getReverseMap=t(3956),e.exports.prototype.getMatches=t(3373),e.exports.prototype.resetSequences=t(3346),e.exports.prototype.fireCallback=t(2684),e.exports.prototype.bindSequence=t(7103),e.exports.prototype.resetSequenceTimer=t(7309),e.exports.prototype.detach=t(7554),e.exports.instances=[],e.exports.reset=t(1822),e.exports.REVERSE_MAP=null},718:(e,n,t)=>{"use strict";e.exports=function(){var e=this,n=t(4323),r=e.element;e.eventHandler=t(9646).bind(e),n(r,"keypress",e.eventHandler),n(r,"keydown",e.eventHandler),n(r,"keyup",e.eventHandler)}},2207:e=>{"use strict";e.exports=function(e,n,t){return e=e instanceof Array?e:[e],this.bindMultiple(e,n,t),this}},3396:e=>{"use strict";e.exports=function(e,n,t){for(var r=0;r{"use strict";e.exports=function(e,n,r,o){var i=this;function a(n){return function(){i.nextExpectedAction=n,++i.sequenceLevels[e],i.resetSequenceTimer()}}function l(n){var a;i.fireCallback(r,n,e),"keyup"!==o&&(a=t(6770),i.ignoreNextKeyup=a(n)),setTimeout((function(){i.resetSequences()}),10)}i.sequenceLevels[e]=0;for(var c=0;c{"use strict";e.exports=function(e,n,t,r,o){var i=this;i.directMap[e+":"+t]=n;var a,l=(e=e.replace(/\s+/g," ")).split(" ");l.length>1?i.bindSequence(e,l,n,t):(a=i.getKeyInfo(e,t),i.callbacks[a.key]=i.callbacks[a.key]||[],i.getMatches(a.key,a.modifiers,{type:a.action},r,e,o),i.callbacks[a.key][r?"unshift":"push"]({callback:n,modifiers:a.modifiers,action:a.action,seq:r,level:o,combo:e}))}},7554:(e,n,t)=>{var r=t(4323).off;e.exports=function(){var e=this,n=e.element;r(n,"keypress",e.eventHandler),r(n,"keydown",e.eventHandler),r(n,"keyup",e.eventHandler)}},4323:e=>{function n(e,n,t,r){return!e.addEventListener&&(n="on"+n),(e.addEventListener||e.attachEvent).call(e,n,t,r),t}e.exports=n,e.exports.on=n,e.exports.off=function(e,n,t,r){return!e.removeEventListener&&(n="on"+n),(e.removeEventListener||e.detachEvent).call(e,n,t,r),t}},2684:(e,n,t)=>{"use strict";e.exports=function(e,n,r,o){this.stopCallback(n,n.target||n.srcElement,r,o)||!1===e(n,r)&&(t(1350)(n),t(6103)(n))}},5825:(e,n,t)=>{"use strict";e.exports=function(e,n){var r,o,i,a,l,c,u=[];for(r=t(4520)(e),a=t(7549),l=t(5355),c=t(8581),i=0;i{"use strict";e.exports=function(e,n,r,o,i,a){var l,c,u,s,f=this,p=[],d=r.type;"keypress"!==d||r.code&&"Arrow"===r.code.slice(0,5)||(f.callbacks["any-character"]||[]).forEach((function(e){p.push(e)}));if(!f.callbacks[e])return p;for(u=t(8581),"keyup"===d&&u(e)&&(n=[e]),l=0;l{"use strict";e.exports=function(){var e,n=this.constructor;if(!n.REVERSE_MAP)for(var r in n.REVERSE_MAP={},e=t(4766))r>95&&r<112||e.hasOwnProperty(r)&&(n.REVERSE_MAP[e[r]]=r);return n.REVERSE_MAP}},3067:(e,n,t)=>{"use strict";e.exports=function(e,n,r){var o,i,a,l,c=this,u={},s=0,f=!1;for(o=c.getMatches(e,n,r),i=0;i{"use strict";e.exports=function(e){var n,r=this;"number"!=typeof e.which&&(e.which=e.keyCode);var o=t(6770)(e);void 0!==o&&("keyup"!==e.type||r.ignoreNextKeyup!==o?(n=t(4610),r.handleKey(o,n(e),e)):r.ignoreNextKeyup=!1)}},5532:e=>{"use strict";e.exports=function(e,n){return e.sort().join(",")===n.sort().join(",")}},8608:e=>{"use strict";e.exports=function(e,n,t){return t||(t=this.getReverseMap()[e]?"keydown":"keypress"),"keypress"===t&&n.length&&(t="keydown"),t}},6214:e=>{"use strict";e.exports=function(){return this.callbacks={},this.directMap={},this}},7309:e=>{"use strict";e.exports=function(){var e=this;clearTimeout(e.resetTimer),e.resetTimer=setTimeout((function(){e.resetSequences()}),1e3)}},3346:e=>{"use strict";e.exports=function(e){var n=this;e=e||{};var t,r=!1;for(t in n.sequenceLevels)e[t]?r=!0:n.sequenceLevels[t]=0;r||(n.nextExpectedAction=!1)}},3450:e=>{"use strict";e.exports=function(e,n){if((" "+n.className+" ").indexOf(" combokeys ")>-1)return!1;var t=n.tagName.toLowerCase();return"input"===t||"select"===t||"textarea"===t||n.isContentEditable}},9855:e=>{"use strict";e.exports=function(e,n){return this.directMap[e+":"+n]&&this.directMap[e+":"+n]({},e),this}},9208:e=>{"use strict";e.exports=function(e,n){return this.bind(e,(function(){}),n)}},1822:e=>{"use strict";e.exports=function(){this.instances.forEach((function(e){e.reset()}))}},6770:(e,n,t)=>{"use strict";e.exports=function(e){var n,r;if(n=t(4766),r=t(5295),"keypress"===e.type){var o=String.fromCharCode(e.which);return e.shiftKey||(o=o.toLowerCase()),o}return void 0!==n[e.which]?n[e.which]:void 0!==r[e.which]?r[e.which]:String.fromCharCode(e.which).toLowerCase()}},4610:e=>{"use strict";e.exports=function(e){var n=[];return e.shiftKey&&n.push("shift"),e.altKey&&n.push("alt"),e.ctrlKey&&n.push("ctrl"),e.metaKey&&n.push("meta"),n}},8581:e=>{"use strict";e.exports=function(e){return"shift"===e||"ctrl"===e||"alt"===e||"meta"===e}},4520:e=>{"use strict";e.exports=function(e){return"+"===e?["+"]:e.split("+")}},1350:e=>{"use strict";e.exports=function(e){e.preventDefault?e.preventDefault():e.returnValue=!1}},5355:e=>{"use strict";e.exports={"~":"`","!":"1","@":"2","#":"3",$:"4","%":"5","^":"6","&":"7","*":"8","(":"9",")":"0",_:"-","+":"=",":":";",'"':"'","<":",",">":".","?":"/","|":"\\"}},7549:e=>{"use strict";e.exports={option:"alt",command:"meta",return:"enter",escape:"esc",mod:/Mac|iPod|iPhone|iPad/.test(navigator.platform)?"meta":"ctrl"}},5295:e=>{"use strict";e.exports={106:"*",107:"plus",109:"minus",110:".",111:"/",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"}},4766:e=>{"use strict";e.exports={8:"backspace",9:"tab",13:"enter",16:"shift",17:"ctrl",18:"alt",20:"capslock",27:"esc",32:"space",33:"pageup",34:"pagedown",35:"end",36:"home",37:"left",38:"up",39:"right",40:"down",45:"ins",46:"del",91:"meta",93:"meta",173:"minus",187:"plus",189:"minus",224:"meta"};for(var n=1;n<20;++n)e.exports[111+n]="f"+n;for(n=0;n<=9;++n)e.exports[n+96]=n},6103:e=>{"use strict";e.exports=function(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0}},3362:()=>{var e;!function(){var e=Math.PI,n=2*e,t=e/180,r=document.createElement("div");document.head.appendChild(r);var o=self.ConicGradient=function(e){o.all.push(this),e=e||{},this.canvas=document.createElement("canvas"),this.context=this.canvas.getContext("2d"),this.repeating=!!e.repeating,this.size=e.size||Math.max(innerWidth,innerHeight),this.canvas.width=this.canvas.height=this.size;var n=e.stops;this.stops=(n||"").split(/\s*,(?![^(]*\))\s*/),this.from=0;for(var t=0;t0){var i=this.stops[0].clone();i.pos=0,this.stops.unshift(i)}if(void 0===this.stops[this.stops.length-1].pos)this.stops[this.stops.length-1].pos=1;else if(!this.repeating&&this.stops[this.stops.length-1].pos<1){var a=this.stops[this.stops.length-1].clone();a.pos=1,this.stops.push(a)}if(this.stops.forEach((function(e,n){if(void 0===e.pos){for(var t=n+1;this[t];t++)if(void 0!==this[t].pos){e.pos=this[n-1].pos+(this[t].pos-this[n-1].pos)/(t-n+1);break}}else n>0&&(e.pos=Math.max(e.pos,this[n-1].pos))}),this.stops),this.repeating){var l=(n=this.stops.slice())[n.length-1].pos-n[0].pos;for(t=0;this.stops[this.stops.length-1].pos<1&&t<1e4;t++)for(var c=0;c'},get png(){return this.canvas.toDataURL()},get r(){return Math.sqrt(2)*this.size/2},paint:function(){var e,n,r,o=this.context,i=this.r,a=this.size/2,l=0,c=this.stops[l];o.translate(this.size/2,this.size/2),o.rotate(-90*t),o.rotate(this.from*t),o.translate(-this.size/2,-this.size/2);for(var u=0;u<360;){if(u/360+1e-5>=c.pos){do{e=c,l++,c=this.stops[l]}while(c&&c!=e&&c.pos===e.pos);if(!c)break;var s=e.color+""==c.color+""&&e!=c;n=e.color.map((function(e,n){return c.color[n]-e}))}r=(u/360-e.pos)/(c.pos-e.pos);var f=s?c.color:n.map((function(n,t){var o=n*r+e.color[t];return t<3?255&o:o}));if(o.fillStyle="rgba("+f.join(",")+")",o.beginPath(),o.moveTo(a,a),s)var p=360*(c.pos-e.pos);else p=.5;var d=u*t,h=(d=Math.min(360*t,d))+p*t;h=Math.min(360*t,h+.02),o.arc(a,a,i,d,h),o.closePath(),o.fill(),u+=p}}},o.ColorStop=function(e,t){if(this.gradient=e,t){var r=t.match(/^(.+?)(?:\s+([\d.]+)(%|deg|turn|grad|rad)?)?(?:\s+([\d.]+)(%|deg|turn|grad|rad)?)?\s*$/);if(this.color=o.ColorStop.colorToRGBA(r[1]),r[2]){var i=r[3];"%"==i||"0"===r[2]&&!i?this.pos=r[2]/100:"turn"==i?this.pos=+r[2]:"deg"==i?this.pos=r[2]/360:"grad"==i?this.pos=r[2]/400:"rad"==i&&(this.pos=r[2]/n)}r[4]&&(this.next=new o.ColorStop(e,r[1]+" "+r[4]+r[5]))}},o.ColorStop.prototype={clone:function(){var e=new o.ColorStop(this.gradient);return e.color=this.color,e.pos=this.pos,e},toString:function(){return"rgba("+this.color.join(", ")+") "+100*this.pos+"%"}},o.ColorStop.colorToRGBA=function(e){if(!Array.isArray(e)&&-1==e.indexOf("from")){r.style.color=e;var n=getComputedStyle(r).color.match(/rgba?\(([\d.]+), ([\d.]+), ([\d.]+)(?:, ([\d.]+))?\)/);return n&&(n.shift(),(n=n.map((function(e){return+e})))[3]=isNaN(n[3])?1:n[3]),n||[0,0,0,0]}return e}}(),self.StyleFix&&((e=document.createElement("p")).style.backgroundImage="conic-gradient(white, black)",e.style.backgroundImage=PrefixFree.prefix+"conic-gradient(white, black)",e.style.backgroundImage||StyleFix.register((function(e,n){return e.indexOf("conic-gradient")>-1&&(e=e.replace(/(?:repeating-)?conic-gradient\(\s*((?:\([^()]+\)|[^;()}])+?)\)/g,(function(e,n){return new ConicGradient({stops:n,repeating:e.indexOf("repeating-")>-1})}))),e})))},9662:(e,n,t)=>{var r=t(7854),o=t(614),i=t(6330),a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not a function")}},9483:(e,n,t)=>{var r=t(7854),o=t(4411),i=t(6330),a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not a constructor")}},6077:(e,n,t)=>{var r=t(7854),o=t(614),i=r.String,a=r.TypeError;e.exports=function(e){if("object"==typeof e||o(e))return e;throw a("Can't set "+i(e)+" as a prototype")}},1223:(e,n,t)=>{var r=t(5112),o=t(30),i=t(3070),a=r("unscopables"),l=Array.prototype;null==l[a]&&i.f(l,a,{configurable:!0,value:o(null)}),e.exports=function(e){l[a][e]=!0}},1530:(e,n,t)=>{"use strict";var r=t(8710).charAt;e.exports=function(e,n,t){return n+(t?r(e,n).length:1)}},5787:(e,n,t)=>{var r=t(7854),o=t(7976),i=r.TypeError;e.exports=function(e,n){if(o(n,e))return e;throw i("Incorrect invocation")}},9670:(e,n,t)=>{var r=t(7854),o=t(111),i=r.String,a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not an object")}},7556:(e,n,t)=>{var r=t(7293);e.exports=r((function(){if("function"==typeof ArrayBuffer){var e=new ArrayBuffer(8);Object.isExtensible(e)&&Object.defineProperty(e,"a",{value:8})}}))},8533:(e,n,t)=>{"use strict";var r=t(2092).forEach,o=t(9341)("forEach");e.exports=o?[].forEach:function(e){return r(this,e,arguments.length>1?arguments[1]:void 0)}},8457:(e,n,t)=>{"use strict";var r=t(7854),o=t(9974),i=t(6916),a=t(7908),l=t(3411),c=t(7659),u=t(4411),s=t(6244),f=t(6135),p=t(8554),d=t(1246),h=r.Array;e.exports=function(e){var n=a(e),t=u(this),r=arguments.length,g=r>1?arguments[1]:void 0,v=void 0!==g;v&&(g=o(g,r>2?arguments[2]:void 0));var A,b,m,y,E,_,C=d(n),w=0;if(!C||this==h&&c(C))for(A=s(n),b=t?new this(A):h(A);A>w;w++)_=v?g(n[w],w):n[w],f(b,w,_);else for(E=(y=p(n,C)).next,b=t?new this:[];!(m=i(E,y)).done;w++)_=v?l(y,g,[m.value,w],!0):m.value,f(b,w,_);return b.length=w,b}},1318:(e,n,t)=>{var r=t(5656),o=t(1400),i=t(6244),a=function(e){return function(n,t,a){var l,c=r(n),u=i(c),s=o(a,u);if(e&&t!=t){for(;u>s;)if((l=c[s++])!=l)return!0}else for(;u>s;s++)if((e||s in c)&&c[s]===t)return e||s||0;return!e&&-1}};e.exports={includes:a(!0),indexOf:a(!1)}},2092:(e,n,t)=>{var r=t(9974),o=t(1702),i=t(8361),a=t(7908),l=t(6244),c=t(5417),u=o([].push),s=function(e){var n=1==e,t=2==e,o=3==e,s=4==e,f=6==e,p=7==e,d=5==e||f;return function(h,g,v,A){for(var b,m,y=a(h),E=i(y),_=r(g,v),C=l(E),w=0,x=A||c,k=n?x(h,C):t||p?x(h,0):void 0;C>w;w++)if((d||w in E)&&(m=_(b=E[w],w,y),e))if(n)k[w]=m;else if(m)switch(e){case 3:return!0;case 5:return b;case 6:return w;case 2:u(k,b)}else switch(e){case 4:return!1;case 7:u(k,b)}return f?-1:o||s?s:k}};e.exports={forEach:s(0),map:s(1),filter:s(2),some:s(3),every:s(4),find:s(5),findIndex:s(6),filterReject:s(7)}},1194:(e,n,t)=>{var r=t(7293),o=t(5112),i=t(7392),a=o("species");e.exports=function(e){return i>=51||!r((function(){var n=[];return(n.constructor={})[a]=function(){return{foo:1}},1!==n[e](Boolean).foo}))}},9341:(e,n,t)=>{"use strict";var r=t(7293);e.exports=function(e,n){var t=[][e];return!!t&&r((function(){t.call(null,n||function(){throw 1},1)}))}},3671:(e,n,t)=>{var r=t(7854),o=t(9662),i=t(7908),a=t(8361),l=t(6244),c=r.TypeError,u=function(e){return function(n,t,r,u){o(t);var s=i(n),f=a(s),p=l(s),d=e?p-1:0,h=e?-1:1;if(r<2)for(;;){if(d in f){u=f[d],d+=h;break}if(d+=h,e?d<0:p<=d)throw c("Reduce of empty array with no initial value")}for(;e?d>=0:p>d;d+=h)d in f&&(u=t(u,f[d],d,s));return u}};e.exports={left:u(!1),right:u(!0)}},206:(e,n,t)=>{var r=t(1702);e.exports=r([].slice)},4362:(e,n,t)=>{var r=t(206),o=Math.floor,i=function(e,n){var t=e.length,c=o(t/2);return t<8?a(e,n):l(e,i(r(e,0,c),n),i(r(e,c),n),n)},a=function(e,n){for(var t,r,o=e.length,i=1;i0;)e[r]=e[--r];r!==i++&&(e[r]=t)}return e},l=function(e,n,t,r){for(var o=n.length,i=t.length,a=0,l=0;a{var r=t(7854),o=t(3157),i=t(4411),a=t(111),l=t(5112)("species"),c=r.Array;e.exports=function(e){var n;return o(e)&&(n=e.constructor,(i(n)&&(n===c||o(n.prototype))||a(n)&&null===(n=n[l]))&&(n=void 0)),void 0===n?c:n}},5417:(e,n,t)=>{var r=t(7475);e.exports=function(e,n){return new(r(e))(0===n?0:n)}},3411:(e,n,t)=>{var r=t(9670),o=t(9212);e.exports=function(e,n,t,i){try{return i?n(r(t)[0],t[1]):n(t)}catch(n){o(e,"throw",n)}}},7072:(e,n,t)=>{var r=t(5112)("iterator"),o=!1;try{var i=0,a={next:function(){return{done:!!i++}},return:function(){o=!0}};a[r]=function(){return this},Array.from(a,(function(){throw 2}))}catch(e){}e.exports=function(e,n){if(!n&&!o)return!1;var t=!1;try{var i={};i[r]=function(){return{next:function(){return{done:t=!0}}}},e(i)}catch(e){}return t}},4326:(e,n,t)=>{var r=t(1702),o=r({}.toString),i=r("".slice);e.exports=function(e){return i(o(e),8,-1)}},648:(e,n,t)=>{var r=t(7854),o=t(1694),i=t(614),a=t(4326),l=t(5112)("toStringTag"),c=r.Object,u="Arguments"==a(function(){return arguments}());e.exports=o?a:function(e){var n,t,r;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(t=function(e,n){try{return e[n]}catch(e){}}(n=c(e),l))?t:u?a(n):"Object"==(r=a(n))&&i(n.callee)?"Arguments":r}},5631:(e,n,t)=>{"use strict";var r=t(3070).f,o=t(30),i=t(2248),a=t(9974),l=t(5787),c=t(408),u=t(654),s=t(6340),f=t(9781),p=t(2423).fastKey,d=t(9909),h=d.set,g=d.getterFor;e.exports={getConstructor:function(e,n,t,u){var s=e((function(e,r){l(e,d),h(e,{type:n,index:o(null),first:void 0,last:void 0,size:0}),f||(e.size=0),null!=r&&c(r,e[u],{that:e,AS_ENTRIES:t})})),d=s.prototype,v=g(n),A=function(e,n,t){var r,o,i=v(e),a=b(e,n);return a?a.value=t:(i.last=a={index:o=p(n,!0),key:n,value:t,previous:r=i.last,next:void 0,removed:!1},i.first||(i.first=a),r&&(r.next=a),f?i.size++:e.size++,"F"!==o&&(i.index[o]=a)),e},b=function(e,n){var t,r=v(e),o=p(n);if("F"!==o)return r.index[o];for(t=r.first;t;t=t.next)if(t.key==n)return t};return i(d,{clear:function(){for(var e=v(this),n=e.index,t=e.first;t;)t.removed=!0,t.previous&&(t.previous=t.previous.next=void 0),delete n[t.index],t=t.next;e.first=e.last=void 0,f?e.size=0:this.size=0},delete:function(e){var n=this,t=v(n),r=b(n,e);if(r){var o=r.next,i=r.previous;delete t.index[r.index],r.removed=!0,i&&(i.next=o),o&&(o.previous=i),t.first==r&&(t.first=o),t.last==r&&(t.last=i),f?t.size--:n.size--}return!!r},forEach:function(e){for(var n,t=v(this),r=a(e,arguments.length>1?arguments[1]:void 0);n=n?n.next:t.first;)for(r(n.value,n.key,this);n&&n.removed;)n=n.previous},has:function(e){return!!b(this,e)}}),i(d,t?{get:function(e){var n=b(this,e);return n&&n.value},set:function(e,n){return A(this,0===e?0:e,n)}}:{add:function(e){return A(this,e=0===e?0:e,e)}}),f&&r(d,"size",{get:function(){return v(this).size}}),s},setStrong:function(e,n,t){var r=n+" Iterator",o=g(n),i=g(r);u(e,n,(function(e,n){h(this,{type:r,target:e,state:o(e),kind:n,last:void 0})}),(function(){for(var e=i(this),n=e.kind,t=e.last;t&&t.removed;)t=t.previous;return e.target&&(e.last=t=t?t.next:e.state.first)?"keys"==n?{value:t.key,done:!1}:"values"==n?{value:t.value,done:!1}:{value:[t.key,t.value],done:!1}:(e.target=void 0,{value:void 0,done:!0})}),t?"entries":"values",!t,!0),s(n)}}},9320:(e,n,t)=>{"use strict";var r=t(1702),o=t(2248),i=t(2423).getWeakData,a=t(9670),l=t(111),c=t(5787),u=t(408),s=t(2092),f=t(2597),p=t(9909),d=p.set,h=p.getterFor,g=s.find,v=s.findIndex,A=r([].splice),b=0,m=function(e){return e.frozen||(e.frozen=new y)},y=function(){this.entries=[]},E=function(e,n){return g(e.entries,(function(e){return e[0]===n}))};y.prototype={get:function(e){var n=E(this,e);if(n)return n[1]},has:function(e){return!!E(this,e)},set:function(e,n){var t=E(this,e);t?t[1]=n:this.entries.push([e,n])},delete:function(e){var n=v(this.entries,(function(n){return n[0]===e}));return~n&&A(this.entries,n,1),!!~n}},e.exports={getConstructor:function(e,n,t,r){var s=e((function(e,o){c(e,p),d(e,{type:n,id:b++,frozen:void 0}),null!=o&&u(o,e[r],{that:e,AS_ENTRIES:t})})),p=s.prototype,g=h(n),v=function(e,n,t){var r=g(e),o=i(a(n),!0);return!0===o?m(r).set(n,t):o[r.id]=t,e};return o(p,{delete:function(e){var n=g(this);if(!l(e))return!1;var t=i(e);return!0===t?m(n).delete(e):t&&f(t,n.id)&&delete t[n.id]},has:function(e){var n=g(this);if(!l(e))return!1;var t=i(e);return!0===t?m(n).has(e):t&&f(t,n.id)}}),o(p,t?{get:function(e){var n=g(this);if(l(e)){var t=i(e);return!0===t?m(n).get(e):t?t[n.id]:void 0}},set:function(e,n){return v(this,e,n)}}:{add:function(e){return v(this,e,!0)}}),s}}},7710:(e,n,t)=>{"use strict";var r=t(2109),o=t(7854),i=t(1702),a=t(4705),l=t(1320),c=t(2423),u=t(408),s=t(5787),f=t(614),p=t(111),d=t(7293),h=t(7072),g=t(8003),v=t(9587);e.exports=function(e,n,t){var A=-1!==e.indexOf("Map"),b=-1!==e.indexOf("Weak"),m=A?"set":"add",y=o[e],E=y&&y.prototype,_=y,C={},w=function(e){var n=i(E[e]);l(E,e,"add"==e?function(e){return n(this,0===e?0:e),this}:"delete"==e?function(e){return!(b&&!p(e))&&n(this,0===e?0:e)}:"get"==e?function(e){return b&&!p(e)?void 0:n(this,0===e?0:e)}:"has"==e?function(e){return!(b&&!p(e))&&n(this,0===e?0:e)}:function(e,t){return n(this,0===e?0:e,t),this})};if(a(e,!f(y)||!(b||E.forEach&&!d((function(){(new y).entries().next()})))))_=t.getConstructor(n,e,A,m),c.enable();else if(a(e,!0)){var x=new _,k=x[m](b?{}:-0,1)!=x,S=d((function(){x.has(1)})),O=h((function(e){new y(e)})),B=!b&&d((function(){for(var e=new y,n=5;n--;)e[m](n,n);return!e.has(-0)}));O||((_=n((function(e,n){s(e,E);var t=v(new y,e,_);return null!=n&&u(n,t[m],{that:t,AS_ENTRIES:A}),t}))).prototype=E,E.constructor=_),(S||B)&&(w("delete"),w("has"),A&&w("get")),(B||k)&&w(m),b&&E.clear&&delete E.clear}return C[e]=_,r({global:!0,forced:_!=y},C),g(_,e),b||t.setStrong(_,e,A),_}},9920:(e,n,t)=>{var r=t(2597),o=t(3887),i=t(1236),a=t(3070);e.exports=function(e,n){for(var t=o(n),l=a.f,c=i.f,u=0;u{var r=t(5112)("match");e.exports=function(e){var n=/./;try{"/./"[e](n)}catch(t){try{return n[r]=!1,"/./"[e](n)}catch(e){}}return!1}},8544:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e)!==e.prototype}))},4230:(e,n,t)=>{var r=t(1702),o=t(4488),i=t(1340),a=/"/g,l=r("".replace);e.exports=function(e,n,t,r){var c=i(o(e)),u="<"+n;return""!==t&&(u+=" "+t+'="'+l(i(r),a,""")+'"'),u+">"+c+""}},4994:(e,n,t)=>{"use strict";var r=t(3383).IteratorPrototype,o=t(30),i=t(9114),a=t(8003),l=t(7497),c=function(){return this};e.exports=function(e,n,t){var u=n+" Iterator";return e.prototype=o(r,{next:i(1,t)}),a(e,u,!1,!0),l[u]=c,e}},8880:(e,n,t)=>{var r=t(9781),o=t(3070),i=t(9114);e.exports=r?function(e,n,t){return o.f(e,n,i(1,t))}:function(e,n,t){return e[n]=t,e}},9114:e=>{e.exports=function(e,n){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:n}}},6135:(e,n,t)=>{"use strict";var r=t(4948),o=t(3070),i=t(9114);e.exports=function(e,n,t){var a=r(n);a in e?o.f(e,a,i(0,t)):e[a]=t}},8709:(e,n,t)=>{"use strict";var r=t(7854),o=t(9670),i=t(2140),a=r.TypeError;e.exports=function(e){if(o(this),"string"===e||"default"===e)e="string";else if("number"!==e)throw a("Incorrect hint");return i(this,e)}},654:(e,n,t)=>{"use strict";var r=t(2109),o=t(6916),i=t(1913),a=t(6530),l=t(614),c=t(4994),u=t(9518),s=t(7674),f=t(8003),p=t(8880),d=t(1320),h=t(5112),g=t(7497),v=t(3383),A=a.PROPER,b=a.CONFIGURABLE,m=v.IteratorPrototype,y=v.BUGGY_SAFARI_ITERATORS,E=h("iterator"),_="keys",C="values",w="entries",x=function(){return this};e.exports=function(e,n,t,a,h,v,k){c(t,n,a);var S,O,B,I=function(e){if(e===h&&R)return R;if(!y&&e in j)return j[e];switch(e){case _:case C:case w:return function(){return new t(this,e)}}return function(){return new t(this)}},T=n+" Iterator",P=!1,j=e.prototype,z=j[E]||j["@@iterator"]||h&&j[h],R=!y&&z||I(h),M="Array"==n&&j.entries||z;if(M&&(S=u(M.call(new e)))!==Object.prototype&&S.next&&(i||u(S)===m||(s?s(S,m):l(S[E])||d(S,E,x)),f(S,T,!0,!0),i&&(g[T]=x)),A&&h==C&&z&&z.name!==C&&(!i&&b?p(j,"name",C):(P=!0,R=function(){return o(z,this)})),h)if(O={values:I(C),keys:v?R:I(_),entries:I(w)},k)for(B in O)(y||P||!(B in j))&&d(j,B,O[B]);else r({target:n,proto:!0,forced:y||P},O);return i&&!k||j[E]===R||d(j,E,R,{name:h}),g[n]=R,O}},7235:(e,n,t)=>{var r=t(857),o=t(2597),i=t(6061),a=t(3070).f;e.exports=function(e){var n=r.Symbol||(r.Symbol={});o(n,e)||a(n,e,{value:i.f(e)})}},9781:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},317:(e,n,t)=>{var r=t(7854),o=t(111),i=r.document,a=o(i)&&o(i.createElement);e.exports=function(e){return a?i.createElement(e):{}}},8324:e=>{e.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},8509:(e,n,t)=>{var r=t(317)("span").classList,o=r&&r.constructor&&r.constructor.prototype;e.exports=o===Object.prototype?void 0:o},8886:(e,n,t)=>{var r=t(8113).match(/firefox\/(\d+)/i);e.exports=!!r&&+r[1]},256:(e,n,t)=>{var r=t(8113);e.exports=/MSIE|Trident/.test(r)},5268:(e,n,t)=>{var r=t(4326),o=t(7854);e.exports="process"==r(o.process)},8113:(e,n,t)=>{var r=t(5005);e.exports=r("navigator","userAgent")||""},7392:(e,n,t)=>{var r,o,i=t(7854),a=t(8113),l=i.process,c=i.Deno,u=l&&l.versions||c&&c.version,s=u&&u.v8;s&&(o=(r=s.split("."))[0]>0&&r[0]<4?1:+(r[0]+r[1])),!o&&a&&(!(r=a.match(/Edge\/(\d+)/))||r[1]>=74)&&(r=a.match(/Chrome\/(\d+)/))&&(o=+r[1]),e.exports=o},8008:(e,n,t)=>{var r=t(8113).match(/AppleWebKit\/(\d+)\./);e.exports=!!r&&+r[1]},748:e=>{e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},2109:(e,n,t)=>{var r=t(7854),o=t(1236).f,i=t(8880),a=t(1320),l=t(3505),c=t(9920),u=t(4705);e.exports=function(e,n){var t,s,f,p,d,h=e.target,g=e.global,v=e.stat;if(t=g?r:v?r[h]||l(h,{}):(r[h]||{}).prototype)for(s in n){if(p=n[s],f=e.noTargetGet?(d=o(t,s))&&d.value:t[s],!u(g?s:h+(v?".":"#")+s,e.forced)&&void 0!==f){if(typeof p==typeof f)continue;c(p,f)}(e.sham||f&&f.sham)&&i(p,"sham",!0),a(t,s,p,e)}}},7293:e=>{e.exports=function(e){try{return!!e()}catch(e){return!0}}},7007:(e,n,t)=>{"use strict";t(4916);var r=t(1702),o=t(1320),i=t(2261),a=t(7293),l=t(5112),c=t(8880),u=l("species"),s=RegExp.prototype;e.exports=function(e,n,t,f){var p=l(e),d=!a((function(){var n={};return n[p]=function(){return 7},7!=""[e](n)})),h=d&&!a((function(){var n=!1,t=/a/;return"split"===e&&((t={}).constructor={},t.constructor[u]=function(){return t},t.flags="",t[p]=/./[p]),t.exec=function(){return n=!0,null},t[p](""),!n}));if(!d||!h||t){var g=r(/./[p]),v=n(p,""[e],(function(e,n,t,o,a){var l=r(e),c=n.exec;return c===i||c===s.exec?d&&!a?{done:!0,value:g(n,t,o)}:{done:!0,value:l(t,n,o)}:{done:!1}}));o(String.prototype,e,v[0]),o(s,p,v[1])}f&&c(s[p],"sham",!0)}},6677:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){return Object.isExtensible(Object.preventExtensions({}))}))},2104:e=>{var n=Function.prototype,t=n.apply,r=n.bind,o=n.call;e.exports="object"==typeof Reflect&&Reflect.apply||(r?o.bind(t):function(){return o.apply(t,arguments)})},9974:(e,n,t)=>{var r=t(1702),o=t(9662),i=r(r.bind);e.exports=function(e,n){return o(e),void 0===n?e:i?i(e,n):function(){return e.apply(n,arguments)}}},7065:(e,n,t)=>{"use strict";var r=t(7854),o=t(1702),i=t(9662),a=t(111),l=t(2597),c=t(206),u=r.Function,s=o([].concat),f=o([].join),p={},d=function(e,n,t){if(!l(p,n)){for(var r=[],o=0;o{var n=Function.prototype.call;e.exports=n.bind?n.bind(n):function(){return n.apply(n,arguments)}},6530:(e,n,t)=>{var r=t(9781),o=t(2597),i=Function.prototype,a=r&&Object.getOwnPropertyDescriptor,l=o(i,"name"),c=l&&"something"===function(){}.name,u=l&&(!r||r&&a(i,"name").configurable);e.exports={EXISTS:l,PROPER:c,CONFIGURABLE:u}},1702:e=>{var n=Function.prototype,t=n.bind,r=n.call,o=t&&t.bind(r);e.exports=t?function(e){return e&&o(r,e)}:function(e){return e&&function(){return r.apply(e,arguments)}}},5005:(e,n,t)=>{var r=t(7854),o=t(614),i=function(e){return o(e)?e:void 0};e.exports=function(e,n){return arguments.length<2?i(r[e]):r[e]&&r[e][n]}},1246:(e,n,t)=>{var r=t(648),o=t(8173),i=t(7497),a=t(5112)("iterator");e.exports=function(e){if(null!=e)return o(e,a)||o(e,"@@iterator")||i[r(e)]}},8554:(e,n,t)=>{var r=t(7854),o=t(6916),i=t(9662),a=t(9670),l=t(6330),c=t(1246),u=r.TypeError;e.exports=function(e,n){var t=arguments.length<2?c(e):n;if(i(t))return a(o(t,e));throw u(l(e)+" is not iterable")}},8173:(e,n,t)=>{var r=t(9662);e.exports=function(e,n){var t=e[n];return null==t?void 0:r(t)}},647:(e,n,t)=>{var r=t(1702),o=t(7908),i=Math.floor,a=r("".charAt),l=r("".replace),c=r("".slice),u=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,s=/\$([$&'`]|\d{1,2})/g;e.exports=function(e,n,t,r,f,p){var d=t+e.length,h=r.length,g=s;return void 0!==f&&(f=o(f),g=u),l(p,g,(function(o,l){var u;switch(a(l,0)){case"$":return"$";case"&":return e;case"`":return c(n,0,t);case"'":return c(n,d);case"<":u=f[c(l,1,-1)];break;default:var s=+l;if(0===s)return o;if(s>h){var p=i(s/10);return 0===p?o:p<=h?void 0===r[p-1]?a(l,1):r[p-1]+a(l,1):o}u=r[s-1]}return void 0===u?"":u}))}},7854:(e,n,t)=>{var r=function(e){return e&&e.Math==Math&&e};e.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof t.g&&t.g)||function(){return this}()||Function("return this")()},2597:(e,n,t)=>{var r=t(1702),o=t(7908),i=r({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,n){return i(o(e),n)}},3501:e=>{e.exports={}},490:(e,n,t)=>{var r=t(5005);e.exports=r("document","documentElement")},4664:(e,n,t)=>{var r=t(9781),o=t(7293),i=t(317);e.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},8361:(e,n,t)=>{var r=t(7854),o=t(1702),i=t(7293),a=t(4326),l=r.Object,c=o("".split);e.exports=i((function(){return!l("z").propertyIsEnumerable(0)}))?function(e){return"String"==a(e)?c(e,""):l(e)}:l},9587:(e,n,t)=>{var r=t(614),o=t(111),i=t(7674);e.exports=function(e,n,t){var a,l;return i&&r(a=n.constructor)&&a!==t&&o(l=a.prototype)&&l!==t.prototype&&i(e,l),e}},2788:(e,n,t)=>{var r=t(1702),o=t(614),i=t(5465),a=r(Function.toString);o(i.inspectSource)||(i.inspectSource=function(e){return a(e)}),e.exports=i.inspectSource},2423:(e,n,t)=>{var r=t(2109),o=t(1702),i=t(3501),a=t(111),l=t(2597),c=t(3070).f,u=t(8006),s=t(1156),f=t(2050),p=t(9711),d=t(6677),h=!1,g=p("meta"),v=0,A=function(e){c(e,g,{value:{objectID:"O"+v++,weakData:{}}})},b=e.exports={enable:function(){b.enable=function(){},h=!0;var e=u.f,n=o([].splice),t={};t[g]=1,e(t).length&&(u.f=function(t){for(var r=e(t),o=0,i=r.length;o{var r,o,i,a=t(8536),l=t(7854),c=t(1702),u=t(111),s=t(8880),f=t(2597),p=t(5465),d=t(6200),h=t(3501),g="Object already initialized",v=l.TypeError,A=l.WeakMap;if(a||p.state){var b=p.state||(p.state=new A),m=c(b.get),y=c(b.has),E=c(b.set);r=function(e,n){if(y(b,e))throw new v(g);return n.facade=e,E(b,e,n),n},o=function(e){return m(b,e)||{}},i=function(e){return y(b,e)}}else{var _=d("state");h[_]=!0,r=function(e,n){if(f(e,_))throw new v(g);return n.facade=e,s(e,_,n),n},o=function(e){return f(e,_)?e[_]:{}},i=function(e){return f(e,_)}}e.exports={set:r,get:o,has:i,enforce:function(e){return i(e)?o(e):r(e,{})},getterFor:function(e){return function(n){var t;if(!u(n)||(t=o(n)).type!==e)throw v("Incompatible receiver, "+e+" required");return t}}}},7659:(e,n,t)=>{var r=t(5112),o=t(7497),i=r("iterator"),a=Array.prototype;e.exports=function(e){return void 0!==e&&(o.Array===e||a[i]===e)}},3157:(e,n,t)=>{var r=t(4326);e.exports=Array.isArray||function(e){return"Array"==r(e)}},614:e=>{e.exports=function(e){return"function"==typeof e}},4411:(e,n,t)=>{var r=t(1702),o=t(7293),i=t(614),a=t(648),l=t(5005),c=t(2788),u=function(){},s=[],f=l("Reflect","construct"),p=/^\s*(?:class|function)\b/,d=r(p.exec),h=!p.exec(u),g=function(e){if(!i(e))return!1;try{return f(u,s,e),!0}catch(e){return!1}};e.exports=!f||o((function(){var e;return g(g.call)||!g(Object)||!g((function(){e=!0}))||e}))?function(e){if(!i(e))return!1;switch(a(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}return h||!!d(p,c(e))}:g},4705:(e,n,t)=>{var r=t(7293),o=t(614),i=/#|\.prototype\./,a=function(e,n){var t=c[l(e)];return t==s||t!=u&&(o(n)?r(n):!!n)},l=a.normalize=function(e){return String(e).replace(i,".").toLowerCase()},c=a.data={},u=a.NATIVE="N",s=a.POLYFILL="P";e.exports=a},111:(e,n,t)=>{var r=t(614);e.exports=function(e){return"object"==typeof e?null!==e:r(e)}},1913:e=>{e.exports=!1},7850:(e,n,t)=>{var r=t(111),o=t(4326),i=t(5112)("match");e.exports=function(e){var n;return r(e)&&(void 0!==(n=e[i])?!!n:"RegExp"==o(e))}},2190:(e,n,t)=>{var r=t(7854),o=t(5005),i=t(614),a=t(7976),l=t(3307),c=r.Object;e.exports=l?function(e){return"symbol"==typeof e}:function(e){var n=o("Symbol");return i(n)&&a(n.prototype,c(e))}},408:(e,n,t)=>{var r=t(7854),o=t(9974),i=t(6916),a=t(9670),l=t(6330),c=t(7659),u=t(6244),s=t(7976),f=t(8554),p=t(1246),d=t(9212),h=r.TypeError,g=function(e,n){this.stopped=e,this.result=n},v=g.prototype;e.exports=function(e,n,t){var r,A,b,m,y,E,_,C=t&&t.that,w=!(!t||!t.AS_ENTRIES),x=!(!t||!t.IS_ITERATOR),k=!(!t||!t.INTERRUPTED),S=o(n,C),O=function(e){return r&&d(r,"normal",e),new g(!0,e)},B=function(e){return w?(a(e),k?S(e[0],e[1],O):S(e[0],e[1])):k?S(e,O):S(e)};if(x)r=e;else{if(!(A=p(e)))throw h(l(e)+" is not iterable");if(c(A)){for(b=0,m=u(e);m>b;b++)if((y=B(e[b]))&&s(v,y))return y;return new g(!1)}r=f(e,A)}for(E=r.next;!(_=i(E,r)).done;){try{y=B(_.value)}catch(e){d(r,"throw",e)}if("object"==typeof y&&y&&s(v,y))return y}return new g(!1)}},9212:(e,n,t)=>{var r=t(6916),o=t(9670),i=t(8173);e.exports=function(e,n,t){var a,l;o(e);try{if(!(a=i(e,"return"))){if("throw"===n)throw t;return t}a=r(a,e)}catch(e){l=!0,a=e}if("throw"===n)throw t;if(l)throw a;return o(a),t}},3383:(e,n,t)=>{"use strict";var r,o,i,a=t(7293),l=t(614),c=t(30),u=t(9518),s=t(1320),f=t(5112),p=t(1913),d=f("iterator"),h=!1;[].keys&&("next"in(i=[].keys())?(o=u(u(i)))!==Object.prototype&&(r=o):h=!0),null==r||a((function(){var e={};return r[d].call(e)!==e}))?r={}:p&&(r=c(r)),l(r[d])||s(r,d,(function(){return this})),e.exports={IteratorPrototype:r,BUGGY_SAFARI_ITERATORS:h}},7497:e=>{e.exports={}},6244:(e,n,t)=>{var r=t(7466);e.exports=function(e){return r(e.length)}},133:(e,n,t)=>{var r=t(7392),o=t(7293);e.exports=!!Object.getOwnPropertySymbols&&!o((function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&r&&r<41}))},8536:(e,n,t)=>{var r=t(7854),o=t(614),i=t(2788),a=r.WeakMap;e.exports=o(a)&&/native code/.test(i(a))},3929:(e,n,t)=>{var r=t(7854),o=t(7850),i=r.TypeError;e.exports=function(e){if(o(e))throw i("The method doesn't accept regular expressions");return e}},1574:(e,n,t)=>{"use strict";var r=t(9781),o=t(1702),i=t(6916),a=t(7293),l=t(1956),c=t(5181),u=t(5296),s=t(7908),f=t(8361),p=Object.assign,d=Object.defineProperty,h=o([].concat);e.exports=!p||a((function(){if(r&&1!==p({b:1},p(d({},"a",{enumerable:!0,get:function(){d(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var e={},n={},t=Symbol(),o="abcdefghijklmnopqrst";return e[t]=7,o.split("").forEach((function(e){n[e]=e})),7!=p({},e)[t]||l(p({},n)).join("")!=o}))?function(e,n){for(var t=s(e),o=arguments.length,a=1,p=c.f,d=u.f;o>a;)for(var g,v=f(arguments[a++]),A=p?h(l(v),p(v)):l(v),b=A.length,m=0;b>m;)g=A[m++],r&&!i(d,v,g)||(t[g]=v[g]);return t}:p},30:(e,n,t)=>{var r,o=t(9670),i=t(6048),a=t(748),l=t(3501),c=t(490),u=t(317),s=t(6200),f=s("IE_PROTO"),p=function(){},d=function(e){return" - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

acceptEitherSuccessAsync

-
-

Returns a new CompletionStage that, when either given stage success, is executed using this stage's default asynchronous execution facility, with the corresponding result as argument to the supplied action.

This method is the same as CompletableFuture.acceptEitherAsync except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also


Returns a new CompletionStage that, when either given stage success, is executed using the supplied executor, with the corresponding result as argument to the supplied action.

This method is the same as CompletableFuture.acceptEitherAsync except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

executor

the executor to use for asynchronous execution

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/accept-either-success.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/accept-either-success.html deleted file mode 100644 index c5cb0251..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/accept-either-success.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - acceptEitherSuccess - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

acceptEitherSuccess

-
-

Returns a new CompletableFuture that, when either given stage success, is executed with the corresponding result as argument to the supplied action.

This method is the same as CompletableFuture.acceptEither except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html deleted file mode 100644 index 80e61803..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allOfCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allOfCffu

-
-
fun Collection<Cffu<*>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is completed when all the given Cffus complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given Cffus are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no Cffus are provided, returns a Cffu completed with the value null.

This method is the same as CffuFactory.allOf, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun Array<out Cffu<*>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is completed when all the given Cffus complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given Cffus are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no Cffus are provided, returns a Cffu completed with the value null.

This method is the same as CffuFactory.allOf, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allOfCffuCf")
fun Collection<CompletableFuture<*>>.allOfCffu(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is completed when all the given CompletableFutures complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given CompletableFutures are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no CompletableFutures are provided, returns a Cffu completed with the value null.

This method is the same as CffuFactory.allOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html deleted file mode 100644 index cdc44213..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allOfCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allOfCompletableFuture

-
-

Returns a new CompletableFuture that is completed when all the given stages complete. If any of the given stages complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given stages are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If no stages are provided, returns a CompletableFuture completed with the value null.

If you need the results of given stages, prefer below methods:

This method is the same as CompletableFutureUtils.allOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html deleted file mode 100644 index 749b839a..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allOfFastFailCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allOfFastFailCffu

-
-
fun Collection<Cffu<*>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is successful when all the given Cffus success, the results(Cffu<Void>) of the given Cffus are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value null.

This method is the same as CffuFactory.allOfFastFail, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun Array<out Cffu<*>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is successful when all the given Cffus success, the results(Cffu<Void>) of the given Cffus are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value null.

This method is the same as CffuFactory.allOfFastFail, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allOfFastFailCffuCf")
fun Collection<CompletableFuture<*>>.allOfFastFailCffu(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is successful when all the given CompletableFutures success, the results(Cffu<Void>) of the given CompletableFutures are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value null.

This method is the same as CffuFactory.allOfFastFail, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html deleted file mode 100644 index 1bfae81a..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allOfFastFailCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allOfFastFailCompletableFuture

-
-

Returns a new CompletableFuture that is successful when all the given CompletableFutures success, the results(CompletableFuture<Void>) of the given CompletableFutures are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value null.

If you need the results of given stages, prefer below methods:

This method is the same as CompletableFutureUtils.allOfFastFail, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html deleted file mode 100644 index 2cca4f4b..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allResultsOfCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allResultsOfCffu

-
-
fun <T> Collection<Cffu<out T>>.allResultsOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu is completed when all the given Cffus complete. If any of the given Cffus complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value empty list.

This method is the same as allOfCffu, except the returned Cffu contains the results of input Cffus.

This method is the same as CffuFactory.allResultsOf, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<out Cffu<out T>>.allResultsOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu is completed when all the given Cffus complete. If any of the given Cffus complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value empty list.

This method is the same as allOfCffu, except the returned Cffu contains the results of input Cffus.

This method is the same as CffuFactory.allResultsOf, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allResultsOfCffuCf")
fun <T> Collection<CompletableFuture<out T>>.allResultsOfCffu(cffuFactory: CffuFactory): Cffu<List<T>>
fun <T> Array<out CompletableFuture<out T>>.allResultsOfCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given CompletableFutures, the new Cffu is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

This method is the same as allOfCffu, except the returned Cffu contains the results of input CompletableFutures.

This method is the same as CffuFactory.allResultsOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-completable-future.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-completable-future.html deleted file mode 100644 index 8292b597..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allResultsOfCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allResultsOfCompletableFuture

-
-

Returns a new CompletableFuture with the results in the same order of all the given CompletableFutures, the returned new CompletableFuture is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value empty list.

This method is the same as allOfCompletableFuture, except the returned CompletableFuture contains the results of input CompletableFutures.

This method is the same as CompletableFutureUtils.allResultsOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html deleted file mode 100644 index 3137c81d..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allResultsOfFastFailCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allResultsOfFastFailCffu

-
-
fun <T> Collection<Cffu<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu success when all the given Cffus success. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

This method is the same as allOfFastFailCffu, except the returned Cffu contains the results of input Cffus.

This method is the same as CffuFactory.allResultsOfFastFail, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<out Cffu<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu success when all the given Cffus success. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

This method is the same as allOfFastFailCffu, except the returned Cffu contains the results of input Cffus.

This method is the same as CffuFactory.allResultsOfFastFail, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allResultsOfFastFailCffuCf")
fun <T> Collection<CompletableFuture<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given CompletableFutures, the new Cffu success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

This method is the same as allOfFastFailCffu, except the returned Cffu contains the results of input Cffus.

This method is the same as CffuFactory.allResultsOfFastFail, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-completable-future.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-completable-future.html deleted file mode 100644 index bf09070a..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allResultsOfFastFailCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allResultsOfFastFailCompletableFuture

-
-

Returns a new CompletableFuture with the results in the same order of all the given CompletableFutures, the new CompletableFuture success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value empty list.

This method is the same as allOfFastFailCompletableFuture, except the returned CompletableFuture contains the results of input CompletableFutures.

This method is the same as CompletableFutureUtils.allResultsOfFastFail, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html deleted file mode 100644 index 5fc9f847..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allTupleOfFastFail - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allTupleOfFastFail

-
-

Returns a new CompletableFuture that is successful when the given two CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is successful when the given two CompletableFutures success

See also

Throws

if any of the given CompletableFutures are {@code null}


Returns a new CompletableFuture that is successful when the given three CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is successful when the given three CompletableFutures success

See also

Throws

if any of the given CompletableFutures are {@code null}


Returns a new CompletableFuture that is successful when the given 4 CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is successful when the given 4 CompletableFutures success

See also

Throws

if any of the given CompletableFutures are {@code null}


Returns a new CompletableFuture that is successful when the given 5 CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is successful when the given 5 CompletableFutures success

See also

Throws

if any of the given CompletableFutures are {@code null}

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html deleted file mode 100644 index 10d4c911..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allTupleOf - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allTupleOf

-
-

Returns a new CompletableFuture that is completed when the given two CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 2 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null


Returns a new CompletableFuture that is completed when the given three CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 3 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null


Returns a new CompletableFuture that is completed when the given 4 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 4 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null


Returns a new CompletableFuture that is completed when the given 5 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 5 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html deleted file mode 100644 index 7f8feac6..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - anyOfCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

anyOfCffu

-
-
fun <T> Collection<Cffu<out T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

This method is the same as CffuFactory.anyOf, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<out Cffu<out T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

This method is the same as CffuFactory.anyOf, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "anyOfCffuCf")
fun <T> Collection<CompletableFuture<out T>>.anyOfCffu(cffuFactory: CffuFactory): Cffu<T>
fun <T> Array<out CompletableFuture<out T>>.anyOfCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is completed when any of the given CompletableFutures complete, with the same result.

This method is the same as CffuFactory.anyOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html deleted file mode 100644 index 09e75c9d..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - anyOfCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

anyOfCompletableFuture

-
-

Returns a new CompletableFuture that is completed when any of the given CompletableFutures complete, with the same result. Otherwise, if it completed exceptionally, the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns an incomplete CompletableFuture.

This method is the same as CompletableFutureUtils.anyOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html deleted file mode 100644 index f55882ac..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - anyOfSuccessCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

anyOfSuccessCffu

-
-
fun <T> Collection<Cffu<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is successful when any of the given Cffus success, with the same result. Otherwise, all the given Cffus complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given Cffus as its cause. If no Cffus are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

This method is the same as CffuFactory.anyOfSuccess, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<out Cffu<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is successful when any of the given Cffus success, with the same result. Otherwise, all the given Cffus complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given Cffus as its cause. If no Cffus are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

This method is the same as CffuFactory.anyOfSuccess, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "anyOfSuccessCffuCf")
fun <T> Collection<CompletableFuture<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory): Cffu<T>
fun <T> Array<out CompletableFuture<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

This method is the same as CffuFactory.anyOfSuccess, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html deleted file mode 100644 index 0342313a..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - anyOfSuccessCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

anyOfSuccessCompletableFuture

-
-

Returns a new CompletableFuture that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new CompletableFuture that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

This method is the same as CompletableFutureUtils.anyOfSuccess, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success-async.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success-async.html deleted file mode 100644 index 1b203eaa..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - applyToEitherSuccessAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

applyToEitherSuccessAsync

-
-

Returns a new CompletionStage that, when either given stage success, is executed using this stage's default asynchronous execution facility, with the corresponding result as argument to the supplied function.

This method is the same as CompletableFuture.applyToEitherAsync except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

fn

the function to use to compute the value of the returned CompletableFuture

the function's return type

See also


Returns a new CompletionStage that, when either given stage success, is executed using the supplied executor, with the corresponding result as argument to the supplied function.

This method is the same as CompletableFuture.applyToEitherAsync except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

fn

the function to use to compute the value of the returned CompletableFuture

executor

the executor to use for asynchronous execution

the function's return type

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success.html deleted file mode 100644 index 8b0618bf..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - applyToEitherSuccess - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

applyToEitherSuccess

-
-

Returns a new CompletionStage that, when either given stage success, is executed with the corresponding result as argument to the supplied function.

This method is the same as CompletableFuture.applyToEither except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

fn

the function to use to compute the value of the returned CompletableFuture

the function's return type

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html deleted file mode 100644 index 01ed4dfc..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - cffuState - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

cffuState

-
-

Returns the computation state(CffuState), this method is equivalent to CompletableFuture.state with java version compatibility logic, so you can invoke in old java 18-.

Return

the computation state

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html deleted file mode 100644 index d6f434b0..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - cffuUnwrap - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

cffuUnwrap

-
-

Unwrap input Cffu collection elements by Cffu.cffuUnwrap.

This method is the same as CffuFactory.cffuArrayUnwrap, providing this method is convenient for method chaining.

See also


Unwrap input Cffu array elements by Cffu.cffuUnwrap.

This method is the same as CffuFactory.cffuArrayUnwrap, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/complete-async.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/complete-async.html deleted file mode 100644 index 8069269b..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/complete-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - completeAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

completeAsync

-
-
fun <T, C : CompletableFuture<in T>> C.completeAsync(supplier: Supplier<out T>): C

Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the default executor.

Return

given CompletableFuture

Parameters

supplier

a function returning the value to be used to complete given CompletableFuture


fun <T, C : CompletableFuture<in T>> C.completeAsync(supplier: Supplier<out T>, executor: Executor): C

Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the given executor.

Return

given CompletableFuture

Parameters

supplier

a function returning the value to be used to complete given CompletableFuture

executor

the executor to use for asynchronous execution

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/complete-on-timeout.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/complete-on-timeout.html deleted file mode 100644 index 147ac8b7..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/complete-on-timeout.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - completeOnTimeout - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

completeOnTimeout

-
-
fun <T, C : CompletableFuture<in T>> C.completeOnTimeout(value: T, timeout: Long, unit: TimeUnit): C

Completes given CompletableFuture with the given value if not otherwise completed before the given timeout.

Return

given CompletableFuture

Parameters

value

the value to use upon timeout

timeout

how long to wait before completing normally with the given value, in units of unit

unit

a TimeUnit determining how to interpret the timeout parameter

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/component1.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/component1.html deleted file mode 100644 index 8208af76..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/component1.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - component1 - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

component1

-
-
operator fun <T1, T2> Tuple2<T1, T2>.component1(): T1
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component1(): T1
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component1(): T1
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component1(): T1
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/component2.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/component2.html deleted file mode 100644 index c60ee2da..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/component2.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - component2 - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

component2

-
-
operator fun <T1, T2> Tuple2<T1, T2>.component2(): T2
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component2(): T2
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component2(): T2
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component2(): T2
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/component3.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/component3.html deleted file mode 100644 index 879f097f..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/component3.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - component3 - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

component3

-
-
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component3(): T3
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component3(): T3
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component3(): T3
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/component4.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/component4.html deleted file mode 100644 index 80809bc6..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/component4.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - component4 - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

component4

-
-
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component4(): T4
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component4(): T4
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/component5.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/component5.html deleted file mode 100644 index 35fd0086..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/component5.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - component5 - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

component5

-
-
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component5(): T5
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/copy.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/copy.html deleted file mode 100644 index ee96d516..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/copy.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - copy - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

copy

-
-

Returns a new CompletableFuture that is completed normally with the same value as this CompletableFuture when it completes normally. If this CompletableFuture completes exceptionally, then the returned CompletableFuture completes exceptionally with a CompletionException with this exception as cause. The behavior is equivalent to thenApply(x -> x). This method may be useful as a form of "defensive copying", to prevent clients from completing, while still being able to arrange dependent actions.

Return

the new CompletableFuture

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/exception-now.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/exception-now.html deleted file mode 100644 index 1d1ec248..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/exception-now.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - exceptionNow - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

exceptionNow

-
-

Returns the exception thrown by the task, without waiting.

This method is for cases where the caller knows that the task has already completed with an exception.

Return

the exception thrown by the task

See also

Throws

if the task has not completed, the task completed normally, or the task was cancelled

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-async.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-async.html deleted file mode 100644 index 4153edf8..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - exceptionallyAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

exceptionallyAsync

-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using given stage's default asynchronous execution facility. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the value of the returned CompletionStage if given CompletionStage completed exceptionally


Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using the supplied Executor. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the value of the returned CompletionStage if given CompletionStage completed exceptionally

executor

the executor to use for asynchronous execution

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose-async.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose-async.html deleted file mode 100644 index 162df6f1..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - exceptionallyComposeAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

exceptionallyComposeAsync

-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using given stage's default asynchronous execution facility.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the returned CompletionStage if given CompletionStage completed exceptionally


Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using the supplied Executor.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the returned CompletionStage if given CompletionStage completed exceptionally

executor

the executor to use for asynchronous execution

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose.html deleted file mode 100644 index 7094bf18..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - exceptionallyCompose - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

exceptionallyCompose

-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the returned CompletionStage if given CompletionStage completed exceptionally

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/index.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/index.html deleted file mode 100644 index e69630e7..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/index.html +++ /dev/null @@ -1,823 +0,0 @@ - - - - - io.foldright.cffu.kotlin - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

Package-level declarations

-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when either given stage success, is executed with the corresponding result as argument to the supplied action.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when either given stage success, is executed using this stage's default asynchronous execution facility, with the corresponding result as argument to the supplied action.

Returns a new CompletionStage that, when either given stage success, is executed using the supplied executor, with the corresponding result as argument to the supplied action.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun Array<out Cffu<*>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>
fun Collection<Cffu<*>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is completed when all the given Cffus complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given Cffus are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no Cffus are provided, returns a Cffu completed with the value null.

@JvmName(name = "allOfCffuCf")
fun Collection<CompletableFuture<*>>.allOfCffu(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is completed when all the given CompletableFutures complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given CompletableFutures are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no CompletableFutures are provided, returns a Cffu completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed when all the given stages complete. If any of the given stages complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given stages are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If no stages are provided, returns a CompletableFuture completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun Array<out Cffu<*>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>
fun Collection<Cffu<*>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is successful when all the given Cffus success, the results(Cffu<Void>) of the given Cffus are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value null.

@JvmName(name = "allOfFastFailCffuCf")
fun Collection<CompletableFuture<*>>.allOfFastFailCffu(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is successful when all the given CompletableFutures success, the results(Cffu<Void>) of the given CompletableFutures are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is successful when all the given CompletableFutures success, the results(CompletableFuture<Void>) of the given CompletableFutures are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<out Cffu<out T>>.allResultsOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>
fun <T> Collection<Cffu<out T>>.allResultsOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu is completed when all the given Cffus complete. If any of the given Cffus complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value empty list.

fun <T> Array<out CompletableFuture<out T>>.allResultsOfCffu(cffuFactory: CffuFactory): Cffu<List<T>>
@JvmName(name = "allResultsOfCffuCf")
fun <T> Collection<CompletableFuture<out T>>.allResultsOfCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given CompletableFutures, the new Cffu is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture with the results in the same order of all the given CompletableFutures, the returned new CompletableFuture is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value empty list.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<out Cffu<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>
fun <T> Collection<Cffu<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu success when all the given Cffus success. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

@JvmName(name = "allResultsOfFastFailCffuCf")
fun <T> Collection<CompletableFuture<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given CompletableFutures, the new Cffu success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture with the results in the same order of all the given CompletableFutures, the new CompletableFuture success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value empty list.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed when the given two CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is completed when the given three CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is completed when the given 4 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is completed when the given 5 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is successful when the given two CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is successful when the given three CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is successful when the given 4 CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is successful when the given 5 CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<out Cffu<out T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>
fun <T> Collection<Cffu<out T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

fun <T> Array<out CompletableFuture<out T>>.anyOfCffu(cffuFactory: CffuFactory): Cffu<T>
@JvmName(name = "anyOfCffuCf")
fun <T> Collection<CompletableFuture<out T>>.anyOfCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is completed when any of the given CompletableFutures complete, with the same result.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed when any of the given CompletableFutures complete, with the same result. Otherwise, if it completed exceptionally, the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns an incomplete CompletableFuture.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<out Cffu<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>
fun <T> Collection<Cffu<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is successful when any of the given Cffus success, with the same result. Otherwise, all the given Cffus complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given Cffus as its cause. If no Cffus are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

fun <T> Array<out CompletableFuture<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory): Cffu<T>
@JvmName(name = "anyOfSuccessCffuCf")
fun <T> Collection<CompletableFuture<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new CompletableFuture that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when either given stage success, is executed with the corresponding result as argument to the supplied function.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when either given stage success, is executed using this stage's default asynchronous execution facility, with the corresponding result as argument to the supplied function.

Returns a new CompletionStage that, when either given stage success, is executed using the supplied executor, with the corresponding result as argument to the supplied function.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the computation state(CffuState), this method is equivalent to CompletableFuture.state with java version compatibility logic, so you can invoke in old java 18-.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Unwrap input Cffu array elements by Cffu.cffuUnwrap.

Unwrap input Cffu collection elements by Cffu.cffuUnwrap.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T, C : CompletableFuture<in T>> C.completeAsync(supplier: Supplier<out T>): C

Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the default executor.

fun <T, C : CompletableFuture<in T>> C.completeAsync(supplier: Supplier<out T>, executor: Executor): C

Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the given executor.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T, C : CompletableFuture<in T>> C.completeOnTimeout(value: T, timeout: Long, unit: TimeUnit): C

Completes given CompletableFuture with the given value if not otherwise completed before the given timeout.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2> Tuple2<T1, T2>.component1(): T1
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component1(): T1
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component1(): T1
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component1(): T1
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2> Tuple2<T1, T2>.component2(): T2
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component2(): T2
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component2(): T2
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component2(): T2
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component3(): T3
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component3(): T3
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component3(): T3
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component4(): T4
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component4(): T4
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component5(): T5
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed normally with the same value as this CompletableFuture when it completes normally. If this CompletableFuture completes exceptionally, then the returned CompletableFuture completes exceptionally with a CompletionException with this exception as cause. The behavior is equivalent to thenApply(x -> x). This method may be useful as a form of "defensive copying", to prevent clients from completing, while still being able to arrange dependent actions.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using given stage's default asynchronous execution facility. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using the supplied Executor. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using given stage's default asynchronous execution facility.

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using the supplied Executor.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the exception thrown by the task, without waiting.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> CompletableFuture<T>.join(timeout: Long, unit: TimeUnit): T

Waits if necessary for at most the given time for the computation to complete, and then retrieves its result value when complete, or throws an (unchecked) exception if completed exceptionally.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that is completed normally with the same value as given CompletableFuture when it completes normally, and cannot be independently completed or otherwise used in ways not defined by the methods of interface CompletionStage. If given CompletableFuture completes exceptionally, then the returned CompletionStage completes exceptionally with a CompletionException with given exception as cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new incomplete CompletableFuture of the type to be returned by a CompletionStage method.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T, C : CompletableFuture<out T>> C.orTimeout(timeout: Long, unit: TimeUnit): C

Exceptionally completes this CompletableFuture with a TimeoutException if not otherwise completed before the given timeout.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T, C : CompletionStage<out T>> C.peek(action: BiConsumer<in T, in Throwable>): C

Peeks the result by executing the given action when this stage completes, returns this stage.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T, C : CompletionStage<out T>> C.peekAsync(action: BiConsumer<in T, in Throwable>): C

Peeks the result by executing the given action when this stage completes, executes the given action using this stage's default asynchronous execution facility, returns this stage.

fun <T, C : CompletionStage<out T>> C.peekAsync(action: BiConsumer<in T, in Throwable>, executor: Executor): C

Peeks the result by executing the given action when this stage completes, executes the given action using the supplied Executor, returns this stage.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the computed result, without waiting.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action using CompletableFuture's default asynchronous execution facility. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action using the supplied executor. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when either given stage success, executes the given action. Otherwise, all two given CompletionStage complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletionStage as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when either given stage success, executes the given action using CompletableFuture's default asynchronous execution facility. Otherwise, all two given CompletionStage complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletionStage as its cause.

Returns a new CompletableFuture that, when either given stage success, executes the given action using the supplied executor. Otherwise, all two given CompletionStage complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletionStage as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed with the two results as arguments to the supplied action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using CompletableFuture's default asynchronous execution facility, with the two results as arguments to the supplied action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using the supplied executor, with the two results as arguments to the supplied action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T, U, V> CompletionStage<out T>.thenCombineFastFail(cf2: CompletionStage<out U>, fn: BiFunction<in T, in U, out V>): CompletableFuture<V>

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed with the two results as arguments to the supplied function. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using CompletableFuture's default asynchronous execution facility, with the two results as arguments to the supplied function. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

fun <T, U, V> CompletionStage<out T>.thenCombineFastFailAsync(cf2: CompletionStage<out U>, fn: BiFunction<in T, in U, out V>, executor: Executor): CompletableFuture<V>

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using the supplied executor, with the two results as arguments to the supplied function. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> CompletionStage<T>.toCffu(cffuFactory: CffuFactory): Cffu<T>
fun <T> Array<out CompletionStage<T>>.toCffu(cffuFactory: CffuFactory): Array<Cffu<T>>

Wrap input CompletableFuture/CompletionStage array elements to Cffu by CffuFactory.toCffu.

Wrap input CompletableFuture/CompletionStage collection elements to Cffu by CffuFactory.toCffu.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
-
-
-
-
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/join.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/join.html deleted file mode 100644 index f7d1380a..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/join.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - join - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

join

-
-
fun <T> CompletableFuture<T>.join(timeout: Long, unit: TimeUnit): T

Waits if necessary for at most the given time for the computation to complete, and then retrieves its result value when complete, or throws an (unchecked) exception if completed exceptionally.

NOTE: Calling this method

val result = cf.join(timeout, unit);

is the same as:

val result = cf.copy() // defensive copy to avoid writing this cf unexpectedly
.orTimeout(timeout, unit)
.join();
}

CAUTION: if the wait timed out, this method throws an (unchecked) CompletionException with the TimeoutException as its cause; NOT throws a (checked) TimeoutException like CompletableFuture.get.

Return

the result value

Parameters

timeout

the maximum time to wait

unit

the time unit of the timeout argument

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/minimal-completion-stage.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/minimal-completion-stage.html deleted file mode 100644 index 8503ec96..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/minimal-completion-stage.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - minimalCompletionStage - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

minimalCompletionStage

-
-

Returns a new CompletionStage that is completed normally with the same value as given CompletableFuture when it completes normally, and cannot be independently completed or otherwise used in ways not defined by the methods of interface CompletionStage. If given CompletableFuture completes exceptionally, then the returned CompletionStage completes exceptionally with a CompletionException with given exception as cause.

CAUTION: if run on old Java 8, just return a normal CompletableFuture which is NOT with a minimal CompletionStage.

Return

the new CompletionStage

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/new-incomplete-future.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/new-incomplete-future.html deleted file mode 100644 index aa9b9faa..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/new-incomplete-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - newIncompleteFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

newIncompleteFuture

-
-

Returns a new incomplete CompletableFuture of the type to be returned by a CompletionStage method.

Return

a new CompletableFuture

Parameters

the type of the value
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/or-timeout.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/or-timeout.html deleted file mode 100644 index 0549757a..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/or-timeout.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - orTimeout - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

orTimeout

-
-
fun <T, C : CompletableFuture<out T>> C.orTimeout(timeout: Long, unit: TimeUnit): C

Exceptionally completes this CompletableFuture with a TimeoutException if not otherwise completed before the given timeout.

Return

this CompletableFuture

Parameters

timeout

how long to wait before completing exceptionally with a TimeoutException, in units of unit

unit

a TimeUnit determining how to interpret the timeout parameter

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/peek-async.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/peek-async.html deleted file mode 100644 index 952d496f..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/peek-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - peekAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

peekAsync

-
-
fun <T, C : CompletionStage<out T>> C.peekAsync(action: BiConsumer<in T, in Throwable>): C

Peeks the result by executing the given action when this stage completes, executes the given action using this stage's default asynchronous execution facility, returns this stage.

When this stage is complete, the given action is invoked with the result (or null if none) and the exception (or null if none) of this stage as arguments. Whether the supplied action throws an exception or not, do NOT affect this cffu.

Unlike method handle and like method whenComplete, this method is not designed to translate completion outcomes.

Return

this stage

Parameters

action

the action to perform

See also


fun <T, C : CompletionStage<out T>> C.peekAsync(action: BiConsumer<in T, in Throwable>, executor: Executor): C

Peeks the result by executing the given action when this stage completes, executes the given action using the supplied Executor, returns this stage.

When this stage is complete, the given action is invoked with the result (or null if none) and the exception (or null if none) of this stage as arguments. Whether the supplied action throws an exception or not, do NOT affect this cffu.

Unlike method handle and like method whenComplete, this method is not designed to translate completion outcomes.

Return

this stage

Parameters

action

the action to perform

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/peek.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/peek.html deleted file mode 100644 index 11a3bc6f..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/peek.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - peek - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

peek

-
-
fun <T, C : CompletionStage<out T>> C.peek(action: BiConsumer<in T, in Throwable>): C

Peeks the result by executing the given action when this stage completes, returns this stage.

When this stage is complete, the given action is invoked with the result (or null if none) and the exception (or null if none) of this stage as arguments. Whether the supplied action throws an exception or not, do NOT affect this cffu.

Unlike method handle and like method whenComplete, this method is not designed to translate completion outcomes.

Return

this stage

Parameters

action

the action to perform

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/result-now.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/result-now.html deleted file mode 100644 index 185e7fff..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/result-now.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - resultNow - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

resultNow

-
-

Returns the computed result, without waiting.

This method is for cases where the caller knows that the task has already completed successfully, for example when filtering Future objects for the successful tasks and using a mapping operation to obtain results.

val results = futures
.filter { it.state() == Future.State.SUCCESS }
.map { it.resultNow() }
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail-async.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail-async.html deleted file mode 100644 index ce6db922..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - runAfterBothFastFailAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

runAfterBothFastFailAsync

-
-

Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action using CompletableFuture's default asynchronous execution facility. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.runAfterBothAsync except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also


Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action using the supplied executor. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.runAfterBothAsync except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail.html deleted file mode 100644 index ee88848b..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - runAfterBothFastFail - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

runAfterBothFastFail

-
-

Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.runAfterBoth except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success-async.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success-async.html deleted file mode 100644 index a0e31d96..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - runAfterEitherSuccessAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

runAfterEitherSuccessAsync

-
-

Returns a new CompletableFuture that, when either given stage success, executes the given action using CompletableFuture's default asynchronous execution facility. Otherwise, all two given CompletionStage complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletionStage as its cause.

This method is the same as CompletableFuture.runAfterEitherAsync except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also


Returns a new CompletableFuture that, when either given stage success, executes the given action using the supplied executor. Otherwise, all two given CompletionStage complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletionStage as its cause.

This method is the same as CompletableFuture.runAfterEitherAsync except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success.html deleted file mode 100644 index 85c05cee..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - runAfterEitherSuccess - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

runAfterEitherSuccess

-
-

Returns a new CompletableFuture that, when either given stage success, executes the given action. Otherwise, all two given CompletionStage complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletionStage as its cause.

This method is the same as CompletableFuture.runAfterEither except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail-async.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail-async.html deleted file mode 100644 index 7d418a87..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - thenAcceptBothFastFailAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

thenAcceptBothFastFailAsync

-
-

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using CompletableFuture's default asynchronous execution facility, with the two results as arguments to the supplied action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.thenAcceptBothAsync except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also


Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using the supplied executor, with the two results as arguments to the supplied action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.thenAcceptBothAsync except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail.html deleted file mode 100644 index 97b6046b..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - thenAcceptBothFastFail - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

thenAcceptBothFastFail

-
-

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed with the two results as arguments to the supplied action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.thenAcceptBoth except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail-async.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail-async.html deleted file mode 100644 index a5bdcdcf..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - thenCombineFastFailAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

thenCombineFastFailAsync

-
-

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using CompletableFuture's default asynchronous execution facility, with the two results as arguments to the supplied function. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.thenCombineAsync except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

fn

the function to use to compute the value of the returned CompletableFuture

See also


fun <T, U, V> CompletionStage<out T>.thenCombineFastFailAsync(cf2: CompletionStage<out U>, fn: BiFunction<in T, in U, out V>, executor: Executor): CompletableFuture<V>

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using the supplied executor, with the two results as arguments to the supplied function. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.thenCombineAsync except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

fn

the function to use to compute the value of the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail.html deleted file mode 100644 index 791d27b7..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - thenCombineFastFail - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

thenCombineFastFail

-
-
fun <T, U, V> CompletionStage<out T>.thenCombineFastFail(cf2: CompletionStage<out U>, fn: BiFunction<in T, in U, out V>): CompletableFuture<V>

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed with the two results as arguments to the supplied function. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.thenCombine except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

fn

the function to use to compute the value of the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/to-cffu.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/to-cffu.html deleted file mode 100644 index 5b424653..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/to-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - toCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

toCffu

-
-
fun <T> CompletionStage<T>.toCffu(cffuFactory: CffuFactory): Cffu<T>

Wrap an existed CompletableFuture/CompletionStage to Cffu.

This method is the same as CffuFactory.toCffu, providing this method is convenient for method chaining.

See also


Wrap input CompletableFuture/CompletionStage collection elements to Cffu by CffuFactory.toCffu.

This method is the same as CffuFactory.toCffuArray, providing this method is convenient for method chaining.

See also


fun <T> Array<out CompletionStage<T>>.toCffu(cffuFactory: CffuFactory): Array<Cffu<T>>

Wrap input CompletableFuture/CompletionStage array elements to Cffu by CffuFactory.toCffu.

This method is the same as CffuFactory.toCffuArray, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html b/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html deleted file mode 100644 index b9f42693..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - toCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

toCompletableFuture

-
-

Convert Cffu collection elements to CompletableFuture by Cffu.toCompletableFuture.

This method is the same as CffuFactory.anyOf, providing this method is convenient for method chaining.

See also


Convert Cffu array elements to CompletableFuture by Cffu.toCompletableFuture.

This method is the same as CffuFactory.anyOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha3/cffu-kotlin/package-list b/dokka/1.0.0-Alpha3/cffu-kotlin/package-list deleted file mode 100644 index 44ad2181..00000000 --- a/dokka/1.0.0-Alpha3/cffu-kotlin/package-list +++ /dev/null @@ -1,107 +0,0 @@ -$dokka.format:html-v1 -$dokka.linkExtension:html -$dokka.location:io.foldright.cffu.kotlin////PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/index.html -$dokka.location:io.foldright.cffu.kotlin//acceptEitherSuccess/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Consumer[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/accept-either-success.html -$dokka.location:io.foldright.cffu.kotlin//acceptEitherSuccessAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Consumer[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/accept-either-success-async.html -$dokka.location:io.foldright.cffu.kotlin//acceptEitherSuccessAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Consumer[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/accept-either-success-async.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.Array[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allOfCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.Array[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOf/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOf/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOf/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOf/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOfFastFail/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOfFastFail/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOfFastFail/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOfFastFail/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//applyToEitherSuccess/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success.html -$dokka.location:io.foldright.cffu.kotlin//applyToEitherSuccessAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success-async.html -$dokka.location:io.foldright.cffu.kotlin//applyToEitherSuccessAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success-async.html -$dokka.location:io.foldright.cffu.kotlin//cffuState/java.util.concurrent.CompletableFuture[*]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html -$dokka.location:io.foldright.cffu.kotlin//cffuUnwrap/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html -$dokka.location:io.foldright.cffu.kotlin//cffuUnwrap/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html -$dokka.location:io.foldright.cffu.kotlin//completeAsync/TypeParam(bounds=[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]])#java.util.function.Supplier[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/complete-async.html -$dokka.location:io.foldright.cffu.kotlin//completeAsync/TypeParam(bounds=[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]])#java.util.function.Supplier[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/complete-async.html -$dokka.location:io.foldright.cffu.kotlin//completeOnTimeout/TypeParam(bounds=[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]])#TypeParam(bounds=[kotlin.Any?])#kotlin.Long#java.util.concurrent.TimeUnit/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/complete-on-timeout.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple2[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple3[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple2[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple3[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component3/io.foldright.cffu.tuple.Tuple3[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component3.html -$dokka.location:io.foldright.cffu.kotlin//component3/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component3.html -$dokka.location:io.foldright.cffu.kotlin//component3/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component3.html -$dokka.location:io.foldright.cffu.kotlin//component4/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component4.html -$dokka.location:io.foldright.cffu.kotlin//component4/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component4.html -$dokka.location:io.foldright.cffu.kotlin//component5/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component5.html -$dokka.location:io.foldright.cffu.kotlin//copy/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/copy.html -$dokka.location:io.foldright.cffu.kotlin//exceptionNow/java.util.concurrent.CompletableFuture[*]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exception-now.html -$dokka.location:io.foldright.cffu.kotlin//exceptionallyAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[kotlin.Throwable,TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-async.html -$dokka.location:io.foldright.cffu.kotlin//exceptionallyAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[kotlin.Throwable,TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-async.html -$dokka.location:io.foldright.cffu.kotlin//exceptionallyCompose/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[kotlin.Throwable,java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose.html -$dokka.location:io.foldright.cffu.kotlin//exceptionallyComposeAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[kotlin.Throwable,java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose-async.html -$dokka.location:io.foldright.cffu.kotlin//exceptionallyComposeAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[kotlin.Throwable,java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose-async.html -$dokka.location:io.foldright.cffu.kotlin//join/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#kotlin.Long#java.util.concurrent.TimeUnit/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/join.html -$dokka.location:io.foldright.cffu.kotlin//minimalCompletionStage/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/minimal-completion-stage.html -$dokka.location:io.foldright.cffu.kotlin//newIncompleteFuture/java.util.concurrent.CompletableFuture[*]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/new-incomplete-future.html -$dokka.location:io.foldright.cffu.kotlin//orTimeout/TypeParam(bounds=[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]])#kotlin.Long#java.util.concurrent.TimeUnit/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/or-timeout.html -$dokka.location:io.foldright.cffu.kotlin//peek/TypeParam(bounds=[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]])#java.util.function.BiConsumer[TypeParam(bounds=[kotlin.Any?]),kotlin.Throwable]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/peek.html -$dokka.location:io.foldright.cffu.kotlin//peekAsync/TypeParam(bounds=[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]])#java.util.function.BiConsumer[TypeParam(bounds=[kotlin.Any?]),kotlin.Throwable]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/peek-async.html -$dokka.location:io.foldright.cffu.kotlin//peekAsync/TypeParam(bounds=[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]])#java.util.function.BiConsumer[TypeParam(bounds=[kotlin.Any?]),kotlin.Throwable]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/peek-async.html -$dokka.location:io.foldright.cffu.kotlin//resultNow/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/result-now.html -$dokka.location:io.foldright.cffu.kotlin//runAfterBothFastFail/java.util.concurrent.CompletionStage[*]#java.util.concurrent.CompletionStage[*]#java.lang.Runnable/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//runAfterBothFastFailAsync/java.util.concurrent.CompletionStage[*]#java.util.concurrent.CompletionStage[*]#java.lang.Runnable#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail-async.html -$dokka.location:io.foldright.cffu.kotlin//runAfterBothFastFailAsync/java.util.concurrent.CompletionStage[*]#java.util.concurrent.CompletionStage[*]#java.lang.Runnable/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail-async.html -$dokka.location:io.foldright.cffu.kotlin//runAfterEitherSuccess/java.util.concurrent.CompletionStage[*]#java.util.concurrent.CompletionStage[*]#java.lang.Runnable/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success.html -$dokka.location:io.foldright.cffu.kotlin//runAfterEitherSuccessAsync/java.util.concurrent.CompletionStage[*]#java.util.concurrent.CompletionStage[*]#java.lang.Runnable#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success-async.html -$dokka.location:io.foldright.cffu.kotlin//runAfterEitherSuccessAsync/java.util.concurrent.CompletionStage[*]#java.util.concurrent.CompletionStage[*]#java.lang.Runnable/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success-async.html -$dokka.location:io.foldright.cffu.kotlin//thenAcceptBothFastFail/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.BiConsumer[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//thenAcceptBothFastFailAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.BiConsumer[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail-async.html -$dokka.location:io.foldright.cffu.kotlin//thenAcceptBothFastFailAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.BiConsumer[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail-async.html -$dokka.location:io.foldright.cffu.kotlin//thenCombineFastFail/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.BiFunction[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//thenCombineFastFailAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.BiFunction[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail-async.html -$dokka.location:io.foldright.cffu.kotlin//thenCombineFastFailAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.BiFunction[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail-async.html -$dokka.location:io.foldright.cffu.kotlin//toCffu/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/to-cffu.html -$dokka.location:io.foldright.cffu.kotlin//toCffu/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/to-cffu.html -$dokka.location:io.foldright.cffu.kotlin//toCffu/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/to-cffu.html -$dokka.location:io.foldright.cffu.kotlin//toCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//toCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html -io.foldright.cffu.kotlin - diff --git a/dokka/1.0.0-Alpha3/images/anchor-copy-button.svg b/dokka/1.0.0-Alpha3/images/anchor-copy-button.svg deleted file mode 100644 index 19c1fa3f..00000000 --- a/dokka/1.0.0-Alpha3/images/anchor-copy-button.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/dokka/1.0.0-Alpha3/images/arrow_down.svg b/dokka/1.0.0-Alpha3/images/arrow_down.svg deleted file mode 100644 index 639aaf12..00000000 --- a/dokka/1.0.0-Alpha3/images/arrow_down.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/dokka/1.0.0-Alpha3/images/burger.svg b/dokka/1.0.0-Alpha3/images/burger.svg deleted file mode 100644 index fcca732b..00000000 --- a/dokka/1.0.0-Alpha3/images/burger.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha3/images/copy-icon.svg b/dokka/1.0.0-Alpha3/images/copy-icon.svg deleted file mode 100644 index 2cb02ec6..00000000 --- a/dokka/1.0.0-Alpha3/images/copy-icon.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/dokka/1.0.0-Alpha3/images/copy-successful-icon.svg b/dokka/1.0.0-Alpha3/images/copy-successful-icon.svg deleted file mode 100644 index c4b95383..00000000 --- a/dokka/1.0.0-Alpha3/images/copy-successful-icon.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/dokka/1.0.0-Alpha3/images/footer-go-to-link.svg b/dokka/1.0.0-Alpha3/images/footer-go-to-link.svg deleted file mode 100644 index a87add7a..00000000 --- a/dokka/1.0.0-Alpha3/images/footer-go-to-link.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/dokka/1.0.0-Alpha3/images/go-to-top-icon.svg b/dokka/1.0.0-Alpha3/images/go-to-top-icon.svg deleted file mode 100644 index abc3d1ce..00000000 --- a/dokka/1.0.0-Alpha3/images/go-to-top-icon.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/dokka/1.0.0-Alpha3/images/homepage.svg b/dokka/1.0.0-Alpha3/images/homepage.svg deleted file mode 100644 index e3c83b1c..00000000 --- a/dokka/1.0.0-Alpha3/images/homepage.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/dokka/1.0.0-Alpha3/images/logo-icon.svg b/dokka/1.0.0-Alpha3/images/logo-icon.svg deleted file mode 100644 index e42f9570..00000000 --- a/dokka/1.0.0-Alpha3/images/logo-icon.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha3/images/nav-icons/abstract-class-kotlin.svg b/dokka/1.0.0-Alpha3/images/nav-icons/abstract-class-kotlin.svg deleted file mode 100644 index 19d6148c..00000000 --- a/dokka/1.0.0-Alpha3/images/nav-icons/abstract-class-kotlin.svg +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha3/images/nav-icons/abstract-class.svg b/dokka/1.0.0-Alpha3/images/nav-icons/abstract-class.svg deleted file mode 100644 index 60182030..00000000 --- a/dokka/1.0.0-Alpha3/images/nav-icons/abstract-class.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha3/images/nav-icons/annotation-kotlin.svg b/dokka/1.0.0-Alpha3/images/nav-icons/annotation-kotlin.svg deleted file mode 100644 index b90f508c..00000000 --- a/dokka/1.0.0-Alpha3/images/nav-icons/annotation-kotlin.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha3/images/nav-icons/annotation.svg b/dokka/1.0.0-Alpha3/images/nav-icons/annotation.svg deleted file mode 100644 index b80c54b4..00000000 --- a/dokka/1.0.0-Alpha3/images/nav-icons/annotation.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha3/images/nav-icons/class-kotlin.svg b/dokka/1.0.0-Alpha3/images/nav-icons/class-kotlin.svg deleted file mode 100644 index 797a2423..00000000 --- a/dokka/1.0.0-Alpha3/images/nav-icons/class-kotlin.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha3/images/nav-icons/class.svg b/dokka/1.0.0-Alpha3/images/nav-icons/class.svg deleted file mode 100644 index 3f1ad167..00000000 --- a/dokka/1.0.0-Alpha3/images/nav-icons/class.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha3/images/nav-icons/enum-kotlin.svg b/dokka/1.0.0-Alpha3/images/nav-icons/enum-kotlin.svg deleted file mode 100644 index 775a7cc9..00000000 --- a/dokka/1.0.0-Alpha3/images/nav-icons/enum-kotlin.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha3/images/nav-icons/enum.svg b/dokka/1.0.0-Alpha3/images/nav-icons/enum.svg deleted file mode 100644 index fa7f2476..00000000 --- a/dokka/1.0.0-Alpha3/images/nav-icons/enum.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha3/images/nav-icons/exception-class.svg b/dokka/1.0.0-Alpha3/images/nav-icons/exception-class.svg deleted file mode 100644 index c0b2bdeb..00000000 --- a/dokka/1.0.0-Alpha3/images/nav-icons/exception-class.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha3/images/nav-icons/field-value.svg b/dokka/1.0.0-Alpha3/images/nav-icons/field-value.svg deleted file mode 100644 index 2771ee56..00000000 --- a/dokka/1.0.0-Alpha3/images/nav-icons/field-value.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - diff --git a/dokka/1.0.0-Alpha3/images/nav-icons/field-variable.svg b/dokka/1.0.0-Alpha3/images/nav-icons/field-variable.svg deleted file mode 100644 index e2d2bbd0..00000000 --- a/dokka/1.0.0-Alpha3/images/nav-icons/field-variable.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - diff --git a/dokka/1.0.0-Alpha3/images/nav-icons/function.svg b/dokka/1.0.0-Alpha3/images/nav-icons/function.svg deleted file mode 100644 index f0da64a0..00000000 --- a/dokka/1.0.0-Alpha3/images/nav-icons/function.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha3/images/nav-icons/interface-kotlin.svg b/dokka/1.0.0-Alpha3/images/nav-icons/interface-kotlin.svg deleted file mode 100644 index 5e163260..00000000 --- a/dokka/1.0.0-Alpha3/images/nav-icons/interface-kotlin.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha3/images/nav-icons/interface.svg b/dokka/1.0.0-Alpha3/images/nav-icons/interface.svg deleted file mode 100644 index 32063ba2..00000000 --- a/dokka/1.0.0-Alpha3/images/nav-icons/interface.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha3/images/nav-icons/object.svg b/dokka/1.0.0-Alpha3/images/nav-icons/object.svg deleted file mode 100644 index 31f0ee3e..00000000 --- a/dokka/1.0.0-Alpha3/images/nav-icons/object.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha3/images/nav-icons/typealias-kotlin.svg b/dokka/1.0.0-Alpha3/images/nav-icons/typealias-kotlin.svg deleted file mode 100644 index f4bb238b..00000000 --- a/dokka/1.0.0-Alpha3/images/nav-icons/typealias-kotlin.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha3/images/theme-toggle.svg b/dokka/1.0.0-Alpha3/images/theme-toggle.svg deleted file mode 100644 index df86202b..00000000 --- a/dokka/1.0.0-Alpha3/images/theme-toggle.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/dokka/1.0.0-Alpha3/index.html b/dokka/1.0.0-Alpha3/index.html index 4c656486..04afc306 100644 --- a/dokka/1.0.0-Alpha3/index.html +++ b/dokka/1.0.0-Alpha3/index.html @@ -1,99 +1,8 @@ - - - - - cffu-kotlin - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

cffu-kotlin

-
-

Packages

-
-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
- -
-
-
- + + + + + diff --git a/dokka/1.0.0-Alpha3/navigation.html b/dokka/1.0.0-Alpha3/navigation.html deleted file mode 100644 index 51725bec..00000000 --- a/dokka/1.0.0-Alpha3/navigation.html +++ /dev/null @@ -1,154 +0,0 @@ - - diff --git a/dokka/1.0.0-Alpha3/scripts/clipboard.js b/dokka/1.0.0-Alpha3/scripts/clipboard.js deleted file mode 100644 index 7a4f33c5..00000000 --- a/dokka/1.0.0-Alpha3/scripts/clipboard.js +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. - */ - -window.addEventListener('load', () => { - document.querySelectorAll('span.copy-icon').forEach(element => { - element.addEventListener('click', (el) => copyElementsContentToClipboard(element)); - }) - - document.querySelectorAll('span.anchor-icon').forEach(element => { - element.addEventListener('click', (el) => { - if(element.hasAttribute('pointing-to')){ - const location = hrefWithoutCurrentlyUsedAnchor() + '#' + element.getAttribute('pointing-to') - copyTextToClipboard(element, location) - } - }); - }) -}) - -const copyElementsContentToClipboard = (element) => { - const selection = window.getSelection(); - const range = document.createRange(); - range.selectNodeContents(element.parentNode.parentNode); - selection.removeAllRanges(); - selection.addRange(range); - - copyAndShowPopup(element, () => selection.removeAllRanges()) -} - -const copyTextToClipboard = (element, text) => { - var textarea = document.createElement("textarea"); - textarea.textContent = text; - textarea.style.position = "fixed"; - document.body.appendChild(textarea); - textarea.select(); - - copyAndShowPopup(element, () => document.body.removeChild(textarea)) -} - -const copyAndShowPopup = (element, after) => { - try { - document.execCommand('copy'); - element.nextElementSibling.classList.add('active-popup'); - setTimeout(() => { - element.nextElementSibling.classList.remove('active-popup'); - }, 1200); - } catch (e) { - console.error('Failed to write to clipboard:', e) - } - finally { - if(after) after() - } -} - -const hrefWithoutCurrentlyUsedAnchor = () => window.location.href.split('#')[0] - diff --git a/dokka/1.0.0-Alpha3/scripts/main.js b/dokka/1.0.0-Alpha3/scripts/main.js deleted file mode 100644 index ba6c3473..00000000 --- a/dokka/1.0.0-Alpha3/scripts/main.js +++ /dev/null @@ -1,44 +0,0 @@ -(()=>{var e={8527:e=>{e.exports=''},5570:e=>{e.exports=''},107:e=>{e.exports=''},7224:e=>{e.exports=''},538:e=>{e.exports=''},1924:(e,n,t)=>{"use strict";var r=t(210),o=t(5559),i=o(r("String.prototype.indexOf"));e.exports=function(e,n){var t=r(e,!!n);return"function"==typeof t&&i(e,".prototype.")>-1?o(t):t}},5559:(e,n,t)=>{"use strict";var r=t(8612),o=t(210),i=o("%Function.prototype.apply%"),a=o("%Function.prototype.call%"),l=o("%Reflect.apply%",!0)||r.call(a,i),c=o("%Object.getOwnPropertyDescriptor%",!0),u=o("%Object.defineProperty%",!0),s=o("%Math.max%");if(u)try{u({},"a",{value:1})}catch(e){u=null}e.exports=function(e){var n=l(r,a,arguments);if(c&&u){var t=c(n,"length");t.configurable&&u(n,"length",{value:1+s(0,e.length-(arguments.length-1))})}return n};var f=function(){return l(r,i,arguments)};u?u(e.exports,"apply",{value:f}):e.exports.apply=f},4184:(e,n)=>{var t; -/*! - Copyright (c) 2018 Jed Watson. - Licensed under the MIT License (MIT), see - http://jedwatson.github.io/classnames -*/!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],n=0;n{"use strict";e.exports=function(e,n){var t=this,r=t.constructor;return t.options=Object.assign({storeInstancesGlobally:!0},n||{}),t.callbacks={},t.directMap={},t.sequenceLevels={},t.resetTimer=null,t.ignoreNextKeyup=!1,t.ignoreNextKeypress=!1,t.nextExpectedAction=!1,t.element=e,t.addEvents(),t.options.storeInstancesGlobally&&r.instances.push(t),t},e.exports.prototype.bind=t(2207),e.exports.prototype.bindMultiple=t(3396),e.exports.prototype.unbind=t(9208),e.exports.prototype.trigger=t(9855),e.exports.prototype.reset=t(6214),e.exports.prototype.stopCallback=t(3450),e.exports.prototype.handleKey=t(3067),e.exports.prototype.addEvents=t(718),e.exports.prototype.bindSingle=t(8763),e.exports.prototype.getKeyInfo=t(5825),e.exports.prototype.pickBestAction=t(8608),e.exports.prototype.getReverseMap=t(3956),e.exports.prototype.getMatches=t(3373),e.exports.prototype.resetSequences=t(3346),e.exports.prototype.fireCallback=t(2684),e.exports.prototype.bindSequence=t(7103),e.exports.prototype.resetSequenceTimer=t(7309),e.exports.prototype.detach=t(7554),e.exports.instances=[],e.exports.reset=t(1822),e.exports.REVERSE_MAP=null},718:(e,n,t)=>{"use strict";e.exports=function(){var e=this,n=t(4323),r=e.element;e.eventHandler=t(9646).bind(e),n(r,"keypress",e.eventHandler),n(r,"keydown",e.eventHandler),n(r,"keyup",e.eventHandler)}},2207:e=>{"use strict";e.exports=function(e,n,t){return e=e instanceof Array?e:[e],this.bindMultiple(e,n,t),this}},3396:e=>{"use strict";e.exports=function(e,n,t){for(var r=0;r{"use strict";e.exports=function(e,n,r,o){var i=this;function a(n){return function(){i.nextExpectedAction=n,++i.sequenceLevels[e],i.resetSequenceTimer()}}function l(n){var a;i.fireCallback(r,n,e),"keyup"!==o&&(a=t(6770),i.ignoreNextKeyup=a(n)),setTimeout((function(){i.resetSequences()}),10)}i.sequenceLevels[e]=0;for(var c=0;c{"use strict";e.exports=function(e,n,t,r,o){var i=this;i.directMap[e+":"+t]=n;var a,l=(e=e.replace(/\s+/g," ")).split(" ");l.length>1?i.bindSequence(e,l,n,t):(a=i.getKeyInfo(e,t),i.callbacks[a.key]=i.callbacks[a.key]||[],i.getMatches(a.key,a.modifiers,{type:a.action},r,e,o),i.callbacks[a.key][r?"unshift":"push"]({callback:n,modifiers:a.modifiers,action:a.action,seq:r,level:o,combo:e}))}},7554:(e,n,t)=>{var r=t(4323).off;e.exports=function(){var e=this,n=e.element;r(n,"keypress",e.eventHandler),r(n,"keydown",e.eventHandler),r(n,"keyup",e.eventHandler)}},4323:e=>{function n(e,n,t,r){return!e.addEventListener&&(n="on"+n),(e.addEventListener||e.attachEvent).call(e,n,t,r),t}e.exports=n,e.exports.on=n,e.exports.off=function(e,n,t,r){return!e.removeEventListener&&(n="on"+n),(e.removeEventListener||e.detachEvent).call(e,n,t,r),t}},2684:(e,n,t)=>{"use strict";e.exports=function(e,n,r,o){this.stopCallback(n,n.target||n.srcElement,r,o)||!1===e(n,r)&&(t(1350)(n),t(6103)(n))}},5825:(e,n,t)=>{"use strict";e.exports=function(e,n){var r,o,i,a,l,c,u=[];for(r=t(4520)(e),a=t(7549),l=t(5355),c=t(8581),i=0;i{"use strict";e.exports=function(e,n,r,o,i,a){var l,c,u,s,f=this,p=[],d=r.type;"keypress"!==d||r.code&&"Arrow"===r.code.slice(0,5)||(f.callbacks["any-character"]||[]).forEach((function(e){p.push(e)}));if(!f.callbacks[e])return p;for(u=t(8581),"keyup"===d&&u(e)&&(n=[e]),l=0;l{"use strict";e.exports=function(){var e,n=this.constructor;if(!n.REVERSE_MAP)for(var r in n.REVERSE_MAP={},e=t(4766))r>95&&r<112||e.hasOwnProperty(r)&&(n.REVERSE_MAP[e[r]]=r);return n.REVERSE_MAP}},3067:(e,n,t)=>{"use strict";e.exports=function(e,n,r){var o,i,a,l,c=this,u={},s=0,f=!1;for(o=c.getMatches(e,n,r),i=0;i{"use strict";e.exports=function(e){var n,r=this;"number"!=typeof e.which&&(e.which=e.keyCode);var o=t(6770)(e);void 0!==o&&("keyup"!==e.type||r.ignoreNextKeyup!==o?(n=t(4610),r.handleKey(o,n(e),e)):r.ignoreNextKeyup=!1)}},5532:e=>{"use strict";e.exports=function(e,n){return e.sort().join(",")===n.sort().join(",")}},8608:e=>{"use strict";e.exports=function(e,n,t){return t||(t=this.getReverseMap()[e]?"keydown":"keypress"),"keypress"===t&&n.length&&(t="keydown"),t}},6214:e=>{"use strict";e.exports=function(){return this.callbacks={},this.directMap={},this}},7309:e=>{"use strict";e.exports=function(){var e=this;clearTimeout(e.resetTimer),e.resetTimer=setTimeout((function(){e.resetSequences()}),1e3)}},3346:e=>{"use strict";e.exports=function(e){var n=this;e=e||{};var t,r=!1;for(t in n.sequenceLevels)e[t]?r=!0:n.sequenceLevels[t]=0;r||(n.nextExpectedAction=!1)}},3450:e=>{"use strict";e.exports=function(e,n){if((" "+n.className+" ").indexOf(" combokeys ")>-1)return!1;var t=n.tagName.toLowerCase();return"input"===t||"select"===t||"textarea"===t||n.isContentEditable}},9855:e=>{"use strict";e.exports=function(e,n){return this.directMap[e+":"+n]&&this.directMap[e+":"+n]({},e),this}},9208:e=>{"use strict";e.exports=function(e,n){return this.bind(e,(function(){}),n)}},1822:e=>{"use strict";e.exports=function(){this.instances.forEach((function(e){e.reset()}))}},6770:(e,n,t)=>{"use strict";e.exports=function(e){var n,r;if(n=t(4766),r=t(5295),"keypress"===e.type){var o=String.fromCharCode(e.which);return e.shiftKey||(o=o.toLowerCase()),o}return void 0!==n[e.which]?n[e.which]:void 0!==r[e.which]?r[e.which]:String.fromCharCode(e.which).toLowerCase()}},4610:e=>{"use strict";e.exports=function(e){var n=[];return e.shiftKey&&n.push("shift"),e.altKey&&n.push("alt"),e.ctrlKey&&n.push("ctrl"),e.metaKey&&n.push("meta"),n}},8581:e=>{"use strict";e.exports=function(e){return"shift"===e||"ctrl"===e||"alt"===e||"meta"===e}},4520:e=>{"use strict";e.exports=function(e){return"+"===e?["+"]:e.split("+")}},1350:e=>{"use strict";e.exports=function(e){e.preventDefault?e.preventDefault():e.returnValue=!1}},5355:e=>{"use strict";e.exports={"~":"`","!":"1","@":"2","#":"3",$:"4","%":"5","^":"6","&":"7","*":"8","(":"9",")":"0",_:"-","+":"=",":":";",'"':"'","<":",",">":".","?":"/","|":"\\"}},7549:e=>{"use strict";e.exports={option:"alt",command:"meta",return:"enter",escape:"esc",mod:/Mac|iPod|iPhone|iPad/.test(navigator.platform)?"meta":"ctrl"}},5295:e=>{"use strict";e.exports={106:"*",107:"plus",109:"minus",110:".",111:"/",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"}},4766:e=>{"use strict";e.exports={8:"backspace",9:"tab",13:"enter",16:"shift",17:"ctrl",18:"alt",20:"capslock",27:"esc",32:"space",33:"pageup",34:"pagedown",35:"end",36:"home",37:"left",38:"up",39:"right",40:"down",45:"ins",46:"del",91:"meta",93:"meta",173:"minus",187:"plus",189:"minus",224:"meta"};for(var n=1;n<20;++n)e.exports[111+n]="f"+n;for(n=0;n<=9;++n)e.exports[n+96]=n},6103:e=>{"use strict";e.exports=function(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0}},3362:()=>{var e;!function(){var e=Math.PI,n=2*e,t=e/180,r=document.createElement("div");document.head.appendChild(r);var o=self.ConicGradient=function(e){o.all.push(this),e=e||{},this.canvas=document.createElement("canvas"),this.context=this.canvas.getContext("2d"),this.repeating=!!e.repeating,this.size=e.size||Math.max(innerWidth,innerHeight),this.canvas.width=this.canvas.height=this.size;var n=e.stops;this.stops=(n||"").split(/\s*,(?![^(]*\))\s*/),this.from=0;for(var t=0;t0){var i=this.stops[0].clone();i.pos=0,this.stops.unshift(i)}if(void 0===this.stops[this.stops.length-1].pos)this.stops[this.stops.length-1].pos=1;else if(!this.repeating&&this.stops[this.stops.length-1].pos<1){var a=this.stops[this.stops.length-1].clone();a.pos=1,this.stops.push(a)}if(this.stops.forEach((function(e,n){if(void 0===e.pos){for(var t=n+1;this[t];t++)if(void 0!==this[t].pos){e.pos=this[n-1].pos+(this[t].pos-this[n-1].pos)/(t-n+1);break}}else n>0&&(e.pos=Math.max(e.pos,this[n-1].pos))}),this.stops),this.repeating){var l=(n=this.stops.slice())[n.length-1].pos-n[0].pos;for(t=0;this.stops[this.stops.length-1].pos<1&&t<1e4;t++)for(var c=0;c'},get png(){return this.canvas.toDataURL()},get r(){return Math.sqrt(2)*this.size/2},paint:function(){var e,n,r,o=this.context,i=this.r,a=this.size/2,l=0,c=this.stops[l];o.translate(this.size/2,this.size/2),o.rotate(-90*t),o.rotate(this.from*t),o.translate(-this.size/2,-this.size/2);for(var u=0;u<360;){if(u/360+1e-5>=c.pos){do{e=c,l++,c=this.stops[l]}while(c&&c!=e&&c.pos===e.pos);if(!c)break;var s=e.color+""==c.color+""&&e!=c;n=e.color.map((function(e,n){return c.color[n]-e}))}r=(u/360-e.pos)/(c.pos-e.pos);var f=s?c.color:n.map((function(n,t){var o=n*r+e.color[t];return t<3?255&o:o}));if(o.fillStyle="rgba("+f.join(",")+")",o.beginPath(),o.moveTo(a,a),s)var p=360*(c.pos-e.pos);else p=.5;var d=u*t,h=(d=Math.min(360*t,d))+p*t;h=Math.min(360*t,h+.02),o.arc(a,a,i,d,h),o.closePath(),o.fill(),u+=p}}},o.ColorStop=function(e,t){if(this.gradient=e,t){var r=t.match(/^(.+?)(?:\s+([\d.]+)(%|deg|turn|grad|rad)?)?(?:\s+([\d.]+)(%|deg|turn|grad|rad)?)?\s*$/);if(this.color=o.ColorStop.colorToRGBA(r[1]),r[2]){var i=r[3];"%"==i||"0"===r[2]&&!i?this.pos=r[2]/100:"turn"==i?this.pos=+r[2]:"deg"==i?this.pos=r[2]/360:"grad"==i?this.pos=r[2]/400:"rad"==i&&(this.pos=r[2]/n)}r[4]&&(this.next=new o.ColorStop(e,r[1]+" "+r[4]+r[5]))}},o.ColorStop.prototype={clone:function(){var e=new o.ColorStop(this.gradient);return e.color=this.color,e.pos=this.pos,e},toString:function(){return"rgba("+this.color.join(", ")+") "+100*this.pos+"%"}},o.ColorStop.colorToRGBA=function(e){if(!Array.isArray(e)&&-1==e.indexOf("from")){r.style.color=e;var n=getComputedStyle(r).color.match(/rgba?\(([\d.]+), ([\d.]+), ([\d.]+)(?:, ([\d.]+))?\)/);return n&&(n.shift(),(n=n.map((function(e){return+e})))[3]=isNaN(n[3])?1:n[3]),n||[0,0,0,0]}return e}}(),self.StyleFix&&((e=document.createElement("p")).style.backgroundImage="conic-gradient(white, black)",e.style.backgroundImage=PrefixFree.prefix+"conic-gradient(white, black)",e.style.backgroundImage||StyleFix.register((function(e,n){return e.indexOf("conic-gradient")>-1&&(e=e.replace(/(?:repeating-)?conic-gradient\(\s*((?:\([^()]+\)|[^;()}])+?)\)/g,(function(e,n){return new ConicGradient({stops:n,repeating:e.indexOf("repeating-")>-1})}))),e})))},9662:(e,n,t)=>{var r=t(7854),o=t(614),i=t(6330),a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not a function")}},9483:(e,n,t)=>{var r=t(7854),o=t(4411),i=t(6330),a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not a constructor")}},6077:(e,n,t)=>{var r=t(7854),o=t(614),i=r.String,a=r.TypeError;e.exports=function(e){if("object"==typeof e||o(e))return e;throw a("Can't set "+i(e)+" as a prototype")}},1223:(e,n,t)=>{var r=t(5112),o=t(30),i=t(3070),a=r("unscopables"),l=Array.prototype;null==l[a]&&i.f(l,a,{configurable:!0,value:o(null)}),e.exports=function(e){l[a][e]=!0}},1530:(e,n,t)=>{"use strict";var r=t(8710).charAt;e.exports=function(e,n,t){return n+(t?r(e,n).length:1)}},5787:(e,n,t)=>{var r=t(7854),o=t(7976),i=r.TypeError;e.exports=function(e,n){if(o(n,e))return e;throw i("Incorrect invocation")}},9670:(e,n,t)=>{var r=t(7854),o=t(111),i=r.String,a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not an object")}},7556:(e,n,t)=>{var r=t(7293);e.exports=r((function(){if("function"==typeof ArrayBuffer){var e=new ArrayBuffer(8);Object.isExtensible(e)&&Object.defineProperty(e,"a",{value:8})}}))},8533:(e,n,t)=>{"use strict";var r=t(2092).forEach,o=t(9341)("forEach");e.exports=o?[].forEach:function(e){return r(this,e,arguments.length>1?arguments[1]:void 0)}},8457:(e,n,t)=>{"use strict";var r=t(7854),o=t(9974),i=t(6916),a=t(7908),l=t(3411),c=t(7659),u=t(4411),s=t(6244),f=t(6135),p=t(8554),d=t(1246),h=r.Array;e.exports=function(e){var n=a(e),t=u(this),r=arguments.length,g=r>1?arguments[1]:void 0,v=void 0!==g;v&&(g=o(g,r>2?arguments[2]:void 0));var A,b,m,y,E,_,C=d(n),w=0;if(!C||this==h&&c(C))for(A=s(n),b=t?new this(A):h(A);A>w;w++)_=v?g(n[w],w):n[w],f(b,w,_);else for(E=(y=p(n,C)).next,b=t?new this:[];!(m=i(E,y)).done;w++)_=v?l(y,g,[m.value,w],!0):m.value,f(b,w,_);return b.length=w,b}},1318:(e,n,t)=>{var r=t(5656),o=t(1400),i=t(6244),a=function(e){return function(n,t,a){var l,c=r(n),u=i(c),s=o(a,u);if(e&&t!=t){for(;u>s;)if((l=c[s++])!=l)return!0}else for(;u>s;s++)if((e||s in c)&&c[s]===t)return e||s||0;return!e&&-1}};e.exports={includes:a(!0),indexOf:a(!1)}},2092:(e,n,t)=>{var r=t(9974),o=t(1702),i=t(8361),a=t(7908),l=t(6244),c=t(5417),u=o([].push),s=function(e){var n=1==e,t=2==e,o=3==e,s=4==e,f=6==e,p=7==e,d=5==e||f;return function(h,g,v,A){for(var b,m,y=a(h),E=i(y),_=r(g,v),C=l(E),w=0,x=A||c,k=n?x(h,C):t||p?x(h,0):void 0;C>w;w++)if((d||w in E)&&(m=_(b=E[w],w,y),e))if(n)k[w]=m;else if(m)switch(e){case 3:return!0;case 5:return b;case 6:return w;case 2:u(k,b)}else switch(e){case 4:return!1;case 7:u(k,b)}return f?-1:o||s?s:k}};e.exports={forEach:s(0),map:s(1),filter:s(2),some:s(3),every:s(4),find:s(5),findIndex:s(6),filterReject:s(7)}},1194:(e,n,t)=>{var r=t(7293),o=t(5112),i=t(7392),a=o("species");e.exports=function(e){return i>=51||!r((function(){var n=[];return(n.constructor={})[a]=function(){return{foo:1}},1!==n[e](Boolean).foo}))}},9341:(e,n,t)=>{"use strict";var r=t(7293);e.exports=function(e,n){var t=[][e];return!!t&&r((function(){t.call(null,n||function(){throw 1},1)}))}},3671:(e,n,t)=>{var r=t(7854),o=t(9662),i=t(7908),a=t(8361),l=t(6244),c=r.TypeError,u=function(e){return function(n,t,r,u){o(t);var s=i(n),f=a(s),p=l(s),d=e?p-1:0,h=e?-1:1;if(r<2)for(;;){if(d in f){u=f[d],d+=h;break}if(d+=h,e?d<0:p<=d)throw c("Reduce of empty array with no initial value")}for(;e?d>=0:p>d;d+=h)d in f&&(u=t(u,f[d],d,s));return u}};e.exports={left:u(!1),right:u(!0)}},206:(e,n,t)=>{var r=t(1702);e.exports=r([].slice)},4362:(e,n,t)=>{var r=t(206),o=Math.floor,i=function(e,n){var t=e.length,c=o(t/2);return t<8?a(e,n):l(e,i(r(e,0,c),n),i(r(e,c),n),n)},a=function(e,n){for(var t,r,o=e.length,i=1;i0;)e[r]=e[--r];r!==i++&&(e[r]=t)}return e},l=function(e,n,t,r){for(var o=n.length,i=t.length,a=0,l=0;a{var r=t(7854),o=t(3157),i=t(4411),a=t(111),l=t(5112)("species"),c=r.Array;e.exports=function(e){var n;return o(e)&&(n=e.constructor,(i(n)&&(n===c||o(n.prototype))||a(n)&&null===(n=n[l]))&&(n=void 0)),void 0===n?c:n}},5417:(e,n,t)=>{var r=t(7475);e.exports=function(e,n){return new(r(e))(0===n?0:n)}},3411:(e,n,t)=>{var r=t(9670),o=t(9212);e.exports=function(e,n,t,i){try{return i?n(r(t)[0],t[1]):n(t)}catch(n){o(e,"throw",n)}}},7072:(e,n,t)=>{var r=t(5112)("iterator"),o=!1;try{var i=0,a={next:function(){return{done:!!i++}},return:function(){o=!0}};a[r]=function(){return this},Array.from(a,(function(){throw 2}))}catch(e){}e.exports=function(e,n){if(!n&&!o)return!1;var t=!1;try{var i={};i[r]=function(){return{next:function(){return{done:t=!0}}}},e(i)}catch(e){}return t}},4326:(e,n,t)=>{var r=t(1702),o=r({}.toString),i=r("".slice);e.exports=function(e){return i(o(e),8,-1)}},648:(e,n,t)=>{var r=t(7854),o=t(1694),i=t(614),a=t(4326),l=t(5112)("toStringTag"),c=r.Object,u="Arguments"==a(function(){return arguments}());e.exports=o?a:function(e){var n,t,r;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(t=function(e,n){try{return e[n]}catch(e){}}(n=c(e),l))?t:u?a(n):"Object"==(r=a(n))&&i(n.callee)?"Arguments":r}},5631:(e,n,t)=>{"use strict";var r=t(3070).f,o=t(30),i=t(2248),a=t(9974),l=t(5787),c=t(408),u=t(654),s=t(6340),f=t(9781),p=t(2423).fastKey,d=t(9909),h=d.set,g=d.getterFor;e.exports={getConstructor:function(e,n,t,u){var s=e((function(e,r){l(e,d),h(e,{type:n,index:o(null),first:void 0,last:void 0,size:0}),f||(e.size=0),null!=r&&c(r,e[u],{that:e,AS_ENTRIES:t})})),d=s.prototype,v=g(n),A=function(e,n,t){var r,o,i=v(e),a=b(e,n);return a?a.value=t:(i.last=a={index:o=p(n,!0),key:n,value:t,previous:r=i.last,next:void 0,removed:!1},i.first||(i.first=a),r&&(r.next=a),f?i.size++:e.size++,"F"!==o&&(i.index[o]=a)),e},b=function(e,n){var t,r=v(e),o=p(n);if("F"!==o)return r.index[o];for(t=r.first;t;t=t.next)if(t.key==n)return t};return i(d,{clear:function(){for(var e=v(this),n=e.index,t=e.first;t;)t.removed=!0,t.previous&&(t.previous=t.previous.next=void 0),delete n[t.index],t=t.next;e.first=e.last=void 0,f?e.size=0:this.size=0},delete:function(e){var n=this,t=v(n),r=b(n,e);if(r){var o=r.next,i=r.previous;delete t.index[r.index],r.removed=!0,i&&(i.next=o),o&&(o.previous=i),t.first==r&&(t.first=o),t.last==r&&(t.last=i),f?t.size--:n.size--}return!!r},forEach:function(e){for(var n,t=v(this),r=a(e,arguments.length>1?arguments[1]:void 0);n=n?n.next:t.first;)for(r(n.value,n.key,this);n&&n.removed;)n=n.previous},has:function(e){return!!b(this,e)}}),i(d,t?{get:function(e){var n=b(this,e);return n&&n.value},set:function(e,n){return A(this,0===e?0:e,n)}}:{add:function(e){return A(this,e=0===e?0:e,e)}}),f&&r(d,"size",{get:function(){return v(this).size}}),s},setStrong:function(e,n,t){var r=n+" Iterator",o=g(n),i=g(r);u(e,n,(function(e,n){h(this,{type:r,target:e,state:o(e),kind:n,last:void 0})}),(function(){for(var e=i(this),n=e.kind,t=e.last;t&&t.removed;)t=t.previous;return e.target&&(e.last=t=t?t.next:e.state.first)?"keys"==n?{value:t.key,done:!1}:"values"==n?{value:t.value,done:!1}:{value:[t.key,t.value],done:!1}:(e.target=void 0,{value:void 0,done:!0})}),t?"entries":"values",!t,!0),s(n)}}},9320:(e,n,t)=>{"use strict";var r=t(1702),o=t(2248),i=t(2423).getWeakData,a=t(9670),l=t(111),c=t(5787),u=t(408),s=t(2092),f=t(2597),p=t(9909),d=p.set,h=p.getterFor,g=s.find,v=s.findIndex,A=r([].splice),b=0,m=function(e){return e.frozen||(e.frozen=new y)},y=function(){this.entries=[]},E=function(e,n){return g(e.entries,(function(e){return e[0]===n}))};y.prototype={get:function(e){var n=E(this,e);if(n)return n[1]},has:function(e){return!!E(this,e)},set:function(e,n){var t=E(this,e);t?t[1]=n:this.entries.push([e,n])},delete:function(e){var n=v(this.entries,(function(n){return n[0]===e}));return~n&&A(this.entries,n,1),!!~n}},e.exports={getConstructor:function(e,n,t,r){var s=e((function(e,o){c(e,p),d(e,{type:n,id:b++,frozen:void 0}),null!=o&&u(o,e[r],{that:e,AS_ENTRIES:t})})),p=s.prototype,g=h(n),v=function(e,n,t){var r=g(e),o=i(a(n),!0);return!0===o?m(r).set(n,t):o[r.id]=t,e};return o(p,{delete:function(e){var n=g(this);if(!l(e))return!1;var t=i(e);return!0===t?m(n).delete(e):t&&f(t,n.id)&&delete t[n.id]},has:function(e){var n=g(this);if(!l(e))return!1;var t=i(e);return!0===t?m(n).has(e):t&&f(t,n.id)}}),o(p,t?{get:function(e){var n=g(this);if(l(e)){var t=i(e);return!0===t?m(n).get(e):t?t[n.id]:void 0}},set:function(e,n){return v(this,e,n)}}:{add:function(e){return v(this,e,!0)}}),s}}},7710:(e,n,t)=>{"use strict";var r=t(2109),o=t(7854),i=t(1702),a=t(4705),l=t(1320),c=t(2423),u=t(408),s=t(5787),f=t(614),p=t(111),d=t(7293),h=t(7072),g=t(8003),v=t(9587);e.exports=function(e,n,t){var A=-1!==e.indexOf("Map"),b=-1!==e.indexOf("Weak"),m=A?"set":"add",y=o[e],E=y&&y.prototype,_=y,C={},w=function(e){var n=i(E[e]);l(E,e,"add"==e?function(e){return n(this,0===e?0:e),this}:"delete"==e?function(e){return!(b&&!p(e))&&n(this,0===e?0:e)}:"get"==e?function(e){return b&&!p(e)?void 0:n(this,0===e?0:e)}:"has"==e?function(e){return!(b&&!p(e))&&n(this,0===e?0:e)}:function(e,t){return n(this,0===e?0:e,t),this})};if(a(e,!f(y)||!(b||E.forEach&&!d((function(){(new y).entries().next()})))))_=t.getConstructor(n,e,A,m),c.enable();else if(a(e,!0)){var x=new _,k=x[m](b?{}:-0,1)!=x,S=d((function(){x.has(1)})),O=h((function(e){new y(e)})),B=!b&&d((function(){for(var e=new y,n=5;n--;)e[m](n,n);return!e.has(-0)}));O||((_=n((function(e,n){s(e,E);var t=v(new y,e,_);return null!=n&&u(n,t[m],{that:t,AS_ENTRIES:A}),t}))).prototype=E,E.constructor=_),(S||B)&&(w("delete"),w("has"),A&&w("get")),(B||k)&&w(m),b&&E.clear&&delete E.clear}return C[e]=_,r({global:!0,forced:_!=y},C),g(_,e),b||t.setStrong(_,e,A),_}},9920:(e,n,t)=>{var r=t(2597),o=t(3887),i=t(1236),a=t(3070);e.exports=function(e,n){for(var t=o(n),l=a.f,c=i.f,u=0;u{var r=t(5112)("match");e.exports=function(e){var n=/./;try{"/./"[e](n)}catch(t){try{return n[r]=!1,"/./"[e](n)}catch(e){}}return!1}},8544:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e)!==e.prototype}))},4230:(e,n,t)=>{var r=t(1702),o=t(4488),i=t(1340),a=/"/g,l=r("".replace);e.exports=function(e,n,t,r){var c=i(o(e)),u="<"+n;return""!==t&&(u+=" "+t+'="'+l(i(r),a,""")+'"'),u+">"+c+""}},4994:(e,n,t)=>{"use strict";var r=t(3383).IteratorPrototype,o=t(30),i=t(9114),a=t(8003),l=t(7497),c=function(){return this};e.exports=function(e,n,t){var u=n+" Iterator";return e.prototype=o(r,{next:i(1,t)}),a(e,u,!1,!0),l[u]=c,e}},8880:(e,n,t)=>{var r=t(9781),o=t(3070),i=t(9114);e.exports=r?function(e,n,t){return o.f(e,n,i(1,t))}:function(e,n,t){return e[n]=t,e}},9114:e=>{e.exports=function(e,n){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:n}}},6135:(e,n,t)=>{"use strict";var r=t(4948),o=t(3070),i=t(9114);e.exports=function(e,n,t){var a=r(n);a in e?o.f(e,a,i(0,t)):e[a]=t}},8709:(e,n,t)=>{"use strict";var r=t(7854),o=t(9670),i=t(2140),a=r.TypeError;e.exports=function(e){if(o(this),"string"===e||"default"===e)e="string";else if("number"!==e)throw a("Incorrect hint");return i(this,e)}},654:(e,n,t)=>{"use strict";var r=t(2109),o=t(6916),i=t(1913),a=t(6530),l=t(614),c=t(4994),u=t(9518),s=t(7674),f=t(8003),p=t(8880),d=t(1320),h=t(5112),g=t(7497),v=t(3383),A=a.PROPER,b=a.CONFIGURABLE,m=v.IteratorPrototype,y=v.BUGGY_SAFARI_ITERATORS,E=h("iterator"),_="keys",C="values",w="entries",x=function(){return this};e.exports=function(e,n,t,a,h,v,k){c(t,n,a);var S,O,B,I=function(e){if(e===h&&R)return R;if(!y&&e in j)return j[e];switch(e){case _:case C:case w:return function(){return new t(this,e)}}return function(){return new t(this)}},T=n+" Iterator",P=!1,j=e.prototype,z=j[E]||j["@@iterator"]||h&&j[h],R=!y&&z||I(h),M="Array"==n&&j.entries||z;if(M&&(S=u(M.call(new e)))!==Object.prototype&&S.next&&(i||u(S)===m||(s?s(S,m):l(S[E])||d(S,E,x)),f(S,T,!0,!0),i&&(g[T]=x)),A&&h==C&&z&&z.name!==C&&(!i&&b?p(j,"name",C):(P=!0,R=function(){return o(z,this)})),h)if(O={values:I(C),keys:v?R:I(_),entries:I(w)},k)for(B in O)(y||P||!(B in j))&&d(j,B,O[B]);else r({target:n,proto:!0,forced:y||P},O);return i&&!k||j[E]===R||d(j,E,R,{name:h}),g[n]=R,O}},7235:(e,n,t)=>{var r=t(857),o=t(2597),i=t(6061),a=t(3070).f;e.exports=function(e){var n=r.Symbol||(r.Symbol={});o(n,e)||a(n,e,{value:i.f(e)})}},9781:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},317:(e,n,t)=>{var r=t(7854),o=t(111),i=r.document,a=o(i)&&o(i.createElement);e.exports=function(e){return a?i.createElement(e):{}}},8324:e=>{e.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},8509:(e,n,t)=>{var r=t(317)("span").classList,o=r&&r.constructor&&r.constructor.prototype;e.exports=o===Object.prototype?void 0:o},8886:(e,n,t)=>{var r=t(8113).match(/firefox\/(\d+)/i);e.exports=!!r&&+r[1]},256:(e,n,t)=>{var r=t(8113);e.exports=/MSIE|Trident/.test(r)},5268:(e,n,t)=>{var r=t(4326),o=t(7854);e.exports="process"==r(o.process)},8113:(e,n,t)=>{var r=t(5005);e.exports=r("navigator","userAgent")||""},7392:(e,n,t)=>{var r,o,i=t(7854),a=t(8113),l=i.process,c=i.Deno,u=l&&l.versions||c&&c.version,s=u&&u.v8;s&&(o=(r=s.split("."))[0]>0&&r[0]<4?1:+(r[0]+r[1])),!o&&a&&(!(r=a.match(/Edge\/(\d+)/))||r[1]>=74)&&(r=a.match(/Chrome\/(\d+)/))&&(o=+r[1]),e.exports=o},8008:(e,n,t)=>{var r=t(8113).match(/AppleWebKit\/(\d+)\./);e.exports=!!r&&+r[1]},748:e=>{e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},2109:(e,n,t)=>{var r=t(7854),o=t(1236).f,i=t(8880),a=t(1320),l=t(3505),c=t(9920),u=t(4705);e.exports=function(e,n){var t,s,f,p,d,h=e.target,g=e.global,v=e.stat;if(t=g?r:v?r[h]||l(h,{}):(r[h]||{}).prototype)for(s in n){if(p=n[s],f=e.noTargetGet?(d=o(t,s))&&d.value:t[s],!u(g?s:h+(v?".":"#")+s,e.forced)&&void 0!==f){if(typeof p==typeof f)continue;c(p,f)}(e.sham||f&&f.sham)&&i(p,"sham",!0),a(t,s,p,e)}}},7293:e=>{e.exports=function(e){try{return!!e()}catch(e){return!0}}},7007:(e,n,t)=>{"use strict";t(4916);var r=t(1702),o=t(1320),i=t(2261),a=t(7293),l=t(5112),c=t(8880),u=l("species"),s=RegExp.prototype;e.exports=function(e,n,t,f){var p=l(e),d=!a((function(){var n={};return n[p]=function(){return 7},7!=""[e](n)})),h=d&&!a((function(){var n=!1,t=/a/;return"split"===e&&((t={}).constructor={},t.constructor[u]=function(){return t},t.flags="",t[p]=/./[p]),t.exec=function(){return n=!0,null},t[p](""),!n}));if(!d||!h||t){var g=r(/./[p]),v=n(p,""[e],(function(e,n,t,o,a){var l=r(e),c=n.exec;return c===i||c===s.exec?d&&!a?{done:!0,value:g(n,t,o)}:{done:!0,value:l(t,n,o)}:{done:!1}}));o(String.prototype,e,v[0]),o(s,p,v[1])}f&&c(s[p],"sham",!0)}},6677:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){return Object.isExtensible(Object.preventExtensions({}))}))},2104:e=>{var n=Function.prototype,t=n.apply,r=n.bind,o=n.call;e.exports="object"==typeof Reflect&&Reflect.apply||(r?o.bind(t):function(){return o.apply(t,arguments)})},9974:(e,n,t)=>{var r=t(1702),o=t(9662),i=r(r.bind);e.exports=function(e,n){return o(e),void 0===n?e:i?i(e,n):function(){return e.apply(n,arguments)}}},7065:(e,n,t)=>{"use strict";var r=t(7854),o=t(1702),i=t(9662),a=t(111),l=t(2597),c=t(206),u=r.Function,s=o([].concat),f=o([].join),p={},d=function(e,n,t){if(!l(p,n)){for(var r=[],o=0;o{var n=Function.prototype.call;e.exports=n.bind?n.bind(n):function(){return n.apply(n,arguments)}},6530:(e,n,t)=>{var r=t(9781),o=t(2597),i=Function.prototype,a=r&&Object.getOwnPropertyDescriptor,l=o(i,"name"),c=l&&"something"===function(){}.name,u=l&&(!r||r&&a(i,"name").configurable);e.exports={EXISTS:l,PROPER:c,CONFIGURABLE:u}},1702:e=>{var n=Function.prototype,t=n.bind,r=n.call,o=t&&t.bind(r);e.exports=t?function(e){return e&&o(r,e)}:function(e){return e&&function(){return r.apply(e,arguments)}}},5005:(e,n,t)=>{var r=t(7854),o=t(614),i=function(e){return o(e)?e:void 0};e.exports=function(e,n){return arguments.length<2?i(r[e]):r[e]&&r[e][n]}},1246:(e,n,t)=>{var r=t(648),o=t(8173),i=t(7497),a=t(5112)("iterator");e.exports=function(e){if(null!=e)return o(e,a)||o(e,"@@iterator")||i[r(e)]}},8554:(e,n,t)=>{var r=t(7854),o=t(6916),i=t(9662),a=t(9670),l=t(6330),c=t(1246),u=r.TypeError;e.exports=function(e,n){var t=arguments.length<2?c(e):n;if(i(t))return a(o(t,e));throw u(l(e)+" is not iterable")}},8173:(e,n,t)=>{var r=t(9662);e.exports=function(e,n){var t=e[n];return null==t?void 0:r(t)}},647:(e,n,t)=>{var r=t(1702),o=t(7908),i=Math.floor,a=r("".charAt),l=r("".replace),c=r("".slice),u=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,s=/\$([$&'`]|\d{1,2})/g;e.exports=function(e,n,t,r,f,p){var d=t+e.length,h=r.length,g=s;return void 0!==f&&(f=o(f),g=u),l(p,g,(function(o,l){var u;switch(a(l,0)){case"$":return"$";case"&":return e;case"`":return c(n,0,t);case"'":return c(n,d);case"<":u=f[c(l,1,-1)];break;default:var s=+l;if(0===s)return o;if(s>h){var p=i(s/10);return 0===p?o:p<=h?void 0===r[p-1]?a(l,1):r[p-1]+a(l,1):o}u=r[s-1]}return void 0===u?"":u}))}},7854:(e,n,t)=>{var r=function(e){return e&&e.Math==Math&&e};e.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof t.g&&t.g)||function(){return this}()||Function("return this")()},2597:(e,n,t)=>{var r=t(1702),o=t(7908),i=r({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,n){return i(o(e),n)}},3501:e=>{e.exports={}},490:(e,n,t)=>{var r=t(5005);e.exports=r("document","documentElement")},4664:(e,n,t)=>{var r=t(9781),o=t(7293),i=t(317);e.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},8361:(e,n,t)=>{var r=t(7854),o=t(1702),i=t(7293),a=t(4326),l=r.Object,c=o("".split);e.exports=i((function(){return!l("z").propertyIsEnumerable(0)}))?function(e){return"String"==a(e)?c(e,""):l(e)}:l},9587:(e,n,t)=>{var r=t(614),o=t(111),i=t(7674);e.exports=function(e,n,t){var a,l;return i&&r(a=n.constructor)&&a!==t&&o(l=a.prototype)&&l!==t.prototype&&i(e,l),e}},2788:(e,n,t)=>{var r=t(1702),o=t(614),i=t(5465),a=r(Function.toString);o(i.inspectSource)||(i.inspectSource=function(e){return a(e)}),e.exports=i.inspectSource},2423:(e,n,t)=>{var r=t(2109),o=t(1702),i=t(3501),a=t(111),l=t(2597),c=t(3070).f,u=t(8006),s=t(1156),f=t(2050),p=t(9711),d=t(6677),h=!1,g=p("meta"),v=0,A=function(e){c(e,g,{value:{objectID:"O"+v++,weakData:{}}})},b=e.exports={enable:function(){b.enable=function(){},h=!0;var e=u.f,n=o([].splice),t={};t[g]=1,e(t).length&&(u.f=function(t){for(var r=e(t),o=0,i=r.length;o{var r,o,i,a=t(8536),l=t(7854),c=t(1702),u=t(111),s=t(8880),f=t(2597),p=t(5465),d=t(6200),h=t(3501),g="Object already initialized",v=l.TypeError,A=l.WeakMap;if(a||p.state){var b=p.state||(p.state=new A),m=c(b.get),y=c(b.has),E=c(b.set);r=function(e,n){if(y(b,e))throw new v(g);return n.facade=e,E(b,e,n),n},o=function(e){return m(b,e)||{}},i=function(e){return y(b,e)}}else{var _=d("state");h[_]=!0,r=function(e,n){if(f(e,_))throw new v(g);return n.facade=e,s(e,_,n),n},o=function(e){return f(e,_)?e[_]:{}},i=function(e){return f(e,_)}}e.exports={set:r,get:o,has:i,enforce:function(e){return i(e)?o(e):r(e,{})},getterFor:function(e){return function(n){var t;if(!u(n)||(t=o(n)).type!==e)throw v("Incompatible receiver, "+e+" required");return t}}}},7659:(e,n,t)=>{var r=t(5112),o=t(7497),i=r("iterator"),a=Array.prototype;e.exports=function(e){return void 0!==e&&(o.Array===e||a[i]===e)}},3157:(e,n,t)=>{var r=t(4326);e.exports=Array.isArray||function(e){return"Array"==r(e)}},614:e=>{e.exports=function(e){return"function"==typeof e}},4411:(e,n,t)=>{var r=t(1702),o=t(7293),i=t(614),a=t(648),l=t(5005),c=t(2788),u=function(){},s=[],f=l("Reflect","construct"),p=/^\s*(?:class|function)\b/,d=r(p.exec),h=!p.exec(u),g=function(e){if(!i(e))return!1;try{return f(u,s,e),!0}catch(e){return!1}};e.exports=!f||o((function(){var e;return g(g.call)||!g(Object)||!g((function(){e=!0}))||e}))?function(e){if(!i(e))return!1;switch(a(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}return h||!!d(p,c(e))}:g},4705:(e,n,t)=>{var r=t(7293),o=t(614),i=/#|\.prototype\./,a=function(e,n){var t=c[l(e)];return t==s||t!=u&&(o(n)?r(n):!!n)},l=a.normalize=function(e){return String(e).replace(i,".").toLowerCase()},c=a.data={},u=a.NATIVE="N",s=a.POLYFILL="P";e.exports=a},111:(e,n,t)=>{var r=t(614);e.exports=function(e){return"object"==typeof e?null!==e:r(e)}},1913:e=>{e.exports=!1},7850:(e,n,t)=>{var r=t(111),o=t(4326),i=t(5112)("match");e.exports=function(e){var n;return r(e)&&(void 0!==(n=e[i])?!!n:"RegExp"==o(e))}},2190:(e,n,t)=>{var r=t(7854),o=t(5005),i=t(614),a=t(7976),l=t(3307),c=r.Object;e.exports=l?function(e){return"symbol"==typeof e}:function(e){var n=o("Symbol");return i(n)&&a(n.prototype,c(e))}},408:(e,n,t)=>{var r=t(7854),o=t(9974),i=t(6916),a=t(9670),l=t(6330),c=t(7659),u=t(6244),s=t(7976),f=t(8554),p=t(1246),d=t(9212),h=r.TypeError,g=function(e,n){this.stopped=e,this.result=n},v=g.prototype;e.exports=function(e,n,t){var r,A,b,m,y,E,_,C=t&&t.that,w=!(!t||!t.AS_ENTRIES),x=!(!t||!t.IS_ITERATOR),k=!(!t||!t.INTERRUPTED),S=o(n,C),O=function(e){return r&&d(r,"normal",e),new g(!0,e)},B=function(e){return w?(a(e),k?S(e[0],e[1],O):S(e[0],e[1])):k?S(e,O):S(e)};if(x)r=e;else{if(!(A=p(e)))throw h(l(e)+" is not iterable");if(c(A)){for(b=0,m=u(e);m>b;b++)if((y=B(e[b]))&&s(v,y))return y;return new g(!1)}r=f(e,A)}for(E=r.next;!(_=i(E,r)).done;){try{y=B(_.value)}catch(e){d(r,"throw",e)}if("object"==typeof y&&y&&s(v,y))return y}return new g(!1)}},9212:(e,n,t)=>{var r=t(6916),o=t(9670),i=t(8173);e.exports=function(e,n,t){var a,l;o(e);try{if(!(a=i(e,"return"))){if("throw"===n)throw t;return t}a=r(a,e)}catch(e){l=!0,a=e}if("throw"===n)throw t;if(l)throw a;return o(a),t}},3383:(e,n,t)=>{"use strict";var r,o,i,a=t(7293),l=t(614),c=t(30),u=t(9518),s=t(1320),f=t(5112),p=t(1913),d=f("iterator"),h=!1;[].keys&&("next"in(i=[].keys())?(o=u(u(i)))!==Object.prototype&&(r=o):h=!0),null==r||a((function(){var e={};return r[d].call(e)!==e}))?r={}:p&&(r=c(r)),l(r[d])||s(r,d,(function(){return this})),e.exports={IteratorPrototype:r,BUGGY_SAFARI_ITERATORS:h}},7497:e=>{e.exports={}},6244:(e,n,t)=>{var r=t(7466);e.exports=function(e){return r(e.length)}},133:(e,n,t)=>{var r=t(7392),o=t(7293);e.exports=!!Object.getOwnPropertySymbols&&!o((function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&r&&r<41}))},8536:(e,n,t)=>{var r=t(7854),o=t(614),i=t(2788),a=r.WeakMap;e.exports=o(a)&&/native code/.test(i(a))},3929:(e,n,t)=>{var r=t(7854),o=t(7850),i=r.TypeError;e.exports=function(e){if(o(e))throw i("The method doesn't accept regular expressions");return e}},1574:(e,n,t)=>{"use strict";var r=t(9781),o=t(1702),i=t(6916),a=t(7293),l=t(1956),c=t(5181),u=t(5296),s=t(7908),f=t(8361),p=Object.assign,d=Object.defineProperty,h=o([].concat);e.exports=!p||a((function(){if(r&&1!==p({b:1},p(d({},"a",{enumerable:!0,get:function(){d(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var e={},n={},t=Symbol(),o="abcdefghijklmnopqrst";return e[t]=7,o.split("").forEach((function(e){n[e]=e})),7!=p({},e)[t]||l(p({},n)).join("")!=o}))?function(e,n){for(var t=s(e),o=arguments.length,a=1,p=c.f,d=u.f;o>a;)for(var g,v=f(arguments[a++]),A=p?h(l(v),p(v)):l(v),b=A.length,m=0;b>m;)g=A[m++],r&&!i(d,v,g)||(t[g]=v[g]);return t}:p},30:(e,n,t)=>{var r,o=t(9670),i=t(6048),a=t(748),l=t(3501),c=t(490),u=t(317),s=t(6200),f=s("IE_PROTO"),p=function(){},d=function(e){return" - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

acceptEitherSuccessAsync

-
-

Returns a new CompletionStage that, when either given stage success, is executed using this stage's default asynchronous execution facility, with the corresponding result as argument to the supplied action.

This method is the same as CompletableFuture.acceptEitherAsync except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also


Returns a new CompletionStage that, when either given stage success, is executed using the supplied executor, with the corresponding result as argument to the supplied action.

This method is the same as CompletableFuture.acceptEitherAsync except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

executor

the executor to use for asynchronous execution

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/accept-either-success.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/accept-either-success.html deleted file mode 100644 index c41ff8bf..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/accept-either-success.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - acceptEitherSuccess - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

acceptEitherSuccess

-
-

Returns a new CompletableFuture that, when either given stage success, is executed with the corresponding result as argument to the supplied action.

This method is the same as CompletableFuture.acceptEither except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html deleted file mode 100644 index 31417eb3..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allOfCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allOfCffu

-
-
fun Collection<Cffu<*>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is completed when all the given Cffus complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given Cffus are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no Cffus are provided, returns a Cffu completed with the value null.

This method is the same as CffuFactory.allOf, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun Array<out Cffu<*>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is completed when all the given Cffus complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given Cffus are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no Cffus are provided, returns a Cffu completed with the value null.

This method is the same as CffuFactory.allOf, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allOfCffuCf")
fun Collection<CompletableFuture<*>>.allOfCffu(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is completed when all the given CompletableFutures complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given CompletableFutures are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no CompletableFutures are provided, returns a Cffu completed with the value null.

This method is the same as CffuFactory.allOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html deleted file mode 100644 index d4b0c544..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allOfCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allOfCompletableFuture

-
-

Returns a new CompletableFuture that is completed when all the given stages complete. If any of the given stages complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given stages are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If no stages are provided, returns a CompletableFuture completed with the value null.

If you need the results of given stages, prefer below methods:

This method is the same as CompletableFutureUtils.allOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html deleted file mode 100644 index 084d8b39..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allOfFastFailCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allOfFastFailCffu

-
-
fun Collection<Cffu<*>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is successful when all the given Cffus success, the results(Cffu<Void>) of the given Cffus are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value null.

This method is the same as CffuFactory.allOfFastFail, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun Array<out Cffu<*>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is successful when all the given Cffus success, the results(Cffu<Void>) of the given Cffus are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value null.

This method is the same as CffuFactory.allOfFastFail, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allOfFastFailCffuCf")
fun Collection<CompletableFuture<*>>.allOfFastFailCffu(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is successful when all the given CompletableFutures success, the results(Cffu<Void>) of the given CompletableFutures are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value null.

This method is the same as CffuFactory.allOfFastFail, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html deleted file mode 100644 index a1172656..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allOfFastFailCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allOfFastFailCompletableFuture

-
-

Returns a new CompletableFuture that is successful when all the given CompletableFutures success, the results(CompletableFuture<Void>) of the given CompletableFutures are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value null.

If you need the results of given stages, prefer below methods:

This method is the same as CompletableFutureUtils.allOfFastFail, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html deleted file mode 100644 index 674560b4..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allResultsOfCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allResultsOfCffu

-
-
fun <T> Collection<Cffu<out T>>.allResultsOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu is completed when all the given Cffus complete. If any of the given Cffus complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value empty list.

This method is the same as allOfCffu, except the returned Cffu contains the results of input Cffus.

This method is the same as CffuFactory.allResultsOf, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<out Cffu<out T>>.allResultsOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu is completed when all the given Cffus complete. If any of the given Cffus complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value empty list.

This method is the same as allOfCffu, except the returned Cffu contains the results of input Cffus.

This method is the same as CffuFactory.allResultsOf, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allResultsOfCffuCf")
fun <T> Collection<CompletableFuture<out T>>.allResultsOfCffu(cffuFactory: CffuFactory): Cffu<List<T>>
fun <T> Array<out CompletableFuture<out T>>.allResultsOfCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given CompletableFutures, the new Cffu is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

This method is the same as allOfCffu, except the returned Cffu contains the results of input CompletableFutures.

This method is the same as CffuFactory.allResultsOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-completable-future.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-completable-future.html deleted file mode 100644 index 5709c1a8..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allResultsOfCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allResultsOfCompletableFuture

-
-

Returns a new CompletableFuture with the results in the same order of all the given CompletableFutures, the returned new CompletableFuture is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value empty list.

This method is the same as allOfCompletableFuture, except the returned CompletableFuture contains the results of input CompletableFutures.

This method is the same as CompletableFutureUtils.allResultsOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html deleted file mode 100644 index db168b9b..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allResultsOfFastFailCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allResultsOfFastFailCffu

-
-
fun <T> Collection<Cffu<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu success when all the given Cffus success. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

This method is the same as allOfFastFailCffu, except the returned Cffu contains the results of input Cffus.

This method is the same as CffuFactory.allResultsOfFastFail, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<out Cffu<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu success when all the given Cffus success. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

This method is the same as allOfFastFailCffu, except the returned Cffu contains the results of input Cffus.

This method is the same as CffuFactory.allResultsOfFastFail, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "allResultsOfFastFailCffuCf")
fun <T> Collection<CompletableFuture<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given CompletableFutures, the new Cffu success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

This method is the same as allOfFastFailCffu, except the returned Cffu contains the results of input Cffus.

This method is the same as CffuFactory.allResultsOfFastFail, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-completable-future.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-completable-future.html deleted file mode 100644 index 0b5132b2..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allResultsOfFastFailCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allResultsOfFastFailCompletableFuture

-
-

Returns a new CompletableFuture with the results in the same order of all the given CompletableFutures, the new CompletableFuture success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value empty list.

This method is the same as allOfFastFailCompletableFuture, except the returned CompletableFuture contains the results of input CompletableFutures.

This method is the same as CompletableFutureUtils.allResultsOfFastFail, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html deleted file mode 100644 index c478b8b2..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allTupleOfFastFail - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allTupleOfFastFail

-
-

Returns a new CompletableFuture that is successful when the given two CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is successful when the given two CompletableFutures success

See also

Throws

if any of the given CompletableFutures are {@code null}


Returns a new CompletableFuture that is successful when the given three CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is successful when the given three CompletableFutures success

See also

Throws

if any of the given CompletableFutures are {@code null}


Returns a new CompletableFuture that is successful when the given 4 CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is successful when the given 4 CompletableFutures success

See also

Throws

if any of the given CompletableFutures are {@code null}


Returns a new CompletableFuture that is successful when the given 5 CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is successful when the given 5 CompletableFutures success

See also

Throws

if any of the given CompletableFutures are {@code null}

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html deleted file mode 100644 index 971b4f9d..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - allTupleOf - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

allTupleOf

-
-

Returns a new CompletableFuture that is completed when the given two CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 2 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null


Returns a new CompletableFuture that is completed when the given three CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 3 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null


Returns a new CompletableFuture that is completed when the given 4 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 4 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null


Returns a new CompletableFuture that is completed when the given 5 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Return

a new CompletableFuture that is completed when the given 5 CompletableFutures complete

See also

Throws

if any input CompletableFutures are null

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html deleted file mode 100644 index b632ccab..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - anyOfCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

anyOfCffu

-
-
fun <T> Collection<Cffu<out T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

This method is the same as CffuFactory.anyOf, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<out Cffu<out T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

This method is the same as CffuFactory.anyOf, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "anyOfCffuCf")
fun <T> Collection<CompletableFuture<out T>>.anyOfCffu(cffuFactory: CffuFactory): Cffu<T>
fun <T> Array<out CompletableFuture<out T>>.anyOfCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is completed when any of the given CompletableFutures complete, with the same result.

This method is the same as CffuFactory.anyOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html deleted file mode 100644 index 334d6569..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - anyOfCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

anyOfCompletableFuture

-
-

Returns a new CompletableFuture that is completed when any of the given CompletableFutures complete, with the same result. Otherwise, if it completed exceptionally, the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns an incomplete CompletableFuture.

This method is the same as CompletableFutureUtils.anyOf, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html deleted file mode 100644 index f0be2a99..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - anyOfSuccessCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

anyOfSuccessCffu

-
-
fun <T> Collection<Cffu<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is successful when any of the given Cffus success, with the same result. Otherwise, all the given Cffus complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given Cffus as its cause. If no Cffus are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

This method is the same as CffuFactory.anyOfSuccess, providing this method is convenient for method chaining.

If this collection is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this collection is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


fun <T> Array<out Cffu<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is successful when any of the given Cffus success, with the same result. Otherwise, all the given Cffus complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given Cffus as its cause. If no Cffus are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

This method is the same as CffuFactory.anyOfSuccess, providing this method is convenient for method chaining.

If this array is not empty, cffuFactory argument is optional, use the cffuFactory of the first cffu element. If this array is empty and nocffuFactory provided, throw IllegalArgumentException.

See also


@JvmName(name = "anyOfSuccessCffuCf")
fun <T> Collection<CompletableFuture<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory): Cffu<T>
fun <T> Array<out CompletableFuture<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

This method is the same as CffuFactory.anyOfSuccess, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html deleted file mode 100644 index 93888954..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - anyOfSuccessCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

anyOfSuccessCompletableFuture

-
-

Returns a new CompletableFuture that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new CompletableFuture that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

This method is the same as CompletableFutureUtils.anyOfSuccess, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success-async.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success-async.html deleted file mode 100644 index 5174ed32..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - applyToEitherSuccessAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

applyToEitherSuccessAsync

-
-

Returns a new CompletionStage that, when either given stage success, is executed using this stage's default asynchronous execution facility, with the corresponding result as argument to the supplied function.

This method is the same as CompletableFuture.applyToEitherAsync except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

fn

the function to use to compute the value of the returned CompletableFuture

the function's return type

See also


fun <T, U> CompletionStage<out T>.applyToEitherSuccessAsync(other: CompletionStage<out T>, fn: Function<in T, out U>, executor: Executor): CompletableFuture<U>

Returns a new CompletionStage that, when either given stage success, is executed using the supplied executor, with the corresponding result as argument to the supplied function.

This method is the same as CompletableFuture.applyToEitherAsync except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

fn

the function to use to compute the value of the returned CompletableFuture

executor

the executor to use for asynchronous execution

the function's return type

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success.html deleted file mode 100644 index 7523afd4..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - applyToEitherSuccess - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

applyToEitherSuccess

-
-

Returns a new CompletionStage that, when either given stage success, is executed with the corresponding result as argument to the supplied function.

This method is the same as CompletableFuture.applyToEither except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

fn

the function to use to compute the value of the returned CompletableFuture

the function's return type

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html deleted file mode 100644 index b2ebd8ed..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - cffuState - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

cffuState

-
-

Returns the computation state(CffuState), this method is equivalent to CompletableFuture.state with java version compatibility logic, so you can invoke in old java 18-.

Return

the computation state

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html deleted file mode 100644 index 8c8bde9b..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - cffuUnwrap - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

cffuUnwrap

-
-

Unwrap input Cffu collection elements by Cffu.cffuUnwrap.

This method is the same as CffuFactory.cffuArrayUnwrap, providing this method is convenient for method chaining.

See also


Unwrap input Cffu array elements by Cffu.cffuUnwrap.

This method is the same as CffuFactory.cffuArrayUnwrap, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/complete-async.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/complete-async.html deleted file mode 100644 index 8069269b..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/complete-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - completeAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

completeAsync

-
-
fun <T, C : CompletableFuture<in T>> C.completeAsync(supplier: Supplier<out T>): C

Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the default executor.

Return

given CompletableFuture

Parameters

supplier

a function returning the value to be used to complete given CompletableFuture


fun <T, C : CompletableFuture<in T>> C.completeAsync(supplier: Supplier<out T>, executor: Executor): C

Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the given executor.

Return

given CompletableFuture

Parameters

supplier

a function returning the value to be used to complete given CompletableFuture

executor

the executor to use for asynchronous execution

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/complete-on-timeout.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/complete-on-timeout.html deleted file mode 100644 index 147ac8b7..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/complete-on-timeout.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - completeOnTimeout - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

completeOnTimeout

-
-
fun <T, C : CompletableFuture<in T>> C.completeOnTimeout(value: T, timeout: Long, unit: TimeUnit): C

Completes given CompletableFuture with the given value if not otherwise completed before the given timeout.

Return

given CompletableFuture

Parameters

value

the value to use upon timeout

timeout

how long to wait before completing normally with the given value, in units of unit

unit

a TimeUnit determining how to interpret the timeout parameter

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/component1.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/component1.html deleted file mode 100644 index 8ba177f5..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/component1.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - component1 - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

component1

-
-
operator fun <T1, T2> Tuple2<T1, T2>.component1(): T1
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component1(): T1
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component1(): T1
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component1(): T1
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/component2.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/component2.html deleted file mode 100644 index 4e64098f..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/component2.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - component2 - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

component2

-
-
operator fun <T1, T2> Tuple2<T1, T2>.component2(): T2
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component2(): T2
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component2(): T2
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component2(): T2
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/component3.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/component3.html deleted file mode 100644 index 918b131d..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/component3.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - component3 - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

component3

-
-
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component3(): T3
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component3(): T3
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component3(): T3
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/component4.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/component4.html deleted file mode 100644 index 29dd16de..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/component4.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - component4 - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

component4

-
-
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component4(): T4
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component4(): T4
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/component5.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/component5.html deleted file mode 100644 index f6fcc888..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/component5.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - component5 - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

component5

-
-
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component5(): T5
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/copy.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/copy.html deleted file mode 100644 index ee96d516..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/copy.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - copy - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

copy

-
-

Returns a new CompletableFuture that is completed normally with the same value as this CompletableFuture when it completes normally. If this CompletableFuture completes exceptionally, then the returned CompletableFuture completes exceptionally with a CompletionException with this exception as cause. The behavior is equivalent to thenApply(x -> x). This method may be useful as a form of "defensive copying", to prevent clients from completing, while still being able to arrange dependent actions.

Return

the new CompletableFuture

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/exception-now.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/exception-now.html deleted file mode 100644 index 1d1ec248..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/exception-now.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - exceptionNow - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

exceptionNow

-
-

Returns the exception thrown by the task, without waiting.

This method is for cases where the caller knows that the task has already completed with an exception.

Return

the exception thrown by the task

See also

Throws

if the task has not completed, the task completed normally, or the task was cancelled

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-async.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-async.html deleted file mode 100644 index 4153edf8..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - exceptionallyAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

exceptionallyAsync

-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using given stage's default asynchronous execution facility. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the value of the returned CompletionStage if given CompletionStage completed exceptionally


Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using the supplied Executor. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the value of the returned CompletionStage if given CompletionStage completed exceptionally

executor

the executor to use for asynchronous execution

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose-async.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose-async.html deleted file mode 100644 index 162df6f1..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - exceptionallyComposeAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

exceptionallyComposeAsync

-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using given stage's default asynchronous execution facility.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the returned CompletionStage if given CompletionStage completed exceptionally


Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using the supplied Executor.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the returned CompletionStage if given CompletionStage completed exceptionally

executor

the executor to use for asynchronous execution

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose.html deleted file mode 100644 index 7094bf18..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - exceptionallyCompose - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

exceptionallyCompose

-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception.

Return

the new CompletionStage

Parameters

fn

the function to use to compute the returned CompletionStage if given CompletionStage completed exceptionally

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/index.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/index.html deleted file mode 100644 index 1a33d692..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/index.html +++ /dev/null @@ -1,823 +0,0 @@ - - - - - io.foldright.cffu.kotlin - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

Package-level declarations

-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when either given stage success, is executed with the corresponding result as argument to the supplied action.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when either given stage success, is executed using this stage's default asynchronous execution facility, with the corresponding result as argument to the supplied action.

Returns a new CompletionStage that, when either given stage success, is executed using the supplied executor, with the corresponding result as argument to the supplied action.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun Array<out Cffu<*>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>
fun Collection<Cffu<*>>.allOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is completed when all the given Cffus complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given Cffus are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no Cffus are provided, returns a Cffu completed with the value null.

@JvmName(name = "allOfCffuCf")
fun Collection<CompletableFuture<*>>.allOfCffu(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is completed when all the given CompletableFutures complete. If any of the given Cffu complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given CompletableFutures are not reflected in the returned Cffu(Cffu<Void>), but may be obtained by inspecting them individually. If no CompletableFutures are provided, returns a Cffu completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed when all the given stages complete. If any of the given stages complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. Otherwise, the results, if any, of the given stages are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If no stages are provided, returns a CompletableFuture completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun Array<out Cffu<*>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>
fun Collection<Cffu<*>>.allOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<Void>

Returns a new Cffu that is successful when all the given Cffus success, the results(Cffu<Void>) of the given Cffus are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value null.

@JvmName(name = "allOfFastFailCffuCf")
fun Collection<CompletableFuture<*>>.allOfFastFailCffu(cffuFactory: CffuFactory): Cffu<Void>

Returns a new Cffu that is successful when all the given CompletableFutures success, the results(Cffu<Void>) of the given CompletableFutures are not reflected in the returned Cffu, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is successful when all the given CompletableFutures success, the results(CompletableFuture<Void>) of the given CompletableFutures are not reflected in the returned CompletableFuture, but may be obtained by inspecting them individually. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value null.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<out Cffu<out T>>.allResultsOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>
fun <T> Collection<Cffu<out T>>.allResultsOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu is completed when all the given Cffus complete. If any of the given Cffus complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no Cffus are provided, returns a Cffu completed with the value empty list.

fun <T> Array<out CompletableFuture<out T>>.allResultsOfCffu(cffuFactory: CffuFactory): Cffu<List<T>>
@JvmName(name = "allResultsOfCffuCf")
fun <T> Collection<CompletableFuture<out T>>.allResultsOfCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given CompletableFutures, the new Cffu is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture with the results in the same order of all the given CompletableFutures, the returned new CompletableFuture is completed when all the given CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value empty list.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<out Cffu<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>
fun <T> Collection<Cffu<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory = ABSENT): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given Cffus, the new Cffu success when all the given Cffus success. If any of the given Cffus complete exceptionally, then the returned Cffu also does so without waiting other incomplete given Cffus, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

@JvmName(name = "allResultsOfFastFailCffuCf")
fun <T> Collection<CompletableFuture<out T>>.allResultsOfFastFailCffu(cffuFactory: CffuFactory): Cffu<List<T>>

Returns a new Cffu with the results in the same order of all the given CompletableFutures, the new Cffu success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned Cffu also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a Cffu completed with the value empty list.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture with the results in the same order of all the given CompletableFutures, the new CompletableFuture success when all the given CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns a CompletableFuture completed with the value empty list.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed when the given two CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is completed when the given three CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is completed when the given 4 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is completed when the given 5 CompletableFutures complete. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is successful when the given two CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is successful when the given three CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is successful when the given 4 CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that is successful when the given 5 CompletableFutures success. If any of the given CompletableFutures complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletableFutures, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<out Cffu<out T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>
fun <T> Collection<Cffu<out T>>.anyOfCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is completed when any of the given Cffus complete, with the same result.

fun <T> Array<out CompletableFuture<out T>>.anyOfCffu(cffuFactory: CffuFactory): Cffu<T>
@JvmName(name = "anyOfCffuCf")
fun <T> Collection<CompletableFuture<out T>>.anyOfCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is completed when any of the given CompletableFutures complete, with the same result.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed when any of the given CompletableFutures complete, with the same result. Otherwise, if it completed exceptionally, the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause. If no CompletableFutures are provided, returns an incomplete CompletableFuture.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> Array<out Cffu<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>
fun <T> Collection<Cffu<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory = ABSENT): Cffu<T>

Returns a new Cffu that is successful when any of the given Cffus success, with the same result. Otherwise, all the given Cffus complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given Cffus as its cause. If no Cffus are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

fun <T> Array<out CompletableFuture<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory): Cffu<T>
@JvmName(name = "anyOfSuccessCffuCf")
fun <T> Collection<CompletableFuture<out T>>.anyOfSuccessCffu(cffuFactory: CffuFactory): Cffu<T>

Returns a new Cffu that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned Cffu also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new Cffu that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is successful when any of the given CompletableFutures success, with the same result. Otherwise, all the given CompletableFutures complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletableFutures as its cause. If no CompletableFutures are provided, returns a new CompletableFuture that is already completed exceptionally with a CompletionException holding a NoCfsProvidedException as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when either given stage success, is executed with the corresponding result as argument to the supplied function.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when either given stage success, is executed using this stage's default asynchronous execution facility, with the corresponding result as argument to the supplied function.

fun <T, U> CompletionStage<out T>.applyToEitherSuccessAsync(other: CompletionStage<out T>, fn: Function<in T, out U>, executor: Executor): CompletableFuture<U>

Returns a new CompletionStage that, when either given stage success, is executed using the supplied executor, with the corresponding result as argument to the supplied function.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the computation state(CffuState), this method is equivalent to CompletableFuture.state with java version compatibility logic, so you can invoke in old java 18-.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Unwrap input Cffu array elements by Cffu.cffuUnwrap.

Unwrap input Cffu collection elements by Cffu.cffuUnwrap.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T, C : CompletableFuture<in T>> C.completeAsync(supplier: Supplier<out T>): C

Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the default executor.

fun <T, C : CompletableFuture<in T>> C.completeAsync(supplier: Supplier<out T>, executor: Executor): C

Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the given executor.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T, C : CompletableFuture<in T>> C.completeOnTimeout(value: T, timeout: Long, unit: TimeUnit): C

Completes given CompletableFuture with the given value if not otherwise completed before the given timeout.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2> Tuple2<T1, T2>.component1(): T1
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component1(): T1
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component1(): T1
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component1(): T1
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2> Tuple2<T1, T2>.component2(): T2
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component2(): T2
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component2(): T2
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component2(): T2
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2, T3> Tuple3<T1, T2, T3>.component3(): T3
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component3(): T3
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component3(): T3
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4>.component4(): T4
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component4(): T4
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
operator fun <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5>.component5(): T5
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that is completed normally with the same value as this CompletableFuture when it completes normally. If this CompletableFuture completes exceptionally, then the returned CompletableFuture completes exceptionally with a CompletionException with this exception as cause. The behavior is equivalent to thenApply(x -> x). This method may be useful as a form of "defensive copying", to prevent clients from completing, while still being able to arrange dependent actions.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using given stage's default asynchronous execution facility. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using the supplied Executor. Otherwise, if given stage completes normally, then the returned stage also completes normally with the same value.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using given stage's default asynchronous execution facility.

Returns a new CompletionStage that, when given stage completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using the supplied Executor.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the exception thrown by the task, without waiting.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> CompletableFuture<T>.join(timeout: Long, unit: TimeUnit): T

Waits if necessary for at most the given time for the computation to complete, and then retrieves its result value when complete, or throws an (unchecked) exception if completed exceptionally.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletionStage that is completed normally with the same value as given CompletableFuture when it completes normally, and cannot be independently completed or otherwise used in ways not defined by the methods of interface CompletionStage. If given CompletableFuture completes exceptionally, then the returned CompletionStage completes exceptionally with a CompletionException with given exception as cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new incomplete CompletableFuture of the type to be returned by a CompletionStage method.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T, C : CompletableFuture<out T>> C.orTimeout(timeout: Long, unit: TimeUnit): C

Exceptionally completes this CompletableFuture with a TimeoutException if not otherwise completed before the given timeout.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T, C : CompletionStage<out T>> C.peek(action: BiConsumer<in T, in Throwable>): C

Peeks the result by executing the given action when this stage completes, returns this stage.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T, C : CompletionStage<out T>> C.peekAsync(action: BiConsumer<in T, in Throwable>): C

Peeks the result by executing the given action when this stage completes, executes the given action using this stage's default asynchronous execution facility, returns this stage.

fun <T, C : CompletionStage<out T>> C.peekAsync(action: BiConsumer<in T, in Throwable>, executor: Executor): C

Peeks the result by executing the given action when this stage completes, executes the given action using the supplied Executor, returns this stage.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the computed result, without waiting.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action using CompletableFuture's default asynchronous execution facility. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action using the supplied executor. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when either given stage success, executes the given action. Otherwise, all two given CompletionStage complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletionStage as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when either given stage success, executes the given action using CompletableFuture's default asynchronous execution facility. Otherwise, all two given CompletionStage complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletionStage as its cause.

Returns a new CompletableFuture that, when either given stage success, executes the given action using the supplied executor. Otherwise, all two given CompletionStage complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletionStage as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed with the two results as arguments to the supplied action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using CompletableFuture's default asynchronous execution facility, with the two results as arguments to the supplied action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using the supplied executor, with the two results as arguments to the supplied action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T, U, V> CompletionStage<out T>.thenCombineFastFail(other: CompletionStage<out U>, fn: BiFunction<in T, in U, out V>): CompletableFuture<V>

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed with the two results as arguments to the supplied function. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using CompletableFuture's default asynchronous execution facility, with the two results as arguments to the supplied function. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

fun <T, U, V> CompletionStage<out T>.thenCombineFastFailAsync(other: CompletionStage<out U>, fn: BiFunction<in T, in U, out V>, executor: Executor): CompletableFuture<V>

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using the supplied executor, with the two results as arguments to the supplied function. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <T> CompletionStage<T>.toCffu(cffuFactory: CffuFactory): Cffu<T>
fun <T> Array<out CompletionStage<T>>.toCffu(cffuFactory: CffuFactory): Array<Cffu<T>>

Wrap input CompletableFuture/CompletionStage array elements to Cffu by CffuFactory.toCffu.

Wrap input CompletableFuture/CompletionStage collection elements to Cffu by CffuFactory.toCffu.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/join.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/join.html deleted file mode 100644 index f7d1380a..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/join.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - join - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

join

-
-
fun <T> CompletableFuture<T>.join(timeout: Long, unit: TimeUnit): T

Waits if necessary for at most the given time for the computation to complete, and then retrieves its result value when complete, or throws an (unchecked) exception if completed exceptionally.

NOTE: Calling this method

val result = cf.join(timeout, unit);

is the same as:

val result = cf.copy() // defensive copy to avoid writing this cf unexpectedly
.orTimeout(timeout, unit)
.join();
}

CAUTION: if the wait timed out, this method throws an (unchecked) CompletionException with the TimeoutException as its cause; NOT throws a (checked) TimeoutException like CompletableFuture.get.

Return

the result value

Parameters

timeout

the maximum time to wait

unit

the time unit of the timeout argument

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/minimal-completion-stage.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/minimal-completion-stage.html deleted file mode 100644 index 8503ec96..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/minimal-completion-stage.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - minimalCompletionStage - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

minimalCompletionStage

-
-

Returns a new CompletionStage that is completed normally with the same value as given CompletableFuture when it completes normally, and cannot be independently completed or otherwise used in ways not defined by the methods of interface CompletionStage. If given CompletableFuture completes exceptionally, then the returned CompletionStage completes exceptionally with a CompletionException with given exception as cause.

CAUTION: if run on old Java 8, just return a normal CompletableFuture which is NOT with a minimal CompletionStage.

Return

the new CompletionStage

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/new-incomplete-future.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/new-incomplete-future.html deleted file mode 100644 index aa9b9faa..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/new-incomplete-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - newIncompleteFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

newIncompleteFuture

-
-

Returns a new incomplete CompletableFuture of the type to be returned by a CompletionStage method.

Return

a new CompletableFuture

Parameters

the type of the value
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/or-timeout.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/or-timeout.html deleted file mode 100644 index 0549757a..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/or-timeout.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - orTimeout - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

orTimeout

-
-
fun <T, C : CompletableFuture<out T>> C.orTimeout(timeout: Long, unit: TimeUnit): C

Exceptionally completes this CompletableFuture with a TimeoutException if not otherwise completed before the given timeout.

Return

this CompletableFuture

Parameters

timeout

how long to wait before completing exceptionally with a TimeoutException, in units of unit

unit

a TimeUnit determining how to interpret the timeout parameter

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/peek-async.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/peek-async.html deleted file mode 100644 index 952d496f..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/peek-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - peekAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

peekAsync

-
-
fun <T, C : CompletionStage<out T>> C.peekAsync(action: BiConsumer<in T, in Throwable>): C

Peeks the result by executing the given action when this stage completes, executes the given action using this stage's default asynchronous execution facility, returns this stage.

When this stage is complete, the given action is invoked with the result (or null if none) and the exception (or null if none) of this stage as arguments. Whether the supplied action throws an exception or not, do NOT affect this cffu.

Unlike method handle and like method whenComplete, this method is not designed to translate completion outcomes.

Return

this stage

Parameters

action

the action to perform

See also


fun <T, C : CompletionStage<out T>> C.peekAsync(action: BiConsumer<in T, in Throwable>, executor: Executor): C

Peeks the result by executing the given action when this stage completes, executes the given action using the supplied Executor, returns this stage.

When this stage is complete, the given action is invoked with the result (or null if none) and the exception (or null if none) of this stage as arguments. Whether the supplied action throws an exception or not, do NOT affect this cffu.

Unlike method handle and like method whenComplete, this method is not designed to translate completion outcomes.

Return

this stage

Parameters

action

the action to perform

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/peek.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/peek.html deleted file mode 100644 index 11a3bc6f..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/peek.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - peek - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

peek

-
-
fun <T, C : CompletionStage<out T>> C.peek(action: BiConsumer<in T, in Throwable>): C

Peeks the result by executing the given action when this stage completes, returns this stage.

When this stage is complete, the given action is invoked with the result (or null if none) and the exception (or null if none) of this stage as arguments. Whether the supplied action throws an exception or not, do NOT affect this cffu.

Unlike method handle and like method whenComplete, this method is not designed to translate completion outcomes.

Return

this stage

Parameters

action

the action to perform

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/result-now.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/result-now.html deleted file mode 100644 index 185e7fff..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/result-now.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - resultNow - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

resultNow

-
-

Returns the computed result, without waiting.

This method is for cases where the caller knows that the task has already completed successfully, for example when filtering Future objects for the successful tasks and using a mapping operation to obtain results.

val results = futures
.filter { it.state() == Future.State.SUCCESS }
.map { it.resultNow() }
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail-async.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail-async.html deleted file mode 100644 index ce6db922..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - runAfterBothFastFailAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

runAfterBothFastFailAsync

-
-

Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action using CompletableFuture's default asynchronous execution facility. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.runAfterBothAsync except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also


Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action using the supplied executor. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.runAfterBothAsync except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail.html deleted file mode 100644 index ee88848b..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - runAfterBothFastFail - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

runAfterBothFastFail

-
-

Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.runAfterBoth except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success-async.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success-async.html deleted file mode 100644 index b01d9e07..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - runAfterEitherSuccessAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

runAfterEitherSuccessAsync

-
-

Returns a new CompletableFuture that, when either given stage success, executes the given action using CompletableFuture's default asynchronous execution facility. Otherwise, all two given CompletionStage complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletionStage as its cause.

This method is the same as CompletableFuture.runAfterEitherAsync except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also


Returns a new CompletableFuture that, when either given stage success, executes the given action using the supplied executor. Otherwise, all two given CompletionStage complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletionStage as its cause.

This method is the same as CompletableFuture.runAfterEitherAsync except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success.html deleted file mode 100644 index 6c059cc7..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - runAfterEitherSuccess - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

runAfterEitherSuccess

-
-

Returns a new CompletableFuture that, when either given stage success, executes the given action. Otherwise, all two given CompletionStage complete exceptionally, the returned CompletableFuture also does so, with a CompletionException holding an exception from any of the given CompletionStage as its cause.

This method is the same as CompletableFuture.runAfterEither except for the either-success behavior(not either-complete).

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail-async.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail-async.html deleted file mode 100644 index e313c5dc..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - thenAcceptBothFastFailAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

thenAcceptBothFastFailAsync

-
-

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using CompletableFuture's default asynchronous execution facility, with the two results as arguments to the supplied action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.thenAcceptBothAsync except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also


Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using the supplied executor, with the two results as arguments to the supplied action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.thenAcceptBothAsync except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail.html deleted file mode 100644 index 65695cfe..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - thenAcceptBothFastFail - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

thenAcceptBothFastFail

-
-

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed with the two results as arguments to the supplied action. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.thenAcceptBoth except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

action

the action to perform before completing the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail-async.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail-async.html deleted file mode 100644 index 4620238c..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail-async.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - thenCombineFastFailAsync - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

thenCombineFastFailAsync

-
-

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using CompletableFuture's default asynchronous execution facility, with the two results as arguments to the supplied function. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.thenCombineAsync except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

fn

the function to use to compute the value of the returned CompletableFuture

See also


fun <T, U, V> CompletionStage<out T>.thenCombineFastFailAsync(other: CompletionStage<out U>, fn: BiFunction<in T, in U, out V>, executor: Executor): CompletableFuture<V>

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using the supplied executor, with the two results as arguments to the supplied function. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.thenCombineAsync except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

fn

the function to use to compute the value of the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail.html deleted file mode 100644 index 8de023b0..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - thenCombineFastFail - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

thenCombineFastFail

-
-
fun <T, U, V> CompletionStage<out T>.thenCombineFastFail(other: CompletionStage<out U>, fn: BiFunction<in T, in U, out V>): CompletableFuture<V>

Returns a new CompletableFuture that, when tow given stage both complete normally, is executed with the two results as arguments to the supplied function. if any of the given stage complete exceptionally, then the returned CompletableFuture also does so without waiting other incomplete given CompletionStage, with a CompletionException holding this exception as its cause.

This method is the same as CompletableFuture.thenCombine except for the fast-fail behavior.

Return

the new CompletableFuture

Parameters

fn

the function to use to compute the value of the returned CompletableFuture

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/to-cffu.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/to-cffu.html deleted file mode 100644 index c9b8e1d1..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/to-cffu.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - toCffu - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

toCffu

-
-
fun <T> CompletionStage<T>.toCffu(cffuFactory: CffuFactory): Cffu<T>

Wrap an existed CompletableFuture/CompletionStage to Cffu.

This method is the same as CffuFactory.toCffu, providing this method is convenient for method chaining.

See also


Wrap input CompletableFuture/CompletionStage collection elements to Cffu by CffuFactory.toCffu.

This method is the same as CffuFactory.toCffuArray, providing this method is convenient for method chaining.

See also


fun <T> Array<out CompletionStage<T>>.toCffu(cffuFactory: CffuFactory): Array<Cffu<T>>

Wrap input CompletableFuture/CompletionStage array elements to Cffu by CffuFactory.toCffu.

This method is the same as CffuFactory.toCffuArray, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html b/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html deleted file mode 100644 index ae5bea2e..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - toCompletableFuture - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

toCompletableFuture

-
-

Convert CompletionStage (including Cffu) collection elements to CompletableFuture.

This method is the same as CompletableFutureUtils.toCompletableFutureArray, providing this method is convenient for method chaining.

See also


Convert CompletionStage (including Cffu) array elements to CompletableFuture.

This method is the same as CompletableFutureUtils.toCompletableFutureArray, providing this method is convenient for method chaining.

See also

-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/cffu-kotlin/package-list b/dokka/1.0.0-Alpha4/cffu-kotlin/package-list deleted file mode 100644 index 44ad2181..00000000 --- a/dokka/1.0.0-Alpha4/cffu-kotlin/package-list +++ /dev/null @@ -1,107 +0,0 @@ -$dokka.format:html-v1 -$dokka.linkExtension:html -$dokka.location:io.foldright.cffu.kotlin////PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/index.html -$dokka.location:io.foldright.cffu.kotlin//acceptEitherSuccess/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Consumer[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/accept-either-success.html -$dokka.location:io.foldright.cffu.kotlin//acceptEitherSuccessAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Consumer[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/accept-either-success-async.html -$dokka.location:io.foldright.cffu.kotlin//acceptEitherSuccessAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Consumer[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/accept-either-success-async.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.Array[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allOfCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.Array[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.Array[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[*]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allOfFastFailCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[*]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-of-fast-fail-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-cffu.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allResultsOfFastFailCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-results-of-fast-fail-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOf/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOf/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOf/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOf/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOfFastFail/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOfFastFail/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOfFastFail/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//allTupleOfFastFail/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/all-tuple-of-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//anyOfCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.Array[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCffu/kotlin.collections.Collection[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-cffu.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//anyOfSuccessCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/any-of-success-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//applyToEitherSuccess/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success.html -$dokka.location:io.foldright.cffu.kotlin//applyToEitherSuccessAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success-async.html -$dokka.location:io.foldright.cffu.kotlin//applyToEitherSuccessAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/apply-to-either-success-async.html -$dokka.location:io.foldright.cffu.kotlin//cffuState/java.util.concurrent.CompletableFuture[*]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-state.html -$dokka.location:io.foldright.cffu.kotlin//cffuUnwrap/kotlin.Array[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html -$dokka.location:io.foldright.cffu.kotlin//cffuUnwrap/kotlin.collections.Collection[io.foldright.cffu.Cffu[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/cffu-unwrap.html -$dokka.location:io.foldright.cffu.kotlin//completeAsync/TypeParam(bounds=[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]])#java.util.function.Supplier[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/complete-async.html -$dokka.location:io.foldright.cffu.kotlin//completeAsync/TypeParam(bounds=[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]])#java.util.function.Supplier[TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/complete-async.html -$dokka.location:io.foldright.cffu.kotlin//completeOnTimeout/TypeParam(bounds=[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]])#TypeParam(bounds=[kotlin.Any?])#kotlin.Long#java.util.concurrent.TimeUnit/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/complete-on-timeout.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple2[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple3[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component1/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component1.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple2[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple3[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component2/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component2.html -$dokka.location:io.foldright.cffu.kotlin//component3/io.foldright.cffu.tuple.Tuple3[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component3.html -$dokka.location:io.foldright.cffu.kotlin//component3/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component3.html -$dokka.location:io.foldright.cffu.kotlin//component3/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component3.html -$dokka.location:io.foldright.cffu.kotlin//component4/io.foldright.cffu.tuple.Tuple4[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component4.html -$dokka.location:io.foldright.cffu.kotlin//component4/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component4.html -$dokka.location:io.foldright.cffu.kotlin//component5/io.foldright.cffu.tuple.Tuple5[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/component5.html -$dokka.location:io.foldright.cffu.kotlin//copy/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/copy.html -$dokka.location:io.foldright.cffu.kotlin//exceptionNow/java.util.concurrent.CompletableFuture[*]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exception-now.html -$dokka.location:io.foldright.cffu.kotlin//exceptionallyAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[kotlin.Throwable,TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-async.html -$dokka.location:io.foldright.cffu.kotlin//exceptionallyAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[kotlin.Throwable,TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-async.html -$dokka.location:io.foldright.cffu.kotlin//exceptionallyCompose/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[kotlin.Throwable,java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose.html -$dokka.location:io.foldright.cffu.kotlin//exceptionallyComposeAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[kotlin.Throwable,java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose-async.html -$dokka.location:io.foldright.cffu.kotlin//exceptionallyComposeAsync/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#java.util.function.Function[kotlin.Throwable,java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/exceptionally-compose-async.html -$dokka.location:io.foldright.cffu.kotlin//join/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#kotlin.Long#java.util.concurrent.TimeUnit/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/join.html -$dokka.location:io.foldright.cffu.kotlin//minimalCompletionStage/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/minimal-completion-stage.html -$dokka.location:io.foldright.cffu.kotlin//newIncompleteFuture/java.util.concurrent.CompletableFuture[*]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/new-incomplete-future.html -$dokka.location:io.foldright.cffu.kotlin//orTimeout/TypeParam(bounds=[java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]])#kotlin.Long#java.util.concurrent.TimeUnit/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/or-timeout.html -$dokka.location:io.foldright.cffu.kotlin//peek/TypeParam(bounds=[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]])#java.util.function.BiConsumer[TypeParam(bounds=[kotlin.Any?]),kotlin.Throwable]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/peek.html -$dokka.location:io.foldright.cffu.kotlin//peekAsync/TypeParam(bounds=[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]])#java.util.function.BiConsumer[TypeParam(bounds=[kotlin.Any?]),kotlin.Throwable]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/peek-async.html -$dokka.location:io.foldright.cffu.kotlin//peekAsync/TypeParam(bounds=[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]])#java.util.function.BiConsumer[TypeParam(bounds=[kotlin.Any?]),kotlin.Throwable]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/peek-async.html -$dokka.location:io.foldright.cffu.kotlin//resultNow/java.util.concurrent.CompletableFuture[TypeParam(bounds=[kotlin.Any?])]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/result-now.html -$dokka.location:io.foldright.cffu.kotlin//runAfterBothFastFail/java.util.concurrent.CompletionStage[*]#java.util.concurrent.CompletionStage[*]#java.lang.Runnable/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//runAfterBothFastFailAsync/java.util.concurrent.CompletionStage[*]#java.util.concurrent.CompletionStage[*]#java.lang.Runnable#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail-async.html -$dokka.location:io.foldright.cffu.kotlin//runAfterBothFastFailAsync/java.util.concurrent.CompletionStage[*]#java.util.concurrent.CompletionStage[*]#java.lang.Runnable/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/run-after-both-fast-fail-async.html -$dokka.location:io.foldright.cffu.kotlin//runAfterEitherSuccess/java.util.concurrent.CompletionStage[*]#java.util.concurrent.CompletionStage[*]#java.lang.Runnable/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success.html -$dokka.location:io.foldright.cffu.kotlin//runAfterEitherSuccessAsync/java.util.concurrent.CompletionStage[*]#java.util.concurrent.CompletionStage[*]#java.lang.Runnable#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success-async.html -$dokka.location:io.foldright.cffu.kotlin//runAfterEitherSuccessAsync/java.util.concurrent.CompletionStage[*]#java.util.concurrent.CompletionStage[*]#java.lang.Runnable/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/run-after-either-success-async.html -$dokka.location:io.foldright.cffu.kotlin//thenAcceptBothFastFail/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.BiConsumer[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//thenAcceptBothFastFailAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.BiConsumer[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail-async.html -$dokka.location:io.foldright.cffu.kotlin//thenAcceptBothFastFailAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.BiConsumer[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/then-accept-both-fast-fail-async.html -$dokka.location:io.foldright.cffu.kotlin//thenCombineFastFail/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.BiFunction[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail.html -$dokka.location:io.foldright.cffu.kotlin//thenCombineFastFailAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.BiFunction[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.Executor/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail-async.html -$dokka.location:io.foldright.cffu.kotlin//thenCombineFastFailAsync/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#java.util.function.BiFunction[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/then-combine-fast-fail-async.html -$dokka.location:io.foldright.cffu.kotlin//toCffu/java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/to-cffu.html -$dokka.location:io.foldright.cffu.kotlin//toCffu/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/to-cffu.html -$dokka.location:io.foldright.cffu.kotlin//toCffu/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#io.foldright.cffu.CffuFactory/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/to-cffu.html -$dokka.location:io.foldright.cffu.kotlin//toCompletableFuture/kotlin.Array[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html -$dokka.location:io.foldright.cffu.kotlin//toCompletableFuture/kotlin.collections.Collection[java.util.concurrent.CompletionStage[TypeParam(bounds=[kotlin.Any?])]]#/PointingToDeclaration/cffu-kotlin/io.foldright.cffu.kotlin/to-completable-future.html -io.foldright.cffu.kotlin - diff --git a/dokka/1.0.0-Alpha4/images/anchor-copy-button.svg b/dokka/1.0.0-Alpha4/images/anchor-copy-button.svg deleted file mode 100644 index 19c1fa3f..00000000 --- a/dokka/1.0.0-Alpha4/images/anchor-copy-button.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/dokka/1.0.0-Alpha4/images/arrow_down.svg b/dokka/1.0.0-Alpha4/images/arrow_down.svg deleted file mode 100644 index 639aaf12..00000000 --- a/dokka/1.0.0-Alpha4/images/arrow_down.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/dokka/1.0.0-Alpha4/images/burger.svg b/dokka/1.0.0-Alpha4/images/burger.svg deleted file mode 100644 index fcca732b..00000000 --- a/dokka/1.0.0-Alpha4/images/burger.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha4/images/copy-icon.svg b/dokka/1.0.0-Alpha4/images/copy-icon.svg deleted file mode 100644 index 2cb02ec6..00000000 --- a/dokka/1.0.0-Alpha4/images/copy-icon.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/dokka/1.0.0-Alpha4/images/copy-successful-icon.svg b/dokka/1.0.0-Alpha4/images/copy-successful-icon.svg deleted file mode 100644 index c4b95383..00000000 --- a/dokka/1.0.0-Alpha4/images/copy-successful-icon.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/dokka/1.0.0-Alpha4/images/footer-go-to-link.svg b/dokka/1.0.0-Alpha4/images/footer-go-to-link.svg deleted file mode 100644 index a87add7a..00000000 --- a/dokka/1.0.0-Alpha4/images/footer-go-to-link.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/dokka/1.0.0-Alpha4/images/go-to-top-icon.svg b/dokka/1.0.0-Alpha4/images/go-to-top-icon.svg deleted file mode 100644 index abc3d1ce..00000000 --- a/dokka/1.0.0-Alpha4/images/go-to-top-icon.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/dokka/1.0.0-Alpha4/images/homepage.svg b/dokka/1.0.0-Alpha4/images/homepage.svg deleted file mode 100644 index e3c83b1c..00000000 --- a/dokka/1.0.0-Alpha4/images/homepage.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/dokka/1.0.0-Alpha4/images/logo-icon.svg b/dokka/1.0.0-Alpha4/images/logo-icon.svg deleted file mode 100644 index e42f9570..00000000 --- a/dokka/1.0.0-Alpha4/images/logo-icon.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha4/images/nav-icons/abstract-class-kotlin.svg b/dokka/1.0.0-Alpha4/images/nav-icons/abstract-class-kotlin.svg deleted file mode 100644 index 19d6148c..00000000 --- a/dokka/1.0.0-Alpha4/images/nav-icons/abstract-class-kotlin.svg +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha4/images/nav-icons/abstract-class.svg b/dokka/1.0.0-Alpha4/images/nav-icons/abstract-class.svg deleted file mode 100644 index 60182030..00000000 --- a/dokka/1.0.0-Alpha4/images/nav-icons/abstract-class.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha4/images/nav-icons/annotation-kotlin.svg b/dokka/1.0.0-Alpha4/images/nav-icons/annotation-kotlin.svg deleted file mode 100644 index b90f508c..00000000 --- a/dokka/1.0.0-Alpha4/images/nav-icons/annotation-kotlin.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha4/images/nav-icons/annotation.svg b/dokka/1.0.0-Alpha4/images/nav-icons/annotation.svg deleted file mode 100644 index b80c54b4..00000000 --- a/dokka/1.0.0-Alpha4/images/nav-icons/annotation.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha4/images/nav-icons/class-kotlin.svg b/dokka/1.0.0-Alpha4/images/nav-icons/class-kotlin.svg deleted file mode 100644 index 797a2423..00000000 --- a/dokka/1.0.0-Alpha4/images/nav-icons/class-kotlin.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha4/images/nav-icons/class.svg b/dokka/1.0.0-Alpha4/images/nav-icons/class.svg deleted file mode 100644 index 3f1ad167..00000000 --- a/dokka/1.0.0-Alpha4/images/nav-icons/class.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha4/images/nav-icons/enum-kotlin.svg b/dokka/1.0.0-Alpha4/images/nav-icons/enum-kotlin.svg deleted file mode 100644 index 775a7cc9..00000000 --- a/dokka/1.0.0-Alpha4/images/nav-icons/enum-kotlin.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha4/images/nav-icons/enum.svg b/dokka/1.0.0-Alpha4/images/nav-icons/enum.svg deleted file mode 100644 index fa7f2476..00000000 --- a/dokka/1.0.0-Alpha4/images/nav-icons/enum.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha4/images/nav-icons/exception-class.svg b/dokka/1.0.0-Alpha4/images/nav-icons/exception-class.svg deleted file mode 100644 index c0b2bdeb..00000000 --- a/dokka/1.0.0-Alpha4/images/nav-icons/exception-class.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha4/images/nav-icons/field-value.svg b/dokka/1.0.0-Alpha4/images/nav-icons/field-value.svg deleted file mode 100644 index 2771ee56..00000000 --- a/dokka/1.0.0-Alpha4/images/nav-icons/field-value.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - diff --git a/dokka/1.0.0-Alpha4/images/nav-icons/field-variable.svg b/dokka/1.0.0-Alpha4/images/nav-icons/field-variable.svg deleted file mode 100644 index e2d2bbd0..00000000 --- a/dokka/1.0.0-Alpha4/images/nav-icons/field-variable.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - diff --git a/dokka/1.0.0-Alpha4/images/nav-icons/function.svg b/dokka/1.0.0-Alpha4/images/nav-icons/function.svg deleted file mode 100644 index f0da64a0..00000000 --- a/dokka/1.0.0-Alpha4/images/nav-icons/function.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha4/images/nav-icons/interface-kotlin.svg b/dokka/1.0.0-Alpha4/images/nav-icons/interface-kotlin.svg deleted file mode 100644 index 5e163260..00000000 --- a/dokka/1.0.0-Alpha4/images/nav-icons/interface-kotlin.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha4/images/nav-icons/interface.svg b/dokka/1.0.0-Alpha4/images/nav-icons/interface.svg deleted file mode 100644 index 32063ba2..00000000 --- a/dokka/1.0.0-Alpha4/images/nav-icons/interface.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/dokka/1.0.0-Alpha4/images/nav-icons/object.svg b/dokka/1.0.0-Alpha4/images/nav-icons/object.svg deleted file mode 100644 index 31f0ee3e..00000000 --- a/dokka/1.0.0-Alpha4/images/nav-icons/object.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha4/images/nav-icons/typealias-kotlin.svg b/dokka/1.0.0-Alpha4/images/nav-icons/typealias-kotlin.svg deleted file mode 100644 index f4bb238b..00000000 --- a/dokka/1.0.0-Alpha4/images/nav-icons/typealias-kotlin.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/dokka/1.0.0-Alpha4/images/theme-toggle.svg b/dokka/1.0.0-Alpha4/images/theme-toggle.svg deleted file mode 100644 index df86202b..00000000 --- a/dokka/1.0.0-Alpha4/images/theme-toggle.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/dokka/1.0.0-Alpha4/index.html b/dokka/1.0.0-Alpha4/index.html deleted file mode 100644 index 4c656486..00000000 --- a/dokka/1.0.0-Alpha4/index.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - cffu-kotlin - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- -
-

cffu-kotlin

-
-

Packages

-
-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
- -
-
-
- - diff --git a/dokka/1.0.0-Alpha4/navigation.html b/dokka/1.0.0-Alpha4/navigation.html deleted file mode 100644 index 51725bec..00000000 --- a/dokka/1.0.0-Alpha4/navigation.html +++ /dev/null @@ -1,154 +0,0 @@ - - diff --git a/dokka/1.0.0-Alpha4/scripts/clipboard.js b/dokka/1.0.0-Alpha4/scripts/clipboard.js deleted file mode 100644 index 7a4f33c5..00000000 --- a/dokka/1.0.0-Alpha4/scripts/clipboard.js +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. - */ - -window.addEventListener('load', () => { - document.querySelectorAll('span.copy-icon').forEach(element => { - element.addEventListener('click', (el) => copyElementsContentToClipboard(element)); - }) - - document.querySelectorAll('span.anchor-icon').forEach(element => { - element.addEventListener('click', (el) => { - if(element.hasAttribute('pointing-to')){ - const location = hrefWithoutCurrentlyUsedAnchor() + '#' + element.getAttribute('pointing-to') - copyTextToClipboard(element, location) - } - }); - }) -}) - -const copyElementsContentToClipboard = (element) => { - const selection = window.getSelection(); - const range = document.createRange(); - range.selectNodeContents(element.parentNode.parentNode); - selection.removeAllRanges(); - selection.addRange(range); - - copyAndShowPopup(element, () => selection.removeAllRanges()) -} - -const copyTextToClipboard = (element, text) => { - var textarea = document.createElement("textarea"); - textarea.textContent = text; - textarea.style.position = "fixed"; - document.body.appendChild(textarea); - textarea.select(); - - copyAndShowPopup(element, () => document.body.removeChild(textarea)) -} - -const copyAndShowPopup = (element, after) => { - try { - document.execCommand('copy'); - element.nextElementSibling.classList.add('active-popup'); - setTimeout(() => { - element.nextElementSibling.classList.remove('active-popup'); - }, 1200); - } catch (e) { - console.error('Failed to write to clipboard:', e) - } - finally { - if(after) after() - } -} - -const hrefWithoutCurrentlyUsedAnchor = () => window.location.href.split('#')[0] - diff --git a/dokka/1.0.0-Alpha4/scripts/main.js b/dokka/1.0.0-Alpha4/scripts/main.js deleted file mode 100644 index ba6c3473..00000000 --- a/dokka/1.0.0-Alpha4/scripts/main.js +++ /dev/null @@ -1,44 +0,0 @@ -(()=>{var e={8527:e=>{e.exports=''},5570:e=>{e.exports=''},107:e=>{e.exports=''},7224:e=>{e.exports=''},538:e=>{e.exports=''},1924:(e,n,t)=>{"use strict";var r=t(210),o=t(5559),i=o(r("String.prototype.indexOf"));e.exports=function(e,n){var t=r(e,!!n);return"function"==typeof t&&i(e,".prototype.")>-1?o(t):t}},5559:(e,n,t)=>{"use strict";var r=t(8612),o=t(210),i=o("%Function.prototype.apply%"),a=o("%Function.prototype.call%"),l=o("%Reflect.apply%",!0)||r.call(a,i),c=o("%Object.getOwnPropertyDescriptor%",!0),u=o("%Object.defineProperty%",!0),s=o("%Math.max%");if(u)try{u({},"a",{value:1})}catch(e){u=null}e.exports=function(e){var n=l(r,a,arguments);if(c&&u){var t=c(n,"length");t.configurable&&u(n,"length",{value:1+s(0,e.length-(arguments.length-1))})}return n};var f=function(){return l(r,i,arguments)};u?u(e.exports,"apply",{value:f}):e.exports.apply=f},4184:(e,n)=>{var t; -/*! - Copyright (c) 2018 Jed Watson. - Licensed under the MIT License (MIT), see - http://jedwatson.github.io/classnames -*/!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],n=0;n{"use strict";e.exports=function(e,n){var t=this,r=t.constructor;return t.options=Object.assign({storeInstancesGlobally:!0},n||{}),t.callbacks={},t.directMap={},t.sequenceLevels={},t.resetTimer=null,t.ignoreNextKeyup=!1,t.ignoreNextKeypress=!1,t.nextExpectedAction=!1,t.element=e,t.addEvents(),t.options.storeInstancesGlobally&&r.instances.push(t),t},e.exports.prototype.bind=t(2207),e.exports.prototype.bindMultiple=t(3396),e.exports.prototype.unbind=t(9208),e.exports.prototype.trigger=t(9855),e.exports.prototype.reset=t(6214),e.exports.prototype.stopCallback=t(3450),e.exports.prototype.handleKey=t(3067),e.exports.prototype.addEvents=t(718),e.exports.prototype.bindSingle=t(8763),e.exports.prototype.getKeyInfo=t(5825),e.exports.prototype.pickBestAction=t(8608),e.exports.prototype.getReverseMap=t(3956),e.exports.prototype.getMatches=t(3373),e.exports.prototype.resetSequences=t(3346),e.exports.prototype.fireCallback=t(2684),e.exports.prototype.bindSequence=t(7103),e.exports.prototype.resetSequenceTimer=t(7309),e.exports.prototype.detach=t(7554),e.exports.instances=[],e.exports.reset=t(1822),e.exports.REVERSE_MAP=null},718:(e,n,t)=>{"use strict";e.exports=function(){var e=this,n=t(4323),r=e.element;e.eventHandler=t(9646).bind(e),n(r,"keypress",e.eventHandler),n(r,"keydown",e.eventHandler),n(r,"keyup",e.eventHandler)}},2207:e=>{"use strict";e.exports=function(e,n,t){return e=e instanceof Array?e:[e],this.bindMultiple(e,n,t),this}},3396:e=>{"use strict";e.exports=function(e,n,t){for(var r=0;r{"use strict";e.exports=function(e,n,r,o){var i=this;function a(n){return function(){i.nextExpectedAction=n,++i.sequenceLevels[e],i.resetSequenceTimer()}}function l(n){var a;i.fireCallback(r,n,e),"keyup"!==o&&(a=t(6770),i.ignoreNextKeyup=a(n)),setTimeout((function(){i.resetSequences()}),10)}i.sequenceLevels[e]=0;for(var c=0;c{"use strict";e.exports=function(e,n,t,r,o){var i=this;i.directMap[e+":"+t]=n;var a,l=(e=e.replace(/\s+/g," ")).split(" ");l.length>1?i.bindSequence(e,l,n,t):(a=i.getKeyInfo(e,t),i.callbacks[a.key]=i.callbacks[a.key]||[],i.getMatches(a.key,a.modifiers,{type:a.action},r,e,o),i.callbacks[a.key][r?"unshift":"push"]({callback:n,modifiers:a.modifiers,action:a.action,seq:r,level:o,combo:e}))}},7554:(e,n,t)=>{var r=t(4323).off;e.exports=function(){var e=this,n=e.element;r(n,"keypress",e.eventHandler),r(n,"keydown",e.eventHandler),r(n,"keyup",e.eventHandler)}},4323:e=>{function n(e,n,t,r){return!e.addEventListener&&(n="on"+n),(e.addEventListener||e.attachEvent).call(e,n,t,r),t}e.exports=n,e.exports.on=n,e.exports.off=function(e,n,t,r){return!e.removeEventListener&&(n="on"+n),(e.removeEventListener||e.detachEvent).call(e,n,t,r),t}},2684:(e,n,t)=>{"use strict";e.exports=function(e,n,r,o){this.stopCallback(n,n.target||n.srcElement,r,o)||!1===e(n,r)&&(t(1350)(n),t(6103)(n))}},5825:(e,n,t)=>{"use strict";e.exports=function(e,n){var r,o,i,a,l,c,u=[];for(r=t(4520)(e),a=t(7549),l=t(5355),c=t(8581),i=0;i{"use strict";e.exports=function(e,n,r,o,i,a){var l,c,u,s,f=this,p=[],d=r.type;"keypress"!==d||r.code&&"Arrow"===r.code.slice(0,5)||(f.callbacks["any-character"]||[]).forEach((function(e){p.push(e)}));if(!f.callbacks[e])return p;for(u=t(8581),"keyup"===d&&u(e)&&(n=[e]),l=0;l{"use strict";e.exports=function(){var e,n=this.constructor;if(!n.REVERSE_MAP)for(var r in n.REVERSE_MAP={},e=t(4766))r>95&&r<112||e.hasOwnProperty(r)&&(n.REVERSE_MAP[e[r]]=r);return n.REVERSE_MAP}},3067:(e,n,t)=>{"use strict";e.exports=function(e,n,r){var o,i,a,l,c=this,u={},s=0,f=!1;for(o=c.getMatches(e,n,r),i=0;i{"use strict";e.exports=function(e){var n,r=this;"number"!=typeof e.which&&(e.which=e.keyCode);var o=t(6770)(e);void 0!==o&&("keyup"!==e.type||r.ignoreNextKeyup!==o?(n=t(4610),r.handleKey(o,n(e),e)):r.ignoreNextKeyup=!1)}},5532:e=>{"use strict";e.exports=function(e,n){return e.sort().join(",")===n.sort().join(",")}},8608:e=>{"use strict";e.exports=function(e,n,t){return t||(t=this.getReverseMap()[e]?"keydown":"keypress"),"keypress"===t&&n.length&&(t="keydown"),t}},6214:e=>{"use strict";e.exports=function(){return this.callbacks={},this.directMap={},this}},7309:e=>{"use strict";e.exports=function(){var e=this;clearTimeout(e.resetTimer),e.resetTimer=setTimeout((function(){e.resetSequences()}),1e3)}},3346:e=>{"use strict";e.exports=function(e){var n=this;e=e||{};var t,r=!1;for(t in n.sequenceLevels)e[t]?r=!0:n.sequenceLevels[t]=0;r||(n.nextExpectedAction=!1)}},3450:e=>{"use strict";e.exports=function(e,n){if((" "+n.className+" ").indexOf(" combokeys ")>-1)return!1;var t=n.tagName.toLowerCase();return"input"===t||"select"===t||"textarea"===t||n.isContentEditable}},9855:e=>{"use strict";e.exports=function(e,n){return this.directMap[e+":"+n]&&this.directMap[e+":"+n]({},e),this}},9208:e=>{"use strict";e.exports=function(e,n){return this.bind(e,(function(){}),n)}},1822:e=>{"use strict";e.exports=function(){this.instances.forEach((function(e){e.reset()}))}},6770:(e,n,t)=>{"use strict";e.exports=function(e){var n,r;if(n=t(4766),r=t(5295),"keypress"===e.type){var o=String.fromCharCode(e.which);return e.shiftKey||(o=o.toLowerCase()),o}return void 0!==n[e.which]?n[e.which]:void 0!==r[e.which]?r[e.which]:String.fromCharCode(e.which).toLowerCase()}},4610:e=>{"use strict";e.exports=function(e){var n=[];return e.shiftKey&&n.push("shift"),e.altKey&&n.push("alt"),e.ctrlKey&&n.push("ctrl"),e.metaKey&&n.push("meta"),n}},8581:e=>{"use strict";e.exports=function(e){return"shift"===e||"ctrl"===e||"alt"===e||"meta"===e}},4520:e=>{"use strict";e.exports=function(e){return"+"===e?["+"]:e.split("+")}},1350:e=>{"use strict";e.exports=function(e){e.preventDefault?e.preventDefault():e.returnValue=!1}},5355:e=>{"use strict";e.exports={"~":"`","!":"1","@":"2","#":"3",$:"4","%":"5","^":"6","&":"7","*":"8","(":"9",")":"0",_:"-","+":"=",":":";",'"':"'","<":",",">":".","?":"/","|":"\\"}},7549:e=>{"use strict";e.exports={option:"alt",command:"meta",return:"enter",escape:"esc",mod:/Mac|iPod|iPhone|iPad/.test(navigator.platform)?"meta":"ctrl"}},5295:e=>{"use strict";e.exports={106:"*",107:"plus",109:"minus",110:".",111:"/",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"}},4766:e=>{"use strict";e.exports={8:"backspace",9:"tab",13:"enter",16:"shift",17:"ctrl",18:"alt",20:"capslock",27:"esc",32:"space",33:"pageup",34:"pagedown",35:"end",36:"home",37:"left",38:"up",39:"right",40:"down",45:"ins",46:"del",91:"meta",93:"meta",173:"minus",187:"plus",189:"minus",224:"meta"};for(var n=1;n<20;++n)e.exports[111+n]="f"+n;for(n=0;n<=9;++n)e.exports[n+96]=n},6103:e=>{"use strict";e.exports=function(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0}},3362:()=>{var e;!function(){var e=Math.PI,n=2*e,t=e/180,r=document.createElement("div");document.head.appendChild(r);var o=self.ConicGradient=function(e){o.all.push(this),e=e||{},this.canvas=document.createElement("canvas"),this.context=this.canvas.getContext("2d"),this.repeating=!!e.repeating,this.size=e.size||Math.max(innerWidth,innerHeight),this.canvas.width=this.canvas.height=this.size;var n=e.stops;this.stops=(n||"").split(/\s*,(?![^(]*\))\s*/),this.from=0;for(var t=0;t0){var i=this.stops[0].clone();i.pos=0,this.stops.unshift(i)}if(void 0===this.stops[this.stops.length-1].pos)this.stops[this.stops.length-1].pos=1;else if(!this.repeating&&this.stops[this.stops.length-1].pos<1){var a=this.stops[this.stops.length-1].clone();a.pos=1,this.stops.push(a)}if(this.stops.forEach((function(e,n){if(void 0===e.pos){for(var t=n+1;this[t];t++)if(void 0!==this[t].pos){e.pos=this[n-1].pos+(this[t].pos-this[n-1].pos)/(t-n+1);break}}else n>0&&(e.pos=Math.max(e.pos,this[n-1].pos))}),this.stops),this.repeating){var l=(n=this.stops.slice())[n.length-1].pos-n[0].pos;for(t=0;this.stops[this.stops.length-1].pos<1&&t<1e4;t++)for(var c=0;c'},get png(){return this.canvas.toDataURL()},get r(){return Math.sqrt(2)*this.size/2},paint:function(){var e,n,r,o=this.context,i=this.r,a=this.size/2,l=0,c=this.stops[l];o.translate(this.size/2,this.size/2),o.rotate(-90*t),o.rotate(this.from*t),o.translate(-this.size/2,-this.size/2);for(var u=0;u<360;){if(u/360+1e-5>=c.pos){do{e=c,l++,c=this.stops[l]}while(c&&c!=e&&c.pos===e.pos);if(!c)break;var s=e.color+""==c.color+""&&e!=c;n=e.color.map((function(e,n){return c.color[n]-e}))}r=(u/360-e.pos)/(c.pos-e.pos);var f=s?c.color:n.map((function(n,t){var o=n*r+e.color[t];return t<3?255&o:o}));if(o.fillStyle="rgba("+f.join(",")+")",o.beginPath(),o.moveTo(a,a),s)var p=360*(c.pos-e.pos);else p=.5;var d=u*t,h=(d=Math.min(360*t,d))+p*t;h=Math.min(360*t,h+.02),o.arc(a,a,i,d,h),o.closePath(),o.fill(),u+=p}}},o.ColorStop=function(e,t){if(this.gradient=e,t){var r=t.match(/^(.+?)(?:\s+([\d.]+)(%|deg|turn|grad|rad)?)?(?:\s+([\d.]+)(%|deg|turn|grad|rad)?)?\s*$/);if(this.color=o.ColorStop.colorToRGBA(r[1]),r[2]){var i=r[3];"%"==i||"0"===r[2]&&!i?this.pos=r[2]/100:"turn"==i?this.pos=+r[2]:"deg"==i?this.pos=r[2]/360:"grad"==i?this.pos=r[2]/400:"rad"==i&&(this.pos=r[2]/n)}r[4]&&(this.next=new o.ColorStop(e,r[1]+" "+r[4]+r[5]))}},o.ColorStop.prototype={clone:function(){var e=new o.ColorStop(this.gradient);return e.color=this.color,e.pos=this.pos,e},toString:function(){return"rgba("+this.color.join(", ")+") "+100*this.pos+"%"}},o.ColorStop.colorToRGBA=function(e){if(!Array.isArray(e)&&-1==e.indexOf("from")){r.style.color=e;var n=getComputedStyle(r).color.match(/rgba?\(([\d.]+), ([\d.]+), ([\d.]+)(?:, ([\d.]+))?\)/);return n&&(n.shift(),(n=n.map((function(e){return+e})))[3]=isNaN(n[3])?1:n[3]),n||[0,0,0,0]}return e}}(),self.StyleFix&&((e=document.createElement("p")).style.backgroundImage="conic-gradient(white, black)",e.style.backgroundImage=PrefixFree.prefix+"conic-gradient(white, black)",e.style.backgroundImage||StyleFix.register((function(e,n){return e.indexOf("conic-gradient")>-1&&(e=e.replace(/(?:repeating-)?conic-gradient\(\s*((?:\([^()]+\)|[^;()}])+?)\)/g,(function(e,n){return new ConicGradient({stops:n,repeating:e.indexOf("repeating-")>-1})}))),e})))},9662:(e,n,t)=>{var r=t(7854),o=t(614),i=t(6330),a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not a function")}},9483:(e,n,t)=>{var r=t(7854),o=t(4411),i=t(6330),a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not a constructor")}},6077:(e,n,t)=>{var r=t(7854),o=t(614),i=r.String,a=r.TypeError;e.exports=function(e){if("object"==typeof e||o(e))return e;throw a("Can't set "+i(e)+" as a prototype")}},1223:(e,n,t)=>{var r=t(5112),o=t(30),i=t(3070),a=r("unscopables"),l=Array.prototype;null==l[a]&&i.f(l,a,{configurable:!0,value:o(null)}),e.exports=function(e){l[a][e]=!0}},1530:(e,n,t)=>{"use strict";var r=t(8710).charAt;e.exports=function(e,n,t){return n+(t?r(e,n).length:1)}},5787:(e,n,t)=>{var r=t(7854),o=t(7976),i=r.TypeError;e.exports=function(e,n){if(o(n,e))return e;throw i("Incorrect invocation")}},9670:(e,n,t)=>{var r=t(7854),o=t(111),i=r.String,a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not an object")}},7556:(e,n,t)=>{var r=t(7293);e.exports=r((function(){if("function"==typeof ArrayBuffer){var e=new ArrayBuffer(8);Object.isExtensible(e)&&Object.defineProperty(e,"a",{value:8})}}))},8533:(e,n,t)=>{"use strict";var r=t(2092).forEach,o=t(9341)("forEach");e.exports=o?[].forEach:function(e){return r(this,e,arguments.length>1?arguments[1]:void 0)}},8457:(e,n,t)=>{"use strict";var r=t(7854),o=t(9974),i=t(6916),a=t(7908),l=t(3411),c=t(7659),u=t(4411),s=t(6244),f=t(6135),p=t(8554),d=t(1246),h=r.Array;e.exports=function(e){var n=a(e),t=u(this),r=arguments.length,g=r>1?arguments[1]:void 0,v=void 0!==g;v&&(g=o(g,r>2?arguments[2]:void 0));var A,b,m,y,E,_,C=d(n),w=0;if(!C||this==h&&c(C))for(A=s(n),b=t?new this(A):h(A);A>w;w++)_=v?g(n[w],w):n[w],f(b,w,_);else for(E=(y=p(n,C)).next,b=t?new this:[];!(m=i(E,y)).done;w++)_=v?l(y,g,[m.value,w],!0):m.value,f(b,w,_);return b.length=w,b}},1318:(e,n,t)=>{var r=t(5656),o=t(1400),i=t(6244),a=function(e){return function(n,t,a){var l,c=r(n),u=i(c),s=o(a,u);if(e&&t!=t){for(;u>s;)if((l=c[s++])!=l)return!0}else for(;u>s;s++)if((e||s in c)&&c[s]===t)return e||s||0;return!e&&-1}};e.exports={includes:a(!0),indexOf:a(!1)}},2092:(e,n,t)=>{var r=t(9974),o=t(1702),i=t(8361),a=t(7908),l=t(6244),c=t(5417),u=o([].push),s=function(e){var n=1==e,t=2==e,o=3==e,s=4==e,f=6==e,p=7==e,d=5==e||f;return function(h,g,v,A){for(var b,m,y=a(h),E=i(y),_=r(g,v),C=l(E),w=0,x=A||c,k=n?x(h,C):t||p?x(h,0):void 0;C>w;w++)if((d||w in E)&&(m=_(b=E[w],w,y),e))if(n)k[w]=m;else if(m)switch(e){case 3:return!0;case 5:return b;case 6:return w;case 2:u(k,b)}else switch(e){case 4:return!1;case 7:u(k,b)}return f?-1:o||s?s:k}};e.exports={forEach:s(0),map:s(1),filter:s(2),some:s(3),every:s(4),find:s(5),findIndex:s(6),filterReject:s(7)}},1194:(e,n,t)=>{var r=t(7293),o=t(5112),i=t(7392),a=o("species");e.exports=function(e){return i>=51||!r((function(){var n=[];return(n.constructor={})[a]=function(){return{foo:1}},1!==n[e](Boolean).foo}))}},9341:(e,n,t)=>{"use strict";var r=t(7293);e.exports=function(e,n){var t=[][e];return!!t&&r((function(){t.call(null,n||function(){throw 1},1)}))}},3671:(e,n,t)=>{var r=t(7854),o=t(9662),i=t(7908),a=t(8361),l=t(6244),c=r.TypeError,u=function(e){return function(n,t,r,u){o(t);var s=i(n),f=a(s),p=l(s),d=e?p-1:0,h=e?-1:1;if(r<2)for(;;){if(d in f){u=f[d],d+=h;break}if(d+=h,e?d<0:p<=d)throw c("Reduce of empty array with no initial value")}for(;e?d>=0:p>d;d+=h)d in f&&(u=t(u,f[d],d,s));return u}};e.exports={left:u(!1),right:u(!0)}},206:(e,n,t)=>{var r=t(1702);e.exports=r([].slice)},4362:(e,n,t)=>{var r=t(206),o=Math.floor,i=function(e,n){var t=e.length,c=o(t/2);return t<8?a(e,n):l(e,i(r(e,0,c),n),i(r(e,c),n),n)},a=function(e,n){for(var t,r,o=e.length,i=1;i0;)e[r]=e[--r];r!==i++&&(e[r]=t)}return e},l=function(e,n,t,r){for(var o=n.length,i=t.length,a=0,l=0;a{var r=t(7854),o=t(3157),i=t(4411),a=t(111),l=t(5112)("species"),c=r.Array;e.exports=function(e){var n;return o(e)&&(n=e.constructor,(i(n)&&(n===c||o(n.prototype))||a(n)&&null===(n=n[l]))&&(n=void 0)),void 0===n?c:n}},5417:(e,n,t)=>{var r=t(7475);e.exports=function(e,n){return new(r(e))(0===n?0:n)}},3411:(e,n,t)=>{var r=t(9670),o=t(9212);e.exports=function(e,n,t,i){try{return i?n(r(t)[0],t[1]):n(t)}catch(n){o(e,"throw",n)}}},7072:(e,n,t)=>{var r=t(5112)("iterator"),o=!1;try{var i=0,a={next:function(){return{done:!!i++}},return:function(){o=!0}};a[r]=function(){return this},Array.from(a,(function(){throw 2}))}catch(e){}e.exports=function(e,n){if(!n&&!o)return!1;var t=!1;try{var i={};i[r]=function(){return{next:function(){return{done:t=!0}}}},e(i)}catch(e){}return t}},4326:(e,n,t)=>{var r=t(1702),o=r({}.toString),i=r("".slice);e.exports=function(e){return i(o(e),8,-1)}},648:(e,n,t)=>{var r=t(7854),o=t(1694),i=t(614),a=t(4326),l=t(5112)("toStringTag"),c=r.Object,u="Arguments"==a(function(){return arguments}());e.exports=o?a:function(e){var n,t,r;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(t=function(e,n){try{return e[n]}catch(e){}}(n=c(e),l))?t:u?a(n):"Object"==(r=a(n))&&i(n.callee)?"Arguments":r}},5631:(e,n,t)=>{"use strict";var r=t(3070).f,o=t(30),i=t(2248),a=t(9974),l=t(5787),c=t(408),u=t(654),s=t(6340),f=t(9781),p=t(2423).fastKey,d=t(9909),h=d.set,g=d.getterFor;e.exports={getConstructor:function(e,n,t,u){var s=e((function(e,r){l(e,d),h(e,{type:n,index:o(null),first:void 0,last:void 0,size:0}),f||(e.size=0),null!=r&&c(r,e[u],{that:e,AS_ENTRIES:t})})),d=s.prototype,v=g(n),A=function(e,n,t){var r,o,i=v(e),a=b(e,n);return a?a.value=t:(i.last=a={index:o=p(n,!0),key:n,value:t,previous:r=i.last,next:void 0,removed:!1},i.first||(i.first=a),r&&(r.next=a),f?i.size++:e.size++,"F"!==o&&(i.index[o]=a)),e},b=function(e,n){var t,r=v(e),o=p(n);if("F"!==o)return r.index[o];for(t=r.first;t;t=t.next)if(t.key==n)return t};return i(d,{clear:function(){for(var e=v(this),n=e.index,t=e.first;t;)t.removed=!0,t.previous&&(t.previous=t.previous.next=void 0),delete n[t.index],t=t.next;e.first=e.last=void 0,f?e.size=0:this.size=0},delete:function(e){var n=this,t=v(n),r=b(n,e);if(r){var o=r.next,i=r.previous;delete t.index[r.index],r.removed=!0,i&&(i.next=o),o&&(o.previous=i),t.first==r&&(t.first=o),t.last==r&&(t.last=i),f?t.size--:n.size--}return!!r},forEach:function(e){for(var n,t=v(this),r=a(e,arguments.length>1?arguments[1]:void 0);n=n?n.next:t.first;)for(r(n.value,n.key,this);n&&n.removed;)n=n.previous},has:function(e){return!!b(this,e)}}),i(d,t?{get:function(e){var n=b(this,e);return n&&n.value},set:function(e,n){return A(this,0===e?0:e,n)}}:{add:function(e){return A(this,e=0===e?0:e,e)}}),f&&r(d,"size",{get:function(){return v(this).size}}),s},setStrong:function(e,n,t){var r=n+" Iterator",o=g(n),i=g(r);u(e,n,(function(e,n){h(this,{type:r,target:e,state:o(e),kind:n,last:void 0})}),(function(){for(var e=i(this),n=e.kind,t=e.last;t&&t.removed;)t=t.previous;return e.target&&(e.last=t=t?t.next:e.state.first)?"keys"==n?{value:t.key,done:!1}:"values"==n?{value:t.value,done:!1}:{value:[t.key,t.value],done:!1}:(e.target=void 0,{value:void 0,done:!0})}),t?"entries":"values",!t,!0),s(n)}}},9320:(e,n,t)=>{"use strict";var r=t(1702),o=t(2248),i=t(2423).getWeakData,a=t(9670),l=t(111),c=t(5787),u=t(408),s=t(2092),f=t(2597),p=t(9909),d=p.set,h=p.getterFor,g=s.find,v=s.findIndex,A=r([].splice),b=0,m=function(e){return e.frozen||(e.frozen=new y)},y=function(){this.entries=[]},E=function(e,n){return g(e.entries,(function(e){return e[0]===n}))};y.prototype={get:function(e){var n=E(this,e);if(n)return n[1]},has:function(e){return!!E(this,e)},set:function(e,n){var t=E(this,e);t?t[1]=n:this.entries.push([e,n])},delete:function(e){var n=v(this.entries,(function(n){return n[0]===e}));return~n&&A(this.entries,n,1),!!~n}},e.exports={getConstructor:function(e,n,t,r){var s=e((function(e,o){c(e,p),d(e,{type:n,id:b++,frozen:void 0}),null!=o&&u(o,e[r],{that:e,AS_ENTRIES:t})})),p=s.prototype,g=h(n),v=function(e,n,t){var r=g(e),o=i(a(n),!0);return!0===o?m(r).set(n,t):o[r.id]=t,e};return o(p,{delete:function(e){var n=g(this);if(!l(e))return!1;var t=i(e);return!0===t?m(n).delete(e):t&&f(t,n.id)&&delete t[n.id]},has:function(e){var n=g(this);if(!l(e))return!1;var t=i(e);return!0===t?m(n).has(e):t&&f(t,n.id)}}),o(p,t?{get:function(e){var n=g(this);if(l(e)){var t=i(e);return!0===t?m(n).get(e):t?t[n.id]:void 0}},set:function(e,n){return v(this,e,n)}}:{add:function(e){return v(this,e,!0)}}),s}}},7710:(e,n,t)=>{"use strict";var r=t(2109),o=t(7854),i=t(1702),a=t(4705),l=t(1320),c=t(2423),u=t(408),s=t(5787),f=t(614),p=t(111),d=t(7293),h=t(7072),g=t(8003),v=t(9587);e.exports=function(e,n,t){var A=-1!==e.indexOf("Map"),b=-1!==e.indexOf("Weak"),m=A?"set":"add",y=o[e],E=y&&y.prototype,_=y,C={},w=function(e){var n=i(E[e]);l(E,e,"add"==e?function(e){return n(this,0===e?0:e),this}:"delete"==e?function(e){return!(b&&!p(e))&&n(this,0===e?0:e)}:"get"==e?function(e){return b&&!p(e)?void 0:n(this,0===e?0:e)}:"has"==e?function(e){return!(b&&!p(e))&&n(this,0===e?0:e)}:function(e,t){return n(this,0===e?0:e,t),this})};if(a(e,!f(y)||!(b||E.forEach&&!d((function(){(new y).entries().next()})))))_=t.getConstructor(n,e,A,m),c.enable();else if(a(e,!0)){var x=new _,k=x[m](b?{}:-0,1)!=x,S=d((function(){x.has(1)})),O=h((function(e){new y(e)})),B=!b&&d((function(){for(var e=new y,n=5;n--;)e[m](n,n);return!e.has(-0)}));O||((_=n((function(e,n){s(e,E);var t=v(new y,e,_);return null!=n&&u(n,t[m],{that:t,AS_ENTRIES:A}),t}))).prototype=E,E.constructor=_),(S||B)&&(w("delete"),w("has"),A&&w("get")),(B||k)&&w(m),b&&E.clear&&delete E.clear}return C[e]=_,r({global:!0,forced:_!=y},C),g(_,e),b||t.setStrong(_,e,A),_}},9920:(e,n,t)=>{var r=t(2597),o=t(3887),i=t(1236),a=t(3070);e.exports=function(e,n){for(var t=o(n),l=a.f,c=i.f,u=0;u{var r=t(5112)("match");e.exports=function(e){var n=/./;try{"/./"[e](n)}catch(t){try{return n[r]=!1,"/./"[e](n)}catch(e){}}return!1}},8544:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e)!==e.prototype}))},4230:(e,n,t)=>{var r=t(1702),o=t(4488),i=t(1340),a=/"/g,l=r("".replace);e.exports=function(e,n,t,r){var c=i(o(e)),u="<"+n;return""!==t&&(u+=" "+t+'="'+l(i(r),a,""")+'"'),u+">"+c+""}},4994:(e,n,t)=>{"use strict";var r=t(3383).IteratorPrototype,o=t(30),i=t(9114),a=t(8003),l=t(7497),c=function(){return this};e.exports=function(e,n,t){var u=n+" Iterator";return e.prototype=o(r,{next:i(1,t)}),a(e,u,!1,!0),l[u]=c,e}},8880:(e,n,t)=>{var r=t(9781),o=t(3070),i=t(9114);e.exports=r?function(e,n,t){return o.f(e,n,i(1,t))}:function(e,n,t){return e[n]=t,e}},9114:e=>{e.exports=function(e,n){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:n}}},6135:(e,n,t)=>{"use strict";var r=t(4948),o=t(3070),i=t(9114);e.exports=function(e,n,t){var a=r(n);a in e?o.f(e,a,i(0,t)):e[a]=t}},8709:(e,n,t)=>{"use strict";var r=t(7854),o=t(9670),i=t(2140),a=r.TypeError;e.exports=function(e){if(o(this),"string"===e||"default"===e)e="string";else if("number"!==e)throw a("Incorrect hint");return i(this,e)}},654:(e,n,t)=>{"use strict";var r=t(2109),o=t(6916),i=t(1913),a=t(6530),l=t(614),c=t(4994),u=t(9518),s=t(7674),f=t(8003),p=t(8880),d=t(1320),h=t(5112),g=t(7497),v=t(3383),A=a.PROPER,b=a.CONFIGURABLE,m=v.IteratorPrototype,y=v.BUGGY_SAFARI_ITERATORS,E=h("iterator"),_="keys",C="values",w="entries",x=function(){return this};e.exports=function(e,n,t,a,h,v,k){c(t,n,a);var S,O,B,I=function(e){if(e===h&&R)return R;if(!y&&e in j)return j[e];switch(e){case _:case C:case w:return function(){return new t(this,e)}}return function(){return new t(this)}},T=n+" Iterator",P=!1,j=e.prototype,z=j[E]||j["@@iterator"]||h&&j[h],R=!y&&z||I(h),M="Array"==n&&j.entries||z;if(M&&(S=u(M.call(new e)))!==Object.prototype&&S.next&&(i||u(S)===m||(s?s(S,m):l(S[E])||d(S,E,x)),f(S,T,!0,!0),i&&(g[T]=x)),A&&h==C&&z&&z.name!==C&&(!i&&b?p(j,"name",C):(P=!0,R=function(){return o(z,this)})),h)if(O={values:I(C),keys:v?R:I(_),entries:I(w)},k)for(B in O)(y||P||!(B in j))&&d(j,B,O[B]);else r({target:n,proto:!0,forced:y||P},O);return i&&!k||j[E]===R||d(j,E,R,{name:h}),g[n]=R,O}},7235:(e,n,t)=>{var r=t(857),o=t(2597),i=t(6061),a=t(3070).f;e.exports=function(e){var n=r.Symbol||(r.Symbol={});o(n,e)||a(n,e,{value:i.f(e)})}},9781:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},317:(e,n,t)=>{var r=t(7854),o=t(111),i=r.document,a=o(i)&&o(i.createElement);e.exports=function(e){return a?i.createElement(e):{}}},8324:e=>{e.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},8509:(e,n,t)=>{var r=t(317)("span").classList,o=r&&r.constructor&&r.constructor.prototype;e.exports=o===Object.prototype?void 0:o},8886:(e,n,t)=>{var r=t(8113).match(/firefox\/(\d+)/i);e.exports=!!r&&+r[1]},256:(e,n,t)=>{var r=t(8113);e.exports=/MSIE|Trident/.test(r)},5268:(e,n,t)=>{var r=t(4326),o=t(7854);e.exports="process"==r(o.process)},8113:(e,n,t)=>{var r=t(5005);e.exports=r("navigator","userAgent")||""},7392:(e,n,t)=>{var r,o,i=t(7854),a=t(8113),l=i.process,c=i.Deno,u=l&&l.versions||c&&c.version,s=u&&u.v8;s&&(o=(r=s.split("."))[0]>0&&r[0]<4?1:+(r[0]+r[1])),!o&&a&&(!(r=a.match(/Edge\/(\d+)/))||r[1]>=74)&&(r=a.match(/Chrome\/(\d+)/))&&(o=+r[1]),e.exports=o},8008:(e,n,t)=>{var r=t(8113).match(/AppleWebKit\/(\d+)\./);e.exports=!!r&&+r[1]},748:e=>{e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},2109:(e,n,t)=>{var r=t(7854),o=t(1236).f,i=t(8880),a=t(1320),l=t(3505),c=t(9920),u=t(4705);e.exports=function(e,n){var t,s,f,p,d,h=e.target,g=e.global,v=e.stat;if(t=g?r:v?r[h]||l(h,{}):(r[h]||{}).prototype)for(s in n){if(p=n[s],f=e.noTargetGet?(d=o(t,s))&&d.value:t[s],!u(g?s:h+(v?".":"#")+s,e.forced)&&void 0!==f){if(typeof p==typeof f)continue;c(p,f)}(e.sham||f&&f.sham)&&i(p,"sham",!0),a(t,s,p,e)}}},7293:e=>{e.exports=function(e){try{return!!e()}catch(e){return!0}}},7007:(e,n,t)=>{"use strict";t(4916);var r=t(1702),o=t(1320),i=t(2261),a=t(7293),l=t(5112),c=t(8880),u=l("species"),s=RegExp.prototype;e.exports=function(e,n,t,f){var p=l(e),d=!a((function(){var n={};return n[p]=function(){return 7},7!=""[e](n)})),h=d&&!a((function(){var n=!1,t=/a/;return"split"===e&&((t={}).constructor={},t.constructor[u]=function(){return t},t.flags="",t[p]=/./[p]),t.exec=function(){return n=!0,null},t[p](""),!n}));if(!d||!h||t){var g=r(/./[p]),v=n(p,""[e],(function(e,n,t,o,a){var l=r(e),c=n.exec;return c===i||c===s.exec?d&&!a?{done:!0,value:g(n,t,o)}:{done:!0,value:l(t,n,o)}:{done:!1}}));o(String.prototype,e,v[0]),o(s,p,v[1])}f&&c(s[p],"sham",!0)}},6677:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){return Object.isExtensible(Object.preventExtensions({}))}))},2104:e=>{var n=Function.prototype,t=n.apply,r=n.bind,o=n.call;e.exports="object"==typeof Reflect&&Reflect.apply||(r?o.bind(t):function(){return o.apply(t,arguments)})},9974:(e,n,t)=>{var r=t(1702),o=t(9662),i=r(r.bind);e.exports=function(e,n){return o(e),void 0===n?e:i?i(e,n):function(){return e.apply(n,arguments)}}},7065:(e,n,t)=>{"use strict";var r=t(7854),o=t(1702),i=t(9662),a=t(111),l=t(2597),c=t(206),u=r.Function,s=o([].concat),f=o([].join),p={},d=function(e,n,t){if(!l(p,n)){for(var r=[],o=0;o{var n=Function.prototype.call;e.exports=n.bind?n.bind(n):function(){return n.apply(n,arguments)}},6530:(e,n,t)=>{var r=t(9781),o=t(2597),i=Function.prototype,a=r&&Object.getOwnPropertyDescriptor,l=o(i,"name"),c=l&&"something"===function(){}.name,u=l&&(!r||r&&a(i,"name").configurable);e.exports={EXISTS:l,PROPER:c,CONFIGURABLE:u}},1702:e=>{var n=Function.prototype,t=n.bind,r=n.call,o=t&&t.bind(r);e.exports=t?function(e){return e&&o(r,e)}:function(e){return e&&function(){return r.apply(e,arguments)}}},5005:(e,n,t)=>{var r=t(7854),o=t(614),i=function(e){return o(e)?e:void 0};e.exports=function(e,n){return arguments.length<2?i(r[e]):r[e]&&r[e][n]}},1246:(e,n,t)=>{var r=t(648),o=t(8173),i=t(7497),a=t(5112)("iterator");e.exports=function(e){if(null!=e)return o(e,a)||o(e,"@@iterator")||i[r(e)]}},8554:(e,n,t)=>{var r=t(7854),o=t(6916),i=t(9662),a=t(9670),l=t(6330),c=t(1246),u=r.TypeError;e.exports=function(e,n){var t=arguments.length<2?c(e):n;if(i(t))return a(o(t,e));throw u(l(e)+" is not iterable")}},8173:(e,n,t)=>{var r=t(9662);e.exports=function(e,n){var t=e[n];return null==t?void 0:r(t)}},647:(e,n,t)=>{var r=t(1702),o=t(7908),i=Math.floor,a=r("".charAt),l=r("".replace),c=r("".slice),u=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,s=/\$([$&'`]|\d{1,2})/g;e.exports=function(e,n,t,r,f,p){var d=t+e.length,h=r.length,g=s;return void 0!==f&&(f=o(f),g=u),l(p,g,(function(o,l){var u;switch(a(l,0)){case"$":return"$";case"&":return e;case"`":return c(n,0,t);case"'":return c(n,d);case"<":u=f[c(l,1,-1)];break;default:var s=+l;if(0===s)return o;if(s>h){var p=i(s/10);return 0===p?o:p<=h?void 0===r[p-1]?a(l,1):r[p-1]+a(l,1):o}u=r[s-1]}return void 0===u?"":u}))}},7854:(e,n,t)=>{var r=function(e){return e&&e.Math==Math&&e};e.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof t.g&&t.g)||function(){return this}()||Function("return this")()},2597:(e,n,t)=>{var r=t(1702),o=t(7908),i=r({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,n){return i(o(e),n)}},3501:e=>{e.exports={}},490:(e,n,t)=>{var r=t(5005);e.exports=r("document","documentElement")},4664:(e,n,t)=>{var r=t(9781),o=t(7293),i=t(317);e.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},8361:(e,n,t)=>{var r=t(7854),o=t(1702),i=t(7293),a=t(4326),l=r.Object,c=o("".split);e.exports=i((function(){return!l("z").propertyIsEnumerable(0)}))?function(e){return"String"==a(e)?c(e,""):l(e)}:l},9587:(e,n,t)=>{var r=t(614),o=t(111),i=t(7674);e.exports=function(e,n,t){var a,l;return i&&r(a=n.constructor)&&a!==t&&o(l=a.prototype)&&l!==t.prototype&&i(e,l),e}},2788:(e,n,t)=>{var r=t(1702),o=t(614),i=t(5465),a=r(Function.toString);o(i.inspectSource)||(i.inspectSource=function(e){return a(e)}),e.exports=i.inspectSource},2423:(e,n,t)=>{var r=t(2109),o=t(1702),i=t(3501),a=t(111),l=t(2597),c=t(3070).f,u=t(8006),s=t(1156),f=t(2050),p=t(9711),d=t(6677),h=!1,g=p("meta"),v=0,A=function(e){c(e,g,{value:{objectID:"O"+v++,weakData:{}}})},b=e.exports={enable:function(){b.enable=function(){},h=!0;var e=u.f,n=o([].splice),t={};t[g]=1,e(t).length&&(u.f=function(t){for(var r=e(t),o=0,i=r.length;o{var r,o,i,a=t(8536),l=t(7854),c=t(1702),u=t(111),s=t(8880),f=t(2597),p=t(5465),d=t(6200),h=t(3501),g="Object already initialized",v=l.TypeError,A=l.WeakMap;if(a||p.state){var b=p.state||(p.state=new A),m=c(b.get),y=c(b.has),E=c(b.set);r=function(e,n){if(y(b,e))throw new v(g);return n.facade=e,E(b,e,n),n},o=function(e){return m(b,e)||{}},i=function(e){return y(b,e)}}else{var _=d("state");h[_]=!0,r=function(e,n){if(f(e,_))throw new v(g);return n.facade=e,s(e,_,n),n},o=function(e){return f(e,_)?e[_]:{}},i=function(e){return f(e,_)}}e.exports={set:r,get:o,has:i,enforce:function(e){return i(e)?o(e):r(e,{})},getterFor:function(e){return function(n){var t;if(!u(n)||(t=o(n)).type!==e)throw v("Incompatible receiver, "+e+" required");return t}}}},7659:(e,n,t)=>{var r=t(5112),o=t(7497),i=r("iterator"),a=Array.prototype;e.exports=function(e){return void 0!==e&&(o.Array===e||a[i]===e)}},3157:(e,n,t)=>{var r=t(4326);e.exports=Array.isArray||function(e){return"Array"==r(e)}},614:e=>{e.exports=function(e){return"function"==typeof e}},4411:(e,n,t)=>{var r=t(1702),o=t(7293),i=t(614),a=t(648),l=t(5005),c=t(2788),u=function(){},s=[],f=l("Reflect","construct"),p=/^\s*(?:class|function)\b/,d=r(p.exec),h=!p.exec(u),g=function(e){if(!i(e))return!1;try{return f(u,s,e),!0}catch(e){return!1}};e.exports=!f||o((function(){var e;return g(g.call)||!g(Object)||!g((function(){e=!0}))||e}))?function(e){if(!i(e))return!1;switch(a(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}return h||!!d(p,c(e))}:g},4705:(e,n,t)=>{var r=t(7293),o=t(614),i=/#|\.prototype\./,a=function(e,n){var t=c[l(e)];return t==s||t!=u&&(o(n)?r(n):!!n)},l=a.normalize=function(e){return String(e).replace(i,".").toLowerCase()},c=a.data={},u=a.NATIVE="N",s=a.POLYFILL="P";e.exports=a},111:(e,n,t)=>{var r=t(614);e.exports=function(e){return"object"==typeof e?null!==e:r(e)}},1913:e=>{e.exports=!1},7850:(e,n,t)=>{var r=t(111),o=t(4326),i=t(5112)("match");e.exports=function(e){var n;return r(e)&&(void 0!==(n=e[i])?!!n:"RegExp"==o(e))}},2190:(e,n,t)=>{var r=t(7854),o=t(5005),i=t(614),a=t(7976),l=t(3307),c=r.Object;e.exports=l?function(e){return"symbol"==typeof e}:function(e){var n=o("Symbol");return i(n)&&a(n.prototype,c(e))}},408:(e,n,t)=>{var r=t(7854),o=t(9974),i=t(6916),a=t(9670),l=t(6330),c=t(7659),u=t(6244),s=t(7976),f=t(8554),p=t(1246),d=t(9212),h=r.TypeError,g=function(e,n){this.stopped=e,this.result=n},v=g.prototype;e.exports=function(e,n,t){var r,A,b,m,y,E,_,C=t&&t.that,w=!(!t||!t.AS_ENTRIES),x=!(!t||!t.IS_ITERATOR),k=!(!t||!t.INTERRUPTED),S=o(n,C),O=function(e){return r&&d(r,"normal",e),new g(!0,e)},B=function(e){return w?(a(e),k?S(e[0],e[1],O):S(e[0],e[1])):k?S(e,O):S(e)};if(x)r=e;else{if(!(A=p(e)))throw h(l(e)+" is not iterable");if(c(A)){for(b=0,m=u(e);m>b;b++)if((y=B(e[b]))&&s(v,y))return y;return new g(!1)}r=f(e,A)}for(E=r.next;!(_=i(E,r)).done;){try{y=B(_.value)}catch(e){d(r,"throw",e)}if("object"==typeof y&&y&&s(v,y))return y}return new g(!1)}},9212:(e,n,t)=>{var r=t(6916),o=t(9670),i=t(8173);e.exports=function(e,n,t){var a,l;o(e);try{if(!(a=i(e,"return"))){if("throw"===n)throw t;return t}a=r(a,e)}catch(e){l=!0,a=e}if("throw"===n)throw t;if(l)throw a;return o(a),t}},3383:(e,n,t)=>{"use strict";var r,o,i,a=t(7293),l=t(614),c=t(30),u=t(9518),s=t(1320),f=t(5112),p=t(1913),d=f("iterator"),h=!1;[].keys&&("next"in(i=[].keys())?(o=u(u(i)))!==Object.prototype&&(r=o):h=!0),null==r||a((function(){var e={};return r[d].call(e)!==e}))?r={}:p&&(r=c(r)),l(r[d])||s(r,d,(function(){return this})),e.exports={IteratorPrototype:r,BUGGY_SAFARI_ITERATORS:h}},7497:e=>{e.exports={}},6244:(e,n,t)=>{var r=t(7466);e.exports=function(e){return r(e.length)}},133:(e,n,t)=>{var r=t(7392),o=t(7293);e.exports=!!Object.getOwnPropertySymbols&&!o((function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&r&&r<41}))},8536:(e,n,t)=>{var r=t(7854),o=t(614),i=t(2788),a=r.WeakMap;e.exports=o(a)&&/native code/.test(i(a))},3929:(e,n,t)=>{var r=t(7854),o=t(7850),i=r.TypeError;e.exports=function(e){if(o(e))throw i("The method doesn't accept regular expressions");return e}},1574:(e,n,t)=>{"use strict";var r=t(9781),o=t(1702),i=t(6916),a=t(7293),l=t(1956),c=t(5181),u=t(5296),s=t(7908),f=t(8361),p=Object.assign,d=Object.defineProperty,h=o([].concat);e.exports=!p||a((function(){if(r&&1!==p({b:1},p(d({},"a",{enumerable:!0,get:function(){d(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var e={},n={},t=Symbol(),o="abcdefghijklmnopqrst";return e[t]=7,o.split("").forEach((function(e){n[e]=e})),7!=p({},e)[t]||l(p({},n)).join("")!=o}))?function(e,n){for(var t=s(e),o=arguments.length,a=1,p=c.f,d=u.f;o>a;)for(var g,v=f(arguments[a++]),A=p?h(l(v),p(v)):l(v),b=A.length,m=0;b>m;)g=A[m++],r&&!i(d,v,g)||(t[g]=v[g]);return t}:p},30:(e,n,t)=>{var r,o=t(9670),i=t(6048),a=t(748),l=t(3501),c=t(490),u=t(317),s=t(6200),f=s("IE_PROTO"),p=function(){},d=function(e){return"