@girs/gee-0.8 0.8.0-3.1.0 → 0.8.0-3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/gee-0.8.d.cts +265 -265
- package/gee-0.8.d.ts +265 -265
- package/package.json +5 -11
- package/{tsconfig.doc.json → tsconfig.json} +2 -0
- package/typedoc.json +7 -0
package/gee-0.8.d.cts
CHANGED
|
@@ -55,28 +55,28 @@ export function task(g_type: GObject.GType, g_dup_func: GObject.BoxedCopyFunc, g
|
|
|
55
55
|
export function async_task<Z = unknown>(_callback_: Gio.AsyncReadyCallback<Z> | null): void
|
|
56
56
|
export function async_task_finish(_res_: Gio.AsyncResult): void
|
|
57
57
|
export interface HashDataFunc {
|
|
58
|
-
(t_type: GObject.GType, t_dup_func: GObject.BoxedCopyFunc, t_destroy_func: GLib.DestroyNotify, v: any
|
|
58
|
+
(t_type: GObject.GType, t_dup_func: GObject.BoxedCopyFunc, t_destroy_func: GLib.DestroyNotify, v: any): number
|
|
59
59
|
}
|
|
60
60
|
export interface EqualDataFunc {
|
|
61
|
-
(t_type: GObject.GType, t_dup_func: GObject.BoxedCopyFunc, t_destroy_func: GLib.DestroyNotify, a: any
|
|
61
|
+
(t_type: GObject.GType, t_dup_func: GObject.BoxedCopyFunc, t_destroy_func: GLib.DestroyNotify, a: any, b: any): boolean
|
|
62
62
|
}
|
|
63
63
|
export interface LazyFunc {
|
|
64
|
-
(g_type: GObject.GType, g_dup_func: GObject.BoxedCopyFunc, g_destroy_func: GLib.DestroyNotify): any
|
|
64
|
+
(g_type: GObject.GType, g_dup_func: GObject.BoxedCopyFunc, g_destroy_func: GLib.DestroyNotify): any
|
|
65
65
|
}
|
|
66
66
|
export interface FoldMapFunc {
|
|
67
|
-
(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, k_type: GObject.GType, k_dup_func: GObject.BoxedCopyFunc, k_destroy_func: GLib.DestroyNotify, v_type: GObject.GType, v_dup_func: GObject.BoxedCopyFunc, v_destroy_func: GLib.DestroyNotify, k: any
|
|
67
|
+
(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, k_type: GObject.GType, k_dup_func: GObject.BoxedCopyFunc, k_destroy_func: GLib.DestroyNotify, v_type: GObject.GType, v_dup_func: GObject.BoxedCopyFunc, v_destroy_func: GLib.DestroyNotify, k: any, v: any, a: any): any
|
|
68
68
|
}
|
|
69
69
|
export interface ForallMapFunc {
|
|
70
|
-
(k_type: GObject.GType, k_dup_func: GObject.BoxedCopyFunc, k_destroy_func: GLib.DestroyNotify, v_type: GObject.GType, v_dup_func: GObject.BoxedCopyFunc, v_destroy_func: GLib.DestroyNotify, k: any
|
|
70
|
+
(k_type: GObject.GType, k_dup_func: GObject.BoxedCopyFunc, k_destroy_func: GLib.DestroyNotify, v_type: GObject.GType, v_dup_func: GObject.BoxedCopyFunc, v_destroy_func: GLib.DestroyNotify, k: any, v: any): boolean
|
|
71
71
|
}
|
|
72
72
|
export interface Task {
|
|
73
|
-
(g_type: GObject.GType, g_dup_func: GObject.BoxedCopyFunc, g_destroy_func: GLib.DestroyNotify): any
|
|
73
|
+
(g_type: GObject.GType, g_dup_func: GObject.BoxedCopyFunc, g_destroy_func: GLib.DestroyNotify): any
|
|
74
74
|
}
|
|
75
75
|
export interface FoldFunc {
|
|
76
|
-
(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, g_type: GObject.GType, g_dup_func: GObject.BoxedCopyFunc, g_destroy_func: GLib.DestroyNotify, g: any
|
|
76
|
+
(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, g_type: GObject.GType, g_dup_func: GObject.BoxedCopyFunc, g_destroy_func: GLib.DestroyNotify, g: any, a: any): any
|
|
77
77
|
}
|
|
78
78
|
export interface ForallFunc {
|
|
79
|
-
(g_type: GObject.GType, g_dup_func: GObject.BoxedCopyFunc, g_destroy_func: GLib.DestroyNotify, g: any
|
|
79
|
+
(g_type: GObject.GType, g_dup_func: GObject.BoxedCopyFunc, g_destroy_func: GLib.DestroyNotify, g: any): boolean
|
|
80
80
|
}
|
|
81
81
|
export interface UnfoldFunc {
|
|
82
82
|
(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify): Lazy | null
|
|
@@ -85,13 +85,13 @@ export interface StreamFunc {
|
|
|
85
85
|
(g_type: GObject.GType, g_dup_func: GObject.BoxedCopyFunc, g_destroy_func: GLib.DestroyNotify, a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, state: TraversableStream, g: Lazy | null): TraversableStream
|
|
86
86
|
}
|
|
87
87
|
export interface MapFunc {
|
|
88
|
-
(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, g_type: GObject.GType, g_dup_func: GObject.BoxedCopyFunc, g_destroy_func: GLib.DestroyNotify, g: any
|
|
88
|
+
(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, g_type: GObject.GType, g_dup_func: GObject.BoxedCopyFunc, g_destroy_func: GLib.DestroyNotify, g: any): any
|
|
89
89
|
}
|
|
90
90
|
export interface Predicate {
|
|
91
|
-
(g_type: GObject.GType, g_dup_func: GObject.BoxedCopyFunc, g_destroy_func: GLib.DestroyNotify, g: any
|
|
91
|
+
(g_type: GObject.GType, g_dup_func: GObject.BoxedCopyFunc, g_destroy_func: GLib.DestroyNotify, g: any): boolean
|
|
92
92
|
}
|
|
93
93
|
export interface FlatMapFunc {
|
|
94
|
-
(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, g_type: GObject.GType, g_dup_func: GObject.BoxedCopyFunc, g_destroy_func: GLib.DestroyNotify, g: any
|
|
94
|
+
(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, g_type: GObject.GType, g_dup_func: GObject.BoxedCopyFunc, g_destroy_func: GLib.DestroyNotify, g: any): Iterator
|
|
95
95
|
}
|
|
96
96
|
export module BidirIterator {
|
|
97
97
|
|
|
@@ -232,11 +232,11 @@ export interface BidirListIterator extends BidirIterator, ListIterator {
|
|
|
232
232
|
|
|
233
233
|
// Owm methods of Gee-0.8.Gee.BidirListIterator
|
|
234
234
|
|
|
235
|
-
insert(item: any
|
|
235
|
+
insert(item: any): void
|
|
236
236
|
|
|
237
237
|
// Own virtual methods of Gee-0.8.Gee.BidirListIterator
|
|
238
238
|
|
|
239
|
-
vfunc_insert(item: any
|
|
239
|
+
vfunc_insert(item: any): void
|
|
240
240
|
|
|
241
241
|
// Class property signals of Gee-0.8.Gee.BidirListIterator
|
|
242
242
|
|
|
@@ -498,9 +498,9 @@ export interface Collection extends Iterable {
|
|
|
498
498
|
|
|
499
499
|
// Owm methods of Gee-0.8.Gee.Collection
|
|
500
500
|
|
|
501
|
-
contains(item: any
|
|
502
|
-
add(item: any
|
|
503
|
-
remove(item: any
|
|
501
|
+
contains(item: any): boolean
|
|
502
|
+
add(item: any): boolean
|
|
503
|
+
remove(item: any): boolean
|
|
504
504
|
clear(): void
|
|
505
505
|
add_all(collection: Collection): boolean
|
|
506
506
|
contains_all(collection: Collection): boolean
|
|
@@ -520,9 +520,9 @@ export interface Collection extends Iterable {
|
|
|
520
520
|
|
|
521
521
|
// Own virtual methods of Gee-0.8.Gee.Collection
|
|
522
522
|
|
|
523
|
-
vfunc_contains(item: any
|
|
524
|
-
vfunc_add(item: any
|
|
525
|
-
vfunc_remove(item: any
|
|
523
|
+
vfunc_contains(item: any): boolean
|
|
524
|
+
vfunc_add(item: any): boolean
|
|
525
|
+
vfunc_remove(item: any): boolean
|
|
526
526
|
vfunc_clear(): void
|
|
527
527
|
vfunc_add_all(collection: Collection): boolean
|
|
528
528
|
vfunc_contains_all(collection: Collection): boolean
|
|
@@ -584,11 +584,11 @@ export interface Comparable extends GObject.Object {
|
|
|
584
584
|
|
|
585
585
|
// Owm methods of Gee-0.8.Gee.Comparable
|
|
586
586
|
|
|
587
|
-
compare_to(object: any
|
|
587
|
+
compare_to(object: any): number
|
|
588
588
|
|
|
589
589
|
// Own virtual methods of Gee-0.8.Gee.Comparable
|
|
590
590
|
|
|
591
|
-
vfunc_compare_to(object: any
|
|
591
|
+
vfunc_compare_to(object: any): number
|
|
592
592
|
|
|
593
593
|
// Class property signals of Gee-0.8.Gee.Comparable
|
|
594
594
|
|
|
@@ -624,22 +624,22 @@ export interface Deque extends Queue {
|
|
|
624
624
|
|
|
625
625
|
// Owm methods of Gee-0.8.Gee.Deque
|
|
626
626
|
|
|
627
|
-
offer_head(element: any
|
|
627
|
+
offer_head(element: any): boolean
|
|
628
628
|
peek_head(): any | null
|
|
629
629
|
poll_head(): any | null
|
|
630
630
|
drain_head(recipient: Collection, amount: number): number
|
|
631
|
-
offer_tail(element: any
|
|
631
|
+
offer_tail(element: any): boolean
|
|
632
632
|
peek_tail(): any | null
|
|
633
633
|
poll_tail(): any | null
|
|
634
634
|
drain_tail(recipient: Collection, amount: number): number
|
|
635
635
|
|
|
636
636
|
// Own virtual methods of Gee-0.8.Gee.Deque
|
|
637
637
|
|
|
638
|
-
vfunc_offer_head(element: any
|
|
638
|
+
vfunc_offer_head(element: any): boolean
|
|
639
639
|
vfunc_peek_head(): any | null
|
|
640
640
|
vfunc_poll_head(): any | null
|
|
641
641
|
vfunc_drain_head(recipient: Collection, amount: number): number
|
|
642
|
-
vfunc_offer_tail(element: any
|
|
642
|
+
vfunc_offer_tail(element: any): boolean
|
|
643
643
|
vfunc_peek_tail(): any | null
|
|
644
644
|
vfunc_poll_tail(): any | null
|
|
645
645
|
vfunc_drain_tail(recipient: Collection, amount: number): number
|
|
@@ -701,7 +701,7 @@ export interface Future extends GObject.Object {
|
|
|
701
701
|
|
|
702
702
|
// Owm methods of Gee-0.8.Gee.Future
|
|
703
703
|
|
|
704
|
-
wait(): any
|
|
704
|
+
wait(): any
|
|
705
705
|
wait_until(end_time: number): [ /* returnType */ boolean, /* value */ any ]
|
|
706
706
|
wait_async(_callback_: Gio.AsyncReadyCallback<this> | null): void
|
|
707
707
|
|
|
@@ -714,8 +714,8 @@ export interface Future extends GObject.Object {
|
|
|
714
714
|
* @param _callback_
|
|
715
715
|
* @returns A Promise of the result of {@link wait_async}
|
|
716
716
|
*/
|
|
717
|
-
wait_async(): globalThis.Promise<any
|
|
718
|
-
wait_finish(_res_: Gio.AsyncResult): any
|
|
717
|
+
wait_async(): globalThis.Promise<any>
|
|
718
|
+
wait_finish(_res_: Gio.AsyncResult): any
|
|
719
719
|
map(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, func: any): Future
|
|
720
720
|
light_map(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, func: any): Future
|
|
721
721
|
light_map_broken(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, func: any): Future
|
|
@@ -727,10 +727,10 @@ export interface Future extends GObject.Object {
|
|
|
727
727
|
|
|
728
728
|
// Own virtual methods of Gee-0.8.Gee.Future
|
|
729
729
|
|
|
730
|
-
vfunc_wait(): any
|
|
730
|
+
vfunc_wait(): any
|
|
731
731
|
vfunc_wait_until(end_time: number): [ /* returnType */ boolean, /* value */ any ]
|
|
732
732
|
vfunc_wait_async(_callback_: Gio.AsyncReadyCallback<this> | null): void
|
|
733
|
-
vfunc_wait_finish(_res_: Gio.AsyncResult): any
|
|
733
|
+
vfunc_wait_finish(_res_: Gio.AsyncResult): any
|
|
734
734
|
vfunc_map(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, func: any): Future
|
|
735
735
|
vfunc_light_map(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, func: any): Future
|
|
736
736
|
vfunc_light_map_broken(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, func: any): Future
|
|
@@ -781,12 +781,12 @@ export interface Hashable extends GObject.Object {
|
|
|
781
781
|
// Owm methods of Gee-0.8.Gee.Hashable
|
|
782
782
|
|
|
783
783
|
hash(): number
|
|
784
|
-
equal_to(object: any
|
|
784
|
+
equal_to(object: any): boolean
|
|
785
785
|
|
|
786
786
|
// Own virtual methods of Gee-0.8.Gee.Hashable
|
|
787
787
|
|
|
788
788
|
vfunc_hash(): number
|
|
789
|
-
vfunc_equal_to(object: any
|
|
789
|
+
vfunc_equal_to(object: any): boolean
|
|
790
790
|
|
|
791
791
|
// Class property signals of Gee-0.8.Gee.Hashable
|
|
792
792
|
|
|
@@ -869,7 +869,7 @@ export interface Iterator extends GObject.Object, Traversable {
|
|
|
869
869
|
|
|
870
870
|
next(): boolean
|
|
871
871
|
has_next(): boolean
|
|
872
|
-
get(): any
|
|
872
|
+
get(): any
|
|
873
873
|
remove(): void
|
|
874
874
|
get_valid(): boolean
|
|
875
875
|
get_read_only(): boolean
|
|
@@ -878,7 +878,7 @@ export interface Iterator extends GObject.Object, Traversable {
|
|
|
878
878
|
|
|
879
879
|
vfunc_next(): boolean
|
|
880
880
|
vfunc_has_next(): boolean
|
|
881
|
-
vfunc_get(): any
|
|
881
|
+
vfunc_get(): any
|
|
882
882
|
vfunc_remove(): void
|
|
883
883
|
vfunc_get_valid(): boolean
|
|
884
884
|
vfunc_get_read_only(): boolean
|
|
@@ -930,14 +930,14 @@ export interface List extends Collection {
|
|
|
930
930
|
// Owm methods of Gee-0.8.Gee.List
|
|
931
931
|
|
|
932
932
|
list_iterator(): ListIterator
|
|
933
|
-
get(index: number): any
|
|
934
|
-
set(index: number, item: any
|
|
935
|
-
index_of(item: any
|
|
936
|
-
insert(index: number, item: any
|
|
937
|
-
remove_at(index: number): any
|
|
933
|
+
get(index: number): any
|
|
934
|
+
set(index: number, item: any): void
|
|
935
|
+
index_of(item: any): number
|
|
936
|
+
insert(index: number, item: any): void
|
|
937
|
+
remove_at(index: number): any
|
|
938
938
|
slice(start: number, stop: number): List | null
|
|
939
|
-
first(): any
|
|
940
|
-
last(): any
|
|
939
|
+
first(): any
|
|
940
|
+
last(): any
|
|
941
941
|
insert_all(index: number, collection: Collection): void
|
|
942
942
|
sort(compare_func: GLib.CompareDataFunc | null): void
|
|
943
943
|
get_read_only_view(): List
|
|
@@ -949,14 +949,14 @@ export interface List extends Collection {
|
|
|
949
949
|
// Own virtual methods of Gee-0.8.Gee.List
|
|
950
950
|
|
|
951
951
|
vfunc_list_iterator(): ListIterator
|
|
952
|
-
vfunc_get(index: number): any
|
|
953
|
-
vfunc_set(index: number, item: any
|
|
954
|
-
vfunc_index_of(item: any
|
|
955
|
-
vfunc_insert(index: number, item: any
|
|
956
|
-
vfunc_remove_at(index: number): any
|
|
952
|
+
vfunc_get(index: number): any
|
|
953
|
+
vfunc_set(index: number, item: any): void
|
|
954
|
+
vfunc_index_of(item: any): number
|
|
955
|
+
vfunc_insert(index: number, item: any): void
|
|
956
|
+
vfunc_remove_at(index: number): any
|
|
957
957
|
vfunc_slice(start: number, stop: number): List | null
|
|
958
|
-
vfunc_first(): any
|
|
959
|
-
vfunc_last(): any
|
|
958
|
+
vfunc_first(): any
|
|
959
|
+
vfunc_last(): any
|
|
960
960
|
vfunc_insert_all(index: number, collection: Collection): void
|
|
961
961
|
vfunc_sort(compare_func: GLib.CompareDataFunc | null): void
|
|
962
962
|
vfunc_get_read_only_view(): List
|
|
@@ -1013,14 +1013,14 @@ export interface ListIterator extends Iterator {
|
|
|
1013
1013
|
|
|
1014
1014
|
// Owm methods of Gee-0.8.Gee.ListIterator
|
|
1015
1015
|
|
|
1016
|
-
set(item: any
|
|
1017
|
-
add(item: any
|
|
1016
|
+
set(item: any): void
|
|
1017
|
+
add(item: any): void
|
|
1018
1018
|
index(): number
|
|
1019
1019
|
|
|
1020
1020
|
// Own virtual methods of Gee-0.8.Gee.ListIterator
|
|
1021
1021
|
|
|
1022
|
-
vfunc_set(item: any
|
|
1023
|
-
vfunc_add(item: any
|
|
1022
|
+
vfunc_set(item: any): void
|
|
1023
|
+
vfunc_add(item: any): void
|
|
1024
1024
|
vfunc_index(): number
|
|
1025
1025
|
|
|
1026
1026
|
// Class property signals of Gee-0.8.Gee.ListIterator
|
|
@@ -1072,13 +1072,13 @@ export interface Map extends GObject.Object, Iterable {
|
|
|
1072
1072
|
|
|
1073
1073
|
// Owm methods of Gee-0.8.Gee.Map
|
|
1074
1074
|
|
|
1075
|
-
has_key(key: any
|
|
1076
|
-
contains(key: any
|
|
1077
|
-
has(key: any
|
|
1078
|
-
get(key: any
|
|
1079
|
-
set(key: any
|
|
1080
|
-
unset(key: any
|
|
1081
|
-
remove(key: any
|
|
1075
|
+
has_key(key: any): boolean
|
|
1076
|
+
contains(key: any): boolean
|
|
1077
|
+
has(key: any, value: any): boolean
|
|
1078
|
+
get(key: any): any | null
|
|
1079
|
+
set(key: any, value: any): void
|
|
1080
|
+
unset(key: any): [ /* returnType */ boolean, /* value */ any ]
|
|
1081
|
+
remove(key: any): [ /* returnType */ boolean, /* value */ any ]
|
|
1082
1082
|
clear(): void
|
|
1083
1083
|
map_iterator(): MapIterator
|
|
1084
1084
|
set_all(map: Map): void
|
|
@@ -1098,11 +1098,11 @@ export interface Map extends GObject.Object, Iterable {
|
|
|
1098
1098
|
|
|
1099
1099
|
// Own virtual methods of Gee-0.8.Gee.Map
|
|
1100
1100
|
|
|
1101
|
-
vfunc_has_key(key: any
|
|
1102
|
-
vfunc_has(key: any
|
|
1103
|
-
vfunc_get(key: any
|
|
1104
|
-
vfunc_set(key: any
|
|
1105
|
-
vfunc_unset(key: any
|
|
1101
|
+
vfunc_has_key(key: any): boolean
|
|
1102
|
+
vfunc_has(key: any, value: any): boolean
|
|
1103
|
+
vfunc_get(key: any): any | null
|
|
1104
|
+
vfunc_set(key: any, value: any): void
|
|
1105
|
+
vfunc_unset(key: any): [ /* returnType */ boolean, /* value */ any ]
|
|
1106
1106
|
vfunc_clear(): void
|
|
1107
1107
|
vfunc_map_iterator(): MapIterator
|
|
1108
1108
|
vfunc_set_all(map: Map): void
|
|
@@ -1177,11 +1177,11 @@ export interface MapIterator extends GObject.Object {
|
|
|
1177
1177
|
|
|
1178
1178
|
next(): boolean
|
|
1179
1179
|
has_next(): boolean
|
|
1180
|
-
get_key(): any
|
|
1181
|
-
get_value(): any
|
|
1182
|
-
set_value(value: any
|
|
1180
|
+
get_key(): any
|
|
1181
|
+
get_value(): any
|
|
1182
|
+
set_value(value: any): void
|
|
1183
1183
|
unset(): void
|
|
1184
|
-
fold(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: FoldMapFunc, seed: any
|
|
1184
|
+
fold(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: FoldMapFunc, seed: any): any
|
|
1185
1185
|
foreach(f: ForallMapFunc): boolean
|
|
1186
1186
|
get_valid(): boolean
|
|
1187
1187
|
get_mutable(): boolean
|
|
@@ -1191,11 +1191,11 @@ export interface MapIterator extends GObject.Object {
|
|
|
1191
1191
|
|
|
1192
1192
|
vfunc_next(): boolean
|
|
1193
1193
|
vfunc_has_next(): boolean
|
|
1194
|
-
vfunc_get_key(): any
|
|
1195
|
-
vfunc_get_value(): any
|
|
1196
|
-
vfunc_set_value(value: any
|
|
1194
|
+
vfunc_get_key(): any
|
|
1195
|
+
vfunc_get_value(): any
|
|
1196
|
+
vfunc_set_value(value: any): void
|
|
1197
1197
|
vfunc_unset(): void
|
|
1198
|
-
vfunc_fold(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: FoldMapFunc, seed: any
|
|
1198
|
+
vfunc_fold(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: FoldMapFunc, seed: any): any
|
|
1199
1199
|
vfunc_foreach(f: ForallMapFunc): boolean
|
|
1200
1200
|
vfunc_get_valid(): boolean
|
|
1201
1201
|
vfunc_get_mutable(): boolean
|
|
@@ -1252,11 +1252,11 @@ export interface MultiMap extends GObject.Object {
|
|
|
1252
1252
|
get_keys(): Set
|
|
1253
1253
|
get_all_keys(): MultiSet
|
|
1254
1254
|
get_values(): Collection
|
|
1255
|
-
contains(key: any
|
|
1256
|
-
get(key: any
|
|
1257
|
-
set(key: any
|
|
1258
|
-
remove(key: any
|
|
1259
|
-
remove_all(key: any
|
|
1255
|
+
contains(key: any): boolean
|
|
1256
|
+
get(key: any): Collection
|
|
1257
|
+
set(key: any, value: any): void
|
|
1258
|
+
remove(key: any, value: any): boolean
|
|
1259
|
+
remove_all(key: any): boolean
|
|
1260
1260
|
clear(): void
|
|
1261
1261
|
map_iterator(): MapIterator
|
|
1262
1262
|
get_size(): number
|
|
@@ -1270,11 +1270,11 @@ export interface MultiMap extends GObject.Object {
|
|
|
1270
1270
|
vfunc_get_keys(): Set
|
|
1271
1271
|
vfunc_get_all_keys(): MultiSet
|
|
1272
1272
|
vfunc_get_values(): Collection
|
|
1273
|
-
vfunc_contains(key: any
|
|
1274
|
-
vfunc_get(key: any
|
|
1275
|
-
vfunc_set(key: any
|
|
1276
|
-
vfunc_remove(key: any
|
|
1277
|
-
vfunc_remove_all(key: any
|
|
1273
|
+
vfunc_contains(key: any): boolean
|
|
1274
|
+
vfunc_get(key: any): Collection
|
|
1275
|
+
vfunc_set(key: any, value: any): void
|
|
1276
|
+
vfunc_remove(key: any, value: any): boolean
|
|
1277
|
+
vfunc_remove_all(key: any): boolean
|
|
1278
1278
|
vfunc_clear(): void
|
|
1279
1279
|
vfunc_map_iterator(): MapIterator
|
|
1280
1280
|
vfunc_get_size(): number
|
|
@@ -1321,7 +1321,7 @@ export interface MultiSet extends Collection {
|
|
|
1321
1321
|
|
|
1322
1322
|
// Owm methods of Gee-0.8.Gee.MultiSet
|
|
1323
1323
|
|
|
1324
|
-
count(item: any
|
|
1324
|
+
count(item: any): number
|
|
1325
1325
|
get_read_only_view(): MultiSet
|
|
1326
1326
|
|
|
1327
1327
|
// Overloads of get_read_only_view
|
|
@@ -1330,7 +1330,7 @@ export interface MultiSet extends Collection {
|
|
|
1330
1330
|
|
|
1331
1331
|
// Own virtual methods of Gee-0.8.Gee.MultiSet
|
|
1332
1332
|
|
|
1333
|
-
vfunc_count(item: any
|
|
1333
|
+
vfunc_count(item: any): number
|
|
1334
1334
|
vfunc_get_read_only_view(): MultiSet
|
|
1335
1335
|
|
|
1336
1336
|
// Overloads of vfunc_get_read_only_view
|
|
@@ -1391,7 +1391,7 @@ export interface Queue extends Collection {
|
|
|
1391
1391
|
|
|
1392
1392
|
// Owm methods of Gee-0.8.Gee.Queue
|
|
1393
1393
|
|
|
1394
|
-
offer(element: any
|
|
1394
|
+
offer(element: any): boolean
|
|
1395
1395
|
peek(): any | null
|
|
1396
1396
|
poll(): any | null
|
|
1397
1397
|
drain(recipient: Collection, amount: number): number
|
|
@@ -1401,7 +1401,7 @@ export interface Queue extends Collection {
|
|
|
1401
1401
|
|
|
1402
1402
|
// Own virtual methods of Gee-0.8.Gee.Queue
|
|
1403
1403
|
|
|
1404
|
-
vfunc_offer(element: any
|
|
1404
|
+
vfunc_offer(element: any): boolean
|
|
1405
1405
|
vfunc_peek(): any | null
|
|
1406
1406
|
vfunc_poll(): any | null
|
|
1407
1407
|
vfunc_drain(recipient: Collection, amount: number): number
|
|
@@ -1533,9 +1533,9 @@ export interface SortedMap extends Map {
|
|
|
1533
1533
|
|
|
1534
1534
|
// Owm methods of Gee-0.8.Gee.SortedMap
|
|
1535
1535
|
|
|
1536
|
-
head_map(before: any
|
|
1537
|
-
tail_map(after: any
|
|
1538
|
-
sub_map(before: any
|
|
1536
|
+
head_map(before: any): SortedMap
|
|
1537
|
+
tail_map(after: any): SortedMap
|
|
1538
|
+
sub_map(before: any, after: any): SortedMap
|
|
1539
1539
|
get_ascending_keys(): SortedSet
|
|
1540
1540
|
get_ascending_entries(): SortedSet
|
|
1541
1541
|
get_read_only_view(): SortedMap
|
|
@@ -1546,9 +1546,9 @@ export interface SortedMap extends Map {
|
|
|
1546
1546
|
|
|
1547
1547
|
// Own virtual methods of Gee-0.8.Gee.SortedMap
|
|
1548
1548
|
|
|
1549
|
-
vfunc_head_map(before: any
|
|
1550
|
-
vfunc_tail_map(after: any
|
|
1551
|
-
vfunc_sub_map(before: any
|
|
1549
|
+
vfunc_head_map(before: any): SortedMap
|
|
1550
|
+
vfunc_tail_map(after: any): SortedMap
|
|
1551
|
+
vfunc_sub_map(before: any, after: any): SortedMap
|
|
1552
1552
|
vfunc_get_ascending_keys(): SortedSet
|
|
1553
1553
|
vfunc_get_ascending_entries(): SortedSet
|
|
1554
1554
|
vfunc_get_read_only_view(): SortedMap
|
|
@@ -1620,16 +1620,16 @@ export interface SortedSet extends Set {
|
|
|
1620
1620
|
|
|
1621
1621
|
// Owm methods of Gee-0.8.Gee.SortedSet
|
|
1622
1622
|
|
|
1623
|
-
first(): any
|
|
1624
|
-
last(): any
|
|
1625
|
-
iterator_at(element: any
|
|
1626
|
-
lower(element: any
|
|
1627
|
-
higher(element: any
|
|
1628
|
-
floor(element: any
|
|
1629
|
-
ceil(element: any
|
|
1630
|
-
head_set(before: any
|
|
1631
|
-
tail_set(after: any
|
|
1632
|
-
sub_set(from: any
|
|
1623
|
+
first(): any
|
|
1624
|
+
last(): any
|
|
1625
|
+
iterator_at(element: any): Iterator | null
|
|
1626
|
+
lower(element: any): any | null
|
|
1627
|
+
higher(element: any): any | null
|
|
1628
|
+
floor(element: any): any | null
|
|
1629
|
+
ceil(element: any): any | null
|
|
1630
|
+
head_set(before: any): SortedSet
|
|
1631
|
+
tail_set(after: any): SortedSet
|
|
1632
|
+
sub_set(from: any, to: any): SortedSet
|
|
1633
1633
|
get_read_only_view(): SortedSet
|
|
1634
1634
|
|
|
1635
1635
|
// Overloads of get_read_only_view
|
|
@@ -1639,16 +1639,16 @@ export interface SortedSet extends Set {
|
|
|
1639
1639
|
|
|
1640
1640
|
// Own virtual methods of Gee-0.8.Gee.SortedSet
|
|
1641
1641
|
|
|
1642
|
-
vfunc_first(): any
|
|
1643
|
-
vfunc_last(): any
|
|
1644
|
-
vfunc_iterator_at(element: any
|
|
1645
|
-
vfunc_lower(element: any
|
|
1646
|
-
vfunc_higher(element: any
|
|
1647
|
-
vfunc_floor(element: any
|
|
1648
|
-
vfunc_ceil(element: any
|
|
1649
|
-
vfunc_head_set(before: any
|
|
1650
|
-
vfunc_tail_set(after: any
|
|
1651
|
-
vfunc_sub_set(from: any
|
|
1642
|
+
vfunc_first(): any
|
|
1643
|
+
vfunc_last(): any
|
|
1644
|
+
vfunc_iterator_at(element: any): Iterator | null
|
|
1645
|
+
vfunc_lower(element: any): any | null
|
|
1646
|
+
vfunc_higher(element: any): any | null
|
|
1647
|
+
vfunc_floor(element: any): any | null
|
|
1648
|
+
vfunc_ceil(element: any): any | null
|
|
1649
|
+
vfunc_head_set(before: any): SortedSet
|
|
1650
|
+
vfunc_tail_set(after: any): SortedSet
|
|
1651
|
+
vfunc_sub_set(from: any, to: any): SortedSet
|
|
1652
1652
|
vfunc_get_read_only_view(): SortedSet
|
|
1653
1653
|
|
|
1654
1654
|
// Overloads of vfunc_get_read_only_view
|
|
@@ -1707,9 +1707,9 @@ export interface Traversable extends GObject.Object {
|
|
|
1707
1707
|
|
|
1708
1708
|
foreach(f: ForallFunc): boolean
|
|
1709
1709
|
stream(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: StreamFunc): Iterator
|
|
1710
|
-
fold(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: FoldFunc, seed: any
|
|
1710
|
+
fold(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: FoldFunc, seed: any): any
|
|
1711
1711
|
map(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: MapFunc): Iterator
|
|
1712
|
-
scan(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: FoldFunc, seed: any
|
|
1712
|
+
scan(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: FoldFunc, seed: any): Iterator
|
|
1713
1713
|
filter(pred: Predicate): Iterator
|
|
1714
1714
|
chop(offset: number, length: number): Iterator
|
|
1715
1715
|
flat_map(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: FlatMapFunc): Iterator
|
|
@@ -1717,8 +1717,8 @@ export interface Traversable extends GObject.Object {
|
|
|
1717
1717
|
first_match(pred: Predicate): any | null
|
|
1718
1718
|
any_match(pred: Predicate): boolean
|
|
1719
1719
|
all_match(pred: Predicate): boolean
|
|
1720
|
-
max(compare: GLib.CompareDataFunc): any
|
|
1721
|
-
min(compare: GLib.CompareDataFunc): any
|
|
1720
|
+
max(compare: GLib.CompareDataFunc): any
|
|
1721
|
+
min(compare: GLib.CompareDataFunc): any
|
|
1722
1722
|
order_by(compare: GLib.CompareDataFunc | null): Iterator
|
|
1723
1723
|
get_element_type(): GObject.GType
|
|
1724
1724
|
|
|
@@ -1726,9 +1726,9 @@ export interface Traversable extends GObject.Object {
|
|
|
1726
1726
|
|
|
1727
1727
|
vfunc_foreach(f: ForallFunc): boolean
|
|
1728
1728
|
vfunc_stream(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: StreamFunc): Iterator
|
|
1729
|
-
vfunc_fold(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: FoldFunc, seed: any
|
|
1729
|
+
vfunc_fold(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: FoldFunc, seed: any): any
|
|
1730
1730
|
vfunc_map(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: MapFunc): Iterator
|
|
1731
|
-
vfunc_scan(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: FoldFunc, seed: any
|
|
1731
|
+
vfunc_scan(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: FoldFunc, seed: any): Iterator
|
|
1732
1732
|
vfunc_filter(pred: Predicate): Iterator
|
|
1733
1733
|
vfunc_chop(offset: number, length: number): Iterator
|
|
1734
1734
|
vfunc_flat_map(a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: FlatMapFunc): Iterator
|
|
@@ -1736,8 +1736,8 @@ export interface Traversable extends GObject.Object {
|
|
|
1736
1736
|
vfunc_first_match(pred: Predicate): any | null
|
|
1737
1737
|
vfunc_any_match(pred: Predicate): boolean
|
|
1738
1738
|
vfunc_all_match(pred: Predicate): boolean
|
|
1739
|
-
vfunc_max(compare: GLib.CompareDataFunc): any
|
|
1740
|
-
vfunc_min(compare: GLib.CompareDataFunc): any
|
|
1739
|
+
vfunc_max(compare: GLib.CompareDataFunc): any
|
|
1740
|
+
vfunc_min(compare: GLib.CompareDataFunc): any
|
|
1741
1741
|
vfunc_order_by(compare: GLib.CompareDataFunc | null): Iterator
|
|
1742
1742
|
vfunc_get_element_type(): GObject.GType
|
|
1743
1743
|
|
|
@@ -2178,9 +2178,9 @@ export interface AbstractCollection extends Traversable, Iterable, Collection {
|
|
|
2178
2178
|
|
|
2179
2179
|
// Owm methods of Gee-0.8.Gee.AbstractCollection
|
|
2180
2180
|
|
|
2181
|
-
contains(item: any
|
|
2182
|
-
add(item: any
|
|
2183
|
-
remove(item: any
|
|
2181
|
+
contains(item: any): boolean
|
|
2182
|
+
add(item: any): boolean
|
|
2183
|
+
remove(item: any): boolean
|
|
2184
2184
|
clear(): void
|
|
2185
2185
|
iterator(): Iterator
|
|
2186
2186
|
foreach(f: ForallFunc): boolean
|
|
@@ -2200,9 +2200,9 @@ export interface AbstractCollection extends Traversable, Iterable, Collection {
|
|
|
2200
2200
|
|
|
2201
2201
|
// Own virtual methods of Gee-0.8.Gee.AbstractCollection
|
|
2202
2202
|
|
|
2203
|
-
vfunc_contains(item: any
|
|
2204
|
-
vfunc_add(item: any
|
|
2205
|
-
vfunc_remove(item: any
|
|
2203
|
+
vfunc_contains(item: any): boolean
|
|
2204
|
+
vfunc_add(item: any): boolean
|
|
2205
|
+
vfunc_remove(item: any): boolean
|
|
2206
2206
|
vfunc_clear(): void
|
|
2207
2207
|
vfunc_iterator(): Iterator
|
|
2208
2208
|
vfunc_foreach(f: ForallFunc): boolean
|
|
@@ -2286,11 +2286,11 @@ export interface AbstractList extends List {
|
|
|
2286
2286
|
// Owm methods of Gee-0.8.Gee.AbstractList
|
|
2287
2287
|
|
|
2288
2288
|
list_iterator(): ListIterator
|
|
2289
|
-
get(index: number): any
|
|
2290
|
-
set(index: number, item: any
|
|
2291
|
-
index_of(item: any
|
|
2292
|
-
insert(index: number, item: any
|
|
2293
|
-
remove_at(index: number): any
|
|
2289
|
+
get(index: number): any
|
|
2290
|
+
set(index: number, item: any): void
|
|
2291
|
+
index_of(item: any): number
|
|
2292
|
+
insert(index: number, item: any): void
|
|
2293
|
+
remove_at(index: number): any
|
|
2294
2294
|
slice(start: number, stop: number): List | null
|
|
2295
2295
|
reserved0(): void
|
|
2296
2296
|
reserved1(): void
|
|
@@ -2312,11 +2312,11 @@ export interface AbstractList extends List {
|
|
|
2312
2312
|
// Own virtual methods of Gee-0.8.Gee.AbstractList
|
|
2313
2313
|
|
|
2314
2314
|
vfunc_list_iterator(): ListIterator
|
|
2315
|
-
vfunc_get(index: number): any
|
|
2316
|
-
vfunc_set(index: number, item: any
|
|
2317
|
-
vfunc_index_of(item: any
|
|
2318
|
-
vfunc_insert(index: number, item: any
|
|
2319
|
-
vfunc_remove_at(index: number): any
|
|
2315
|
+
vfunc_get(index: number): any
|
|
2316
|
+
vfunc_set(index: number, item: any): void
|
|
2317
|
+
vfunc_index_of(item: any): number
|
|
2318
|
+
vfunc_insert(index: number, item: any): void
|
|
2319
|
+
vfunc_remove_at(index: number): any
|
|
2320
2320
|
vfunc_slice(start: number, stop: number): List | null
|
|
2321
2321
|
vfunc_reserved0(): void
|
|
2322
2322
|
vfunc_reserved1(): void
|
|
@@ -2420,11 +2420,11 @@ export interface AbstractMap extends Traversable, Iterable, Map {
|
|
|
2420
2420
|
|
|
2421
2421
|
// Owm methods of Gee-0.8.Gee.AbstractMap
|
|
2422
2422
|
|
|
2423
|
-
has_key(key: any
|
|
2424
|
-
has(key: any
|
|
2425
|
-
get(key: any
|
|
2426
|
-
set(key: any
|
|
2427
|
-
unset(key: any
|
|
2423
|
+
has_key(key: any): boolean
|
|
2424
|
+
has(key: any, value: any): boolean
|
|
2425
|
+
get(key: any): any | null
|
|
2426
|
+
set(key: any, value: any): void
|
|
2427
|
+
unset(key: any): [ /* returnType */ boolean, /* value */ any ]
|
|
2428
2428
|
map_iterator(): MapIterator
|
|
2429
2429
|
clear(): void
|
|
2430
2430
|
foreach(f: ForallFunc): boolean
|
|
@@ -2448,11 +2448,11 @@ export interface AbstractMap extends Traversable, Iterable, Map {
|
|
|
2448
2448
|
|
|
2449
2449
|
// Own virtual methods of Gee-0.8.Gee.AbstractMap
|
|
2450
2450
|
|
|
2451
|
-
vfunc_has_key(key: any
|
|
2452
|
-
vfunc_has(key: any
|
|
2453
|
-
vfunc_get(key: any
|
|
2454
|
-
vfunc_set(key: any
|
|
2455
|
-
vfunc_unset(key: any
|
|
2451
|
+
vfunc_has_key(key: any): boolean
|
|
2452
|
+
vfunc_has(key: any, value: any): boolean
|
|
2453
|
+
vfunc_get(key: any): any | null
|
|
2454
|
+
vfunc_set(key: any, value: any): void
|
|
2455
|
+
vfunc_unset(key: any): [ /* returnType */ boolean, /* value */ any ]
|
|
2456
2456
|
vfunc_map_iterator(): MapIterator
|
|
2457
2457
|
vfunc_clear(): void
|
|
2458
2458
|
vfunc_foreach(f: ForallFunc): boolean
|
|
@@ -3009,9 +3009,9 @@ export interface AbstractSortedMap extends SortedMap {
|
|
|
3009
3009
|
|
|
3010
3010
|
// Owm methods of Gee-0.8.Gee.AbstractSortedMap
|
|
3011
3011
|
|
|
3012
|
-
head_map(before: any
|
|
3013
|
-
tail_map(after: any
|
|
3014
|
-
sub_map(before: any
|
|
3012
|
+
head_map(before: any): SortedMap
|
|
3013
|
+
tail_map(after: any): SortedMap
|
|
3014
|
+
sub_map(before: any, after: any): SortedMap
|
|
3015
3015
|
reserved0(): void
|
|
3016
3016
|
reserved1(): void
|
|
3017
3017
|
reserved2(): void
|
|
@@ -3044,9 +3044,9 @@ export interface AbstractSortedMap extends SortedMap {
|
|
|
3044
3044
|
|
|
3045
3045
|
// Own virtual methods of Gee-0.8.Gee.AbstractSortedMap
|
|
3046
3046
|
|
|
3047
|
-
vfunc_head_map(before: any
|
|
3048
|
-
vfunc_tail_map(after: any
|
|
3049
|
-
vfunc_sub_map(before: any
|
|
3047
|
+
vfunc_head_map(before: any): SortedMap
|
|
3048
|
+
vfunc_tail_map(after: any): SortedMap
|
|
3049
|
+
vfunc_sub_map(before: any, after: any): SortedMap
|
|
3050
3050
|
vfunc_reserved0(): void
|
|
3051
3051
|
vfunc_reserved1(): void
|
|
3052
3052
|
vfunc_reserved2(): void
|
|
@@ -3149,16 +3149,16 @@ export interface AbstractSortedSet extends SortedSet {
|
|
|
3149
3149
|
|
|
3150
3150
|
// Owm methods of Gee-0.8.Gee.AbstractSortedSet
|
|
3151
3151
|
|
|
3152
|
-
first(): any
|
|
3153
|
-
last(): any
|
|
3154
|
-
iterator_at(element: any
|
|
3155
|
-
lower(element: any
|
|
3156
|
-
higher(element: any
|
|
3157
|
-
floor(element: any
|
|
3158
|
-
ceil(element: any
|
|
3159
|
-
head_set(before: any
|
|
3160
|
-
tail_set(after: any
|
|
3161
|
-
sub_set(from: any
|
|
3152
|
+
first(): any
|
|
3153
|
+
last(): any
|
|
3154
|
+
iterator_at(element: any): Iterator | null
|
|
3155
|
+
lower(element: any): any | null
|
|
3156
|
+
higher(element: any): any | null
|
|
3157
|
+
floor(element: any): any | null
|
|
3158
|
+
ceil(element: any): any | null
|
|
3159
|
+
head_set(before: any): SortedSet
|
|
3160
|
+
tail_set(after: any): SortedSet
|
|
3161
|
+
sub_set(from: any, to: any): SortedSet
|
|
3162
3162
|
reserved0(): void
|
|
3163
3163
|
reserved1(): void
|
|
3164
3164
|
reserved2(): void
|
|
@@ -3179,16 +3179,16 @@ export interface AbstractSortedSet extends SortedSet {
|
|
|
3179
3179
|
|
|
3180
3180
|
// Own virtual methods of Gee-0.8.Gee.AbstractSortedSet
|
|
3181
3181
|
|
|
3182
|
-
vfunc_first(): any
|
|
3183
|
-
vfunc_last(): any
|
|
3184
|
-
vfunc_iterator_at(element: any
|
|
3185
|
-
vfunc_lower(element: any
|
|
3186
|
-
vfunc_higher(element: any
|
|
3187
|
-
vfunc_floor(element: any
|
|
3188
|
-
vfunc_ceil(element: any
|
|
3189
|
-
vfunc_head_set(before: any
|
|
3190
|
-
vfunc_tail_set(after: any
|
|
3191
|
-
vfunc_sub_set(from: any
|
|
3182
|
+
vfunc_first(): any
|
|
3183
|
+
vfunc_last(): any
|
|
3184
|
+
vfunc_iterator_at(element: any): Iterator | null
|
|
3185
|
+
vfunc_lower(element: any): any | null
|
|
3186
|
+
vfunc_higher(element: any): any | null
|
|
3187
|
+
vfunc_floor(element: any): any | null
|
|
3188
|
+
vfunc_ceil(element: any): any | null
|
|
3189
|
+
vfunc_head_set(before: any): SortedSet
|
|
3190
|
+
vfunc_tail_set(after: any): SortedSet
|
|
3191
|
+
vfunc_sub_set(from: any, to: any): SortedSet
|
|
3192
3192
|
vfunc_reserved0(): void
|
|
3193
3193
|
vfunc_reserved1(): void
|
|
3194
3194
|
vfunc_reserved2(): void
|
|
@@ -4143,8 +4143,8 @@ export interface Lazy {
|
|
|
4143
4143
|
// Owm methods of Gee-0.8.Gee.Lazy
|
|
4144
4144
|
|
|
4145
4145
|
eval(): void
|
|
4146
|
-
get(): any
|
|
4147
|
-
get_value(): any
|
|
4146
|
+
get(): any
|
|
4147
|
+
get_value(): any
|
|
4148
4148
|
get_future(): Future | null
|
|
4149
4149
|
}
|
|
4150
4150
|
|
|
@@ -4158,7 +4158,7 @@ export class Lazy {
|
|
|
4158
4158
|
|
|
4159
4159
|
constructor(g_type: GObject.GType, g_dup_func: GObject.BoxedCopyFunc, g_destroy_func: GLib.DestroyNotify, func: LazyFunc)
|
|
4160
4160
|
static new(g_type: GObject.GType, g_dup_func: GObject.BoxedCopyFunc, g_destroy_func: GLib.DestroyNotify, func: LazyFunc): Lazy
|
|
4161
|
-
static from_value(g_type: GObject.GType, g_dup_func: GObject.BoxedCopyFunc, g_destroy_func: GLib.DestroyNotify, item: any
|
|
4161
|
+
static from_value(g_type: GObject.GType, g_dup_func: GObject.BoxedCopyFunc, g_destroy_func: GLib.DestroyNotify, item: any): Lazy
|
|
4162
4162
|
}
|
|
4163
4163
|
|
|
4164
4164
|
export module LinkedList {
|
|
@@ -4190,8 +4190,8 @@ export interface LinkedList extends Queue, Deque {
|
|
|
4190
4190
|
|
|
4191
4191
|
// Owm methods of Gee-0.8.Gee.LinkedList
|
|
4192
4192
|
|
|
4193
|
-
first(): any
|
|
4194
|
-
last(): any
|
|
4193
|
+
first(): any
|
|
4194
|
+
last(): any
|
|
4195
4195
|
get_equal_func(): [ /* returnType */ EqualDataFunc, /* result_target */ any ]
|
|
4196
4196
|
|
|
4197
4197
|
// Conflicting methods
|
|
@@ -4333,7 +4333,7 @@ export interface PriorityQueue {
|
|
|
4333
4333
|
|
|
4334
4334
|
// Owm methods of Gee-0.8.Gee.PriorityQueue
|
|
4335
4335
|
|
|
4336
|
-
offer(element: any
|
|
4336
|
+
offer(element: any): boolean
|
|
4337
4337
|
drain(recipient: Collection, amount: number): number
|
|
4338
4338
|
get_compare_func(): [ /* returnType */ GLib.CompareDataFunc, /* result_target */ any ]
|
|
4339
4339
|
|
|
@@ -4395,7 +4395,7 @@ export interface Promise {
|
|
|
4395
4395
|
|
|
4396
4396
|
// Owm methods of Gee-0.8.Gee.Promise
|
|
4397
4397
|
|
|
4398
|
-
set_value(value: any
|
|
4398
|
+
set_value(value: any): void
|
|
4399
4399
|
set_exception(exception: GLib.Error): void
|
|
4400
4400
|
get_future(): Future
|
|
4401
4401
|
}
|
|
@@ -5108,16 +5108,16 @@ export interface MapEntry {
|
|
|
5108
5108
|
|
|
5109
5109
|
// Owm methods of Gee-0.8.Gee.MapEntry
|
|
5110
5110
|
|
|
5111
|
-
get_key(): any
|
|
5112
|
-
get_value(): any
|
|
5113
|
-
set_value(value: any
|
|
5111
|
+
get_key(): any
|
|
5112
|
+
get_value(): any
|
|
5113
|
+
set_value(value: any): void
|
|
5114
5114
|
get_read_only(): boolean
|
|
5115
5115
|
|
|
5116
5116
|
// Own virtual methods of Gee-0.8.Gee.MapEntry
|
|
5117
5117
|
|
|
5118
|
-
vfunc_get_key(): any
|
|
5119
|
-
vfunc_get_value(): any
|
|
5120
|
-
vfunc_set_value(value: any
|
|
5118
|
+
vfunc_get_key(): any
|
|
5119
|
+
vfunc_get_value(): any
|
|
5120
|
+
vfunc_set_value(value: any): void
|
|
5121
5121
|
vfunc_get_read_only(): boolean
|
|
5122
5122
|
|
|
5123
5123
|
// Class property signals of Gee-0.8.Gee.MapEntry
|
|
@@ -5274,9 +5274,9 @@ export interface AbstractCollectionClass {
|
|
|
5274
5274
|
|
|
5275
5275
|
// Own fields of Gee-0.8.Gee.AbstractCollectionClass
|
|
5276
5276
|
|
|
5277
|
-
contains: (self: AbstractCollection, item: any
|
|
5278
|
-
add: (self: AbstractCollection, item: any
|
|
5279
|
-
remove: (self: AbstractCollection, item: any
|
|
5277
|
+
contains: (self: AbstractCollection, item: any) => boolean
|
|
5278
|
+
add: (self: AbstractCollection, item: any) => boolean
|
|
5279
|
+
remove: (self: AbstractCollection, item: any) => boolean
|
|
5280
5280
|
clear: (self: AbstractCollection) => void
|
|
5281
5281
|
iterator: (self: AbstractCollection) => Iterator
|
|
5282
5282
|
foreach: (self: AbstractCollection, f: ForallFunc) => boolean
|
|
@@ -5314,11 +5314,11 @@ export interface AbstractListClass {
|
|
|
5314
5314
|
// Own fields of Gee-0.8.Gee.AbstractListClass
|
|
5315
5315
|
|
|
5316
5316
|
list_iterator: (self: AbstractList) => ListIterator
|
|
5317
|
-
get: (self: AbstractList, index: number) => any
|
|
5318
|
-
set: (self: AbstractList, index: number, item: any
|
|
5319
|
-
index_of: (self: AbstractList, item: any
|
|
5320
|
-
insert: (self: AbstractList, index: number, item: any
|
|
5321
|
-
remove_at: (self: AbstractList, index: number) => any
|
|
5317
|
+
get: (self: AbstractList, index: number) => any
|
|
5318
|
+
set: (self: AbstractList, index: number, item: any) => void
|
|
5319
|
+
index_of: (self: AbstractList, item: any) => number
|
|
5320
|
+
insert: (self: AbstractList, index: number, item: any) => void
|
|
5321
|
+
remove_at: (self: AbstractList, index: number) => any
|
|
5322
5322
|
slice: (self: AbstractList, start: number, stop: number) => List | null
|
|
5323
5323
|
reserved0: (self: AbstractList) => void
|
|
5324
5324
|
reserved1: (self: AbstractList) => void
|
|
@@ -5353,11 +5353,11 @@ export interface AbstractMapClass {
|
|
|
5353
5353
|
|
|
5354
5354
|
// Own fields of Gee-0.8.Gee.AbstractMapClass
|
|
5355
5355
|
|
|
5356
|
-
has_key: (self: AbstractMap, key: any
|
|
5357
|
-
has: (self: AbstractMap, key: any
|
|
5358
|
-
get: (self: AbstractMap, key: any
|
|
5359
|
-
set: (self: AbstractMap, key: any
|
|
5360
|
-
unset: (self: AbstractMap, key: any
|
|
5356
|
+
has_key: (self: AbstractMap, key: any) => boolean
|
|
5357
|
+
has: (self: AbstractMap, key: any, value: any) => boolean
|
|
5358
|
+
get: (self: AbstractMap, key: any) => any | null
|
|
5359
|
+
set: (self: AbstractMap, key: any, value: any) => void
|
|
5360
|
+
unset: (self: AbstractMap, key: any) => [ /* returnType */ boolean, /* value */ any ]
|
|
5361
5361
|
map_iterator: (self: AbstractMap) => MapIterator
|
|
5362
5362
|
clear: (self: AbstractMap) => void
|
|
5363
5363
|
foreach: (self: AbstractMap, f: ForallFunc) => boolean
|
|
@@ -5530,9 +5530,9 @@ export interface AbstractSortedMapClass {
|
|
|
5530
5530
|
|
|
5531
5531
|
// Own fields of Gee-0.8.Gee.AbstractSortedMapClass
|
|
5532
5532
|
|
|
5533
|
-
head_map: (self: AbstractSortedMap, before: any
|
|
5534
|
-
tail_map: (self: AbstractSortedMap, after: any
|
|
5535
|
-
sub_map: (self: AbstractSortedMap, before: any
|
|
5533
|
+
head_map: (self: AbstractSortedMap, before: any) => SortedMap
|
|
5534
|
+
tail_map: (self: AbstractSortedMap, after: any) => SortedMap
|
|
5535
|
+
sub_map: (self: AbstractSortedMap, before: any, after: any) => SortedMap
|
|
5536
5536
|
reserved0: (self: AbstractSortedMap) => void
|
|
5537
5537
|
reserved1: (self: AbstractSortedMap) => void
|
|
5538
5538
|
reserved2: (self: AbstractSortedMap) => void
|
|
@@ -5566,16 +5566,16 @@ export interface AbstractSortedSetClass {
|
|
|
5566
5566
|
|
|
5567
5567
|
// Own fields of Gee-0.8.Gee.AbstractSortedSetClass
|
|
5568
5568
|
|
|
5569
|
-
first: (self: AbstractSortedSet) => any
|
|
5570
|
-
last: (self: AbstractSortedSet) => any
|
|
5571
|
-
iterator_at: (self: AbstractSortedSet, element: any
|
|
5572
|
-
lower: (self: AbstractSortedSet, element: any
|
|
5573
|
-
higher: (self: AbstractSortedSet, element: any
|
|
5574
|
-
floor: (self: AbstractSortedSet, element: any
|
|
5575
|
-
ceil: (self: AbstractSortedSet, element: any
|
|
5576
|
-
head_set: (self: AbstractSortedSet, before: any
|
|
5577
|
-
tail_set: (self: AbstractSortedSet, after: any
|
|
5578
|
-
sub_set: (self: AbstractSortedSet, from: any
|
|
5569
|
+
first: (self: AbstractSortedSet) => any
|
|
5570
|
+
last: (self: AbstractSortedSet) => any
|
|
5571
|
+
iterator_at: (self: AbstractSortedSet, element: any) => Iterator | null
|
|
5572
|
+
lower: (self: AbstractSortedSet, element: any) => any | null
|
|
5573
|
+
higher: (self: AbstractSortedSet, element: any) => any | null
|
|
5574
|
+
floor: (self: AbstractSortedSet, element: any) => any | null
|
|
5575
|
+
ceil: (self: AbstractSortedSet, element: any) => any | null
|
|
5576
|
+
head_set: (self: AbstractSortedSet, before: any) => SortedSet
|
|
5577
|
+
tail_set: (self: AbstractSortedSet, after: any) => SortedSet
|
|
5578
|
+
sub_set: (self: AbstractSortedSet, from: any, to: any) => SortedSet
|
|
5579
5579
|
reserved0: (self: AbstractSortedSet) => void
|
|
5580
5580
|
reserved1: (self: AbstractSortedSet) => void
|
|
5581
5581
|
reserved2: (self: AbstractSortedSet) => void
|
|
@@ -5773,7 +5773,7 @@ export interface HazardPointer {
|
|
|
5773
5773
|
|
|
5774
5774
|
// Owm methods of Gee-0.8.Gee.HazardPointer
|
|
5775
5775
|
|
|
5776
|
-
get(other_thread: boolean): any
|
|
5776
|
+
get(other_thread: boolean): any
|
|
5777
5777
|
release(notify: GLib.DestroyNotify): void
|
|
5778
5778
|
}
|
|
5779
5779
|
|
|
@@ -6042,7 +6042,7 @@ export interface BidirListIteratorIface {
|
|
|
6042
6042
|
|
|
6043
6043
|
// Own fields of Gee-0.8.Gee.BidirListIteratorIface
|
|
6044
6044
|
|
|
6045
|
-
insert: (self: BidirListIterator, item: any
|
|
6045
|
+
insert: (self: BidirListIterator, item: any) => void
|
|
6046
6046
|
}
|
|
6047
6047
|
|
|
6048
6048
|
export abstract class BidirListIteratorIface {
|
|
@@ -6103,9 +6103,9 @@ export interface CollectionIface {
|
|
|
6103
6103
|
|
|
6104
6104
|
// Own fields of Gee-0.8.Gee.CollectionIface
|
|
6105
6105
|
|
|
6106
|
-
contains: (self: Collection, item: any
|
|
6107
|
-
add: (self: Collection, item: any
|
|
6108
|
-
remove: (self: Collection, item: any
|
|
6106
|
+
contains: (self: Collection, item: any) => boolean
|
|
6107
|
+
add: (self: Collection, item: any) => boolean
|
|
6108
|
+
remove: (self: Collection, item: any) => boolean
|
|
6109
6109
|
clear: (self: Collection) => void
|
|
6110
6110
|
add_all: (self: Collection, collection: Collection) => boolean
|
|
6111
6111
|
contains_all: (self: Collection, collection: Collection) => boolean
|
|
@@ -6135,7 +6135,7 @@ export interface ComparableIface {
|
|
|
6135
6135
|
|
|
6136
6136
|
// Own fields of Gee-0.8.Gee.ComparableIface
|
|
6137
6137
|
|
|
6138
|
-
compare_to: (self: Comparable, object: any
|
|
6138
|
+
compare_to: (self: Comparable, object: any) => number
|
|
6139
6139
|
}
|
|
6140
6140
|
|
|
6141
6141
|
export abstract class ComparableIface {
|
|
@@ -6149,11 +6149,11 @@ export interface DequeIface {
|
|
|
6149
6149
|
|
|
6150
6150
|
// Own fields of Gee-0.8.Gee.DequeIface
|
|
6151
6151
|
|
|
6152
|
-
offer_head: (self: Deque, element: any
|
|
6152
|
+
offer_head: (self: Deque, element: any) => boolean
|
|
6153
6153
|
peek_head: (self: Deque) => any | null
|
|
6154
6154
|
poll_head: (self: Deque) => any | null
|
|
6155
6155
|
drain_head: (self: Deque, recipient: Collection, amount: number) => number
|
|
6156
|
-
offer_tail: (self: Deque, element: any
|
|
6156
|
+
offer_tail: (self: Deque, element: any) => boolean
|
|
6157
6157
|
peek_tail: (self: Deque) => any | null
|
|
6158
6158
|
poll_tail: (self: Deque) => any | null
|
|
6159
6159
|
drain_tail: (self: Deque, recipient: Collection, amount: number) => number
|
|
@@ -6170,10 +6170,10 @@ export interface FutureIface {
|
|
|
6170
6170
|
|
|
6171
6171
|
// Own fields of Gee-0.8.Gee.FutureIface
|
|
6172
6172
|
|
|
6173
|
-
wait: (self: Future) => any
|
|
6173
|
+
wait: (self: Future) => any
|
|
6174
6174
|
wait_until: (self: Future, end_time: number) => [ /* returnType */ boolean, /* value */ any ]
|
|
6175
6175
|
wait_async: (self: Future, _callback_: Gio.AsyncReadyCallback | null) => void
|
|
6176
|
-
wait_finish: (self: Future, _res_: Gio.AsyncResult) => any
|
|
6176
|
+
wait_finish: (self: Future, _res_: Gio.AsyncResult) => any
|
|
6177
6177
|
map: (self: Future, a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, func: any) => Future
|
|
6178
6178
|
light_map: (self: Future, a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, func: any) => Future
|
|
6179
6179
|
light_map_broken: (self: Future, a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, func: any) => Future
|
|
@@ -6196,7 +6196,7 @@ export interface HashableIface {
|
|
|
6196
6196
|
// Own fields of Gee-0.8.Gee.HashableIface
|
|
6197
6197
|
|
|
6198
6198
|
hash: (self: Hashable) => number
|
|
6199
|
-
equal_to: (self: Hashable, object: any
|
|
6199
|
+
equal_to: (self: Hashable, object: any) => boolean
|
|
6200
6200
|
}
|
|
6201
6201
|
|
|
6202
6202
|
export abstract class HashableIface {
|
|
@@ -6226,7 +6226,7 @@ export interface IteratorIface {
|
|
|
6226
6226
|
|
|
6227
6227
|
next: (self: Iterator) => boolean
|
|
6228
6228
|
has_next: (self: Iterator) => boolean
|
|
6229
|
-
get: (self: Iterator) => any
|
|
6229
|
+
get: (self: Iterator) => any
|
|
6230
6230
|
remove: (self: Iterator) => void
|
|
6231
6231
|
get_valid: (self: Iterator) => boolean
|
|
6232
6232
|
get_read_only: (self: Iterator) => boolean
|
|
@@ -6244,14 +6244,14 @@ export interface ListIface {
|
|
|
6244
6244
|
// Own fields of Gee-0.8.Gee.ListIface
|
|
6245
6245
|
|
|
6246
6246
|
list_iterator: (self: List) => ListIterator
|
|
6247
|
-
get: (self: List, index: number) => any
|
|
6248
|
-
set: (self: List, index: number, item: any
|
|
6249
|
-
index_of: (self: List, item: any
|
|
6250
|
-
insert: (self: List, index: number, item: any
|
|
6251
|
-
remove_at: (self: List, index: number) => any
|
|
6247
|
+
get: (self: List, index: number) => any
|
|
6248
|
+
set: (self: List, index: number, item: any) => void
|
|
6249
|
+
index_of: (self: List, item: any) => number
|
|
6250
|
+
insert: (self: List, index: number, item: any) => void
|
|
6251
|
+
remove_at: (self: List, index: number) => any
|
|
6252
6252
|
slice: (self: List, start: number, stop: number) => List | null
|
|
6253
|
-
first: (self: List) => any
|
|
6254
|
-
last: (self: List) => any
|
|
6253
|
+
first: (self: List) => any
|
|
6254
|
+
last: (self: List) => any
|
|
6255
6255
|
insert_all: (self: List, index: number, collection: Collection) => void
|
|
6256
6256
|
sort: (self: List, compare_func: GLib.CompareDataFunc | null) => void
|
|
6257
6257
|
get_read_only_view: (self: List) => List
|
|
@@ -6268,8 +6268,8 @@ export interface ListIteratorIface {
|
|
|
6268
6268
|
|
|
6269
6269
|
// Own fields of Gee-0.8.Gee.ListIteratorIface
|
|
6270
6270
|
|
|
6271
|
-
set: (self: ListIterator, item: any
|
|
6272
|
-
add: (self: ListIterator, item: any
|
|
6271
|
+
set: (self: ListIterator, item: any) => void
|
|
6272
|
+
add: (self: ListIterator, item: any) => void
|
|
6273
6273
|
index: (self: ListIterator) => number
|
|
6274
6274
|
}
|
|
6275
6275
|
|
|
@@ -6284,11 +6284,11 @@ export interface MapIface {
|
|
|
6284
6284
|
|
|
6285
6285
|
// Own fields of Gee-0.8.Gee.MapIface
|
|
6286
6286
|
|
|
6287
|
-
has_key: (self: Map, key: any
|
|
6288
|
-
has: (self: Map, key: any
|
|
6289
|
-
get: (self: Map, key: any
|
|
6290
|
-
set: (self: Map, key: any
|
|
6291
|
-
unset: (self: Map, key: any
|
|
6287
|
+
has_key: (self: Map, key: any) => boolean
|
|
6288
|
+
has: (self: Map, key: any, value: any) => boolean
|
|
6289
|
+
get: (self: Map, key: any) => any | null
|
|
6290
|
+
set: (self: Map, key: any, value: any) => void
|
|
6291
|
+
unset: (self: Map, key: any) => [ /* returnType */ boolean, /* value */ any ]
|
|
6292
6292
|
clear: (self: Map) => void
|
|
6293
6293
|
map_iterator: (self: Map) => MapIterator
|
|
6294
6294
|
set_all: (self: Map, map: Map) => void
|
|
@@ -6336,11 +6336,11 @@ export interface MapIteratorIface {
|
|
|
6336
6336
|
|
|
6337
6337
|
next: (self: MapIterator) => boolean
|
|
6338
6338
|
has_next: (self: MapIterator) => boolean
|
|
6339
|
-
get_key: (self: MapIterator) => any
|
|
6340
|
-
get_value: (self: MapIterator) => any
|
|
6341
|
-
set_value: (self: MapIterator, value: any
|
|
6339
|
+
get_key: (self: MapIterator) => any
|
|
6340
|
+
get_value: (self: MapIterator) => any
|
|
6341
|
+
set_value: (self: MapIterator, value: any) => void
|
|
6342
6342
|
unset: (self: MapIterator) => void
|
|
6343
|
-
fold: (self: MapIterator, a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: FoldMapFunc, seed: any
|
|
6343
|
+
fold: (self: MapIterator, a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: FoldMapFunc, seed: any) => any
|
|
6344
6344
|
foreach: (self: MapIterator, f: ForallMapFunc) => boolean
|
|
6345
6345
|
get_valid: (self: MapIterator) => boolean
|
|
6346
6346
|
get_mutable: (self: MapIterator) => boolean
|
|
@@ -6361,11 +6361,11 @@ export interface MultiMapIface {
|
|
|
6361
6361
|
get_keys: (self: MultiMap) => Set
|
|
6362
6362
|
get_all_keys: (self: MultiMap) => MultiSet
|
|
6363
6363
|
get_values: (self: MultiMap) => Collection
|
|
6364
|
-
contains: (self: MultiMap, key: any
|
|
6365
|
-
get: (self: MultiMap, key: any
|
|
6366
|
-
set: (self: MultiMap, key: any
|
|
6367
|
-
remove: (self: MultiMap, key: any
|
|
6368
|
-
remove_all: (self: MultiMap, key: any
|
|
6364
|
+
contains: (self: MultiMap, key: any) => boolean
|
|
6365
|
+
get: (self: MultiMap, key: any) => Collection
|
|
6366
|
+
set: (self: MultiMap, key: any, value: any) => void
|
|
6367
|
+
remove: (self: MultiMap, key: any, value: any) => boolean
|
|
6368
|
+
remove_all: (self: MultiMap, key: any) => boolean
|
|
6369
6369
|
clear: (self: MultiMap) => void
|
|
6370
6370
|
map_iterator: (self: MultiMap) => MapIterator
|
|
6371
6371
|
get_size: (self: MultiMap) => number
|
|
@@ -6384,7 +6384,7 @@ export interface MultiSetIface {
|
|
|
6384
6384
|
|
|
6385
6385
|
// Own fields of Gee-0.8.Gee.MultiSetIface
|
|
6386
6386
|
|
|
6387
|
-
count: (self: MultiSet, item: any
|
|
6387
|
+
count: (self: MultiSet, item: any) => number
|
|
6388
6388
|
get_read_only_view: (self: MultiSet) => MultiSet
|
|
6389
6389
|
}
|
|
6390
6390
|
|
|
@@ -6399,7 +6399,7 @@ export interface QueueIface {
|
|
|
6399
6399
|
|
|
6400
6400
|
// Own fields of Gee-0.8.Gee.QueueIface
|
|
6401
6401
|
|
|
6402
|
-
offer: (self: Queue, element: any
|
|
6402
|
+
offer: (self: Queue, element: any) => boolean
|
|
6403
6403
|
peek: (self: Queue) => any | null
|
|
6404
6404
|
poll: (self: Queue) => any | null
|
|
6405
6405
|
drain: (self: Queue, recipient: Collection, amount: number) => number
|
|
@@ -6433,9 +6433,9 @@ export interface SortedMapIface {
|
|
|
6433
6433
|
|
|
6434
6434
|
// Own fields of Gee-0.8.Gee.SortedMapIface
|
|
6435
6435
|
|
|
6436
|
-
head_map: (self: SortedMap, before: any
|
|
6437
|
-
tail_map: (self: SortedMap, after: any
|
|
6438
|
-
sub_map: (self: SortedMap, before: any
|
|
6436
|
+
head_map: (self: SortedMap, before: any) => SortedMap
|
|
6437
|
+
tail_map: (self: SortedMap, after: any) => SortedMap
|
|
6438
|
+
sub_map: (self: SortedMap, before: any, after: any) => SortedMap
|
|
6439
6439
|
get_ascending_keys: (self: SortedMap) => SortedSet
|
|
6440
6440
|
get_ascending_entries: (self: SortedMap) => SortedSet
|
|
6441
6441
|
get_read_only_view: (self: SortedMap) => SortedMap
|
|
@@ -6452,16 +6452,16 @@ export interface SortedSetIface {
|
|
|
6452
6452
|
|
|
6453
6453
|
// Own fields of Gee-0.8.Gee.SortedSetIface
|
|
6454
6454
|
|
|
6455
|
-
first: (self: SortedSet) => any
|
|
6456
|
-
last: (self: SortedSet) => any
|
|
6457
|
-
iterator_at: (self: SortedSet, element: any
|
|
6458
|
-
lower: (self: SortedSet, element: any
|
|
6459
|
-
higher: (self: SortedSet, element: any
|
|
6460
|
-
floor: (self: SortedSet, element: any
|
|
6461
|
-
ceil: (self: SortedSet, element: any
|
|
6462
|
-
head_set: (self: SortedSet, before: any
|
|
6463
|
-
tail_set: (self: SortedSet, after: any
|
|
6464
|
-
sub_set: (self: SortedSet, from: any
|
|
6455
|
+
first: (self: SortedSet) => any
|
|
6456
|
+
last: (self: SortedSet) => any
|
|
6457
|
+
iterator_at: (self: SortedSet, element: any) => Iterator | null
|
|
6458
|
+
lower: (self: SortedSet, element: any) => any | null
|
|
6459
|
+
higher: (self: SortedSet, element: any) => any | null
|
|
6460
|
+
floor: (self: SortedSet, element: any) => any | null
|
|
6461
|
+
ceil: (self: SortedSet, element: any) => any | null
|
|
6462
|
+
head_set: (self: SortedSet, before: any) => SortedSet
|
|
6463
|
+
tail_set: (self: SortedSet, after: any) => SortedSet
|
|
6464
|
+
sub_set: (self: SortedSet, from: any, to: any) => SortedSet
|
|
6465
6465
|
get_read_only_view: (self: SortedSet) => SortedSet
|
|
6466
6466
|
}
|
|
6467
6467
|
|
|
@@ -6478,9 +6478,9 @@ export interface TraversableIface {
|
|
|
6478
6478
|
|
|
6479
6479
|
foreach: (self: Traversable, f: ForallFunc) => boolean
|
|
6480
6480
|
stream: (self: Traversable, a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: StreamFunc) => Iterator
|
|
6481
|
-
fold: (self: Traversable, a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: FoldFunc, seed: any
|
|
6481
|
+
fold: (self: Traversable, a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: FoldFunc, seed: any) => any
|
|
6482
6482
|
map: (self: Traversable, a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: MapFunc) => Iterator
|
|
6483
|
-
scan: (self: Traversable, a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: FoldFunc, seed: any
|
|
6483
|
+
scan: (self: Traversable, a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: FoldFunc, seed: any) => Iterator
|
|
6484
6484
|
filter: (self: Traversable, pred: Predicate) => Iterator
|
|
6485
6485
|
chop: (self: Traversable, offset: number, length: number) => Iterator
|
|
6486
6486
|
flat_map: (self: Traversable, a_type: GObject.GType, a_dup_func: GObject.BoxedCopyFunc, a_destroy_func: GLib.DestroyNotify, f: FlatMapFunc) => Iterator
|
|
@@ -6488,8 +6488,8 @@ export interface TraversableIface {
|
|
|
6488
6488
|
first_match: (self: Traversable, pred: Predicate) => any | null
|
|
6489
6489
|
any_match: (self: Traversable, pred: Predicate) => boolean
|
|
6490
6490
|
all_match: (self: Traversable, pred: Predicate) => boolean
|
|
6491
|
-
max: (self: Traversable, compare: GLib.CompareDataFunc) => any
|
|
6492
|
-
min: (self: Traversable, compare: GLib.CompareDataFunc) => any
|
|
6491
|
+
max: (self: Traversable, compare: GLib.CompareDataFunc) => any
|
|
6492
|
+
min: (self: Traversable, compare: GLib.CompareDataFunc) => any
|
|
6493
6493
|
order_by: (self: Traversable, compare: GLib.CompareDataFunc | null) => Iterator
|
|
6494
6494
|
get_element_type: (self: Traversable) => GObject.GType
|
|
6495
6495
|
}
|