pareto-core 0.1.202 → 0.1.203
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import * as p_di from "../../../interface/data";
|
|
2
2
|
import * as p_pi from "../../../interface/production";
|
|
3
|
-
export default function iterate_safe<
|
|
3
|
+
export default function iterate_safe<Return_Type extends p_di.Value, Item extends p_di.Value, End_Info extends p_di.Value>(list: p_di.List<Item>, end_info: End_Info, assign: ($iter: p_pi.Safe_Iterator<Item, End_Info>) => Return_Type): Return_Type;
|
|
@@ -2,7 +2,7 @@ import * as p_di from "../../../interface/data";
|
|
|
2
2
|
import * as p_pi from "../../../interface/production";
|
|
3
3
|
import { Abort } from "../../../interface/__internal/Abort";
|
|
4
4
|
import { Create_Expectation_Error } from "../../../interface/production/__internal/Iterator";
|
|
5
|
-
export default function iterate<
|
|
5
|
+
export default function iterate<Return_Type extends p_di.Value, Error extends p_di.Value, Expected extends p_di.Value, Item extends p_di.Value, End_Info extends p_di.Value>($$: {
|
|
6
6
|
list: p_di.List<Item>;
|
|
7
7
|
end_info: End_Info;
|
|
8
8
|
abort: Abort<Error>;
|