pareto-core 0.1.218 → 0.1.219
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.
|
@@ -13,7 +13,7 @@ export interface Guaranteed_Value_Iterator<Item extends p_di.Value, End_Info ext
|
|
|
13
13
|
has_more_items: ($: Item) => boolean;
|
|
14
14
|
handle: () => List_Item;
|
|
15
15
|
}) => p_di.List<List_Item>;
|
|
16
|
-
peek: <T>(
|
|
16
|
+
peek: <T extends p_di.Value>(item: (token: Item) => T, no_item: (end_info: End_Info) => T) => T;
|
|
17
17
|
build_segmented_list: <List_Item extends p_di.Value>($: {
|
|
18
18
|
has_more_items: ($: Item) => boolean;
|
|
19
19
|
handle: () => p_di.List<List_Item>;
|