Sequence#
- class Sequence(*args, **kwargs)#
The Sequence struct is an opaque data type representing a
[sequence][glib-Sequences] data type.
Methods#
- class Sequence
- append(data: Any = None) SequenceIter#
Adds a new item to the end of
seq.Added in version 2.14.
- Parameters:
data – the data for the new item
- foreach(func: Callable[[Any, Any], None], user_data: Any = None) None#
Calls
funcfor each item in the sequence passinguser_datato the function.funcmust not modify the sequence itself.Added in version 2.14.
- Parameters:
func – the function to call for each item in
sequser_data – user data passed to
func
- classmethod foreach_range(end: SequenceIter, func: Callable[[Any, Any], None], user_data: Any = None) None#
Calls
funcfor each item in the range (begin,end) passinguser_datato the function.funcmust not modify the sequence itself.Added in version 2.14.
- Parameters:
end – a
SequenceIterfunc – a
Funcuser_data – user data passed to
func
- free() None#
Frees the memory allocated for
seq. Ifseqhas a data destroy function associated with it, that function is called on all items inseq.Added in version 2.14.
- get_begin_iter() SequenceIter#
Returns the begin iterator for
seq.Added in version 2.14.
- get_end_iter() SequenceIter#
Returns the end iterator for
segAdded in version 2.14.
- get_iter_at_pos(pos: int) SequenceIter#
Returns the iterator at position
pos. Ifposis negative or larger than the number of items inseq, the end iterator is returned.Added in version 2.14.
- Parameters:
pos – a position in
seq, or -1 for the end
- get_length() int#
Returns the positive length (>= 0) of
seq. Note that this method is O(h) whereh' is the height of the tree. It is thus more efficient to use :func:`~gi.repository.GLib.Sequence.is_emptywhen comparing the length to zero.Added in version 2.14.
- classmethod insert_before(data: Any = None) SequenceIter#
Inserts a new item just before the item pointed to by
iter.Added in version 2.14.
- Parameters:
data – the data for the new item
- insert_sorted(data: Any, cmp_func: Callable[[Any, Any, Any], int], cmp_data: Any = None) SequenceIter#
Inserts
dataintosequsingcmp_functo determine the new position. The sequence must already be sorted according tocmp_func; otherwise the new position ofdatais undefined.cmp_funcis called with two items of theseq, andcmp_data. It should return 0 if the items are equal, a negative value if the first item comes before the second, and a positive value if the second item comes before the first.Note that when adding a large amount of data to a
Sequence, it is more efficient to do unsorted insertions and then callsort()orsort_iter().Added in version 2.14.
- Parameters:
data – the data to insert
cmp_func – the function used to compare items in the sequence
cmp_data – user data passed to
cmp_func.
- insert_sorted_iter(data: Any, iter_cmp: Callable[[SequenceIter, SequenceIter, Any], int], cmp_data: Any = None) SequenceIter#
Like
insert_sorted(), but uses aSequenceIterCompareFuncinstead of aCompareDataFuncas the compare function.iter_cmpis called with two iterators pointing intoseq. It should return 0 if the iterators are equal, a negative value if the first iterator comes before the second, and a positive value if the second iterator comes before the first.Note that when adding a large amount of data to a
Sequence, it is more efficient to do unsorted insertions and then callsort()orsort_iter().Added in version 2.14.
- Parameters:
data – data for the new item
iter_cmp – the function used to compare iterators in the sequence
cmp_data – user data passed to
iter_cmp
- is_empty() bool#
Returns
Trueif the sequence contains zero items.This function is functionally identical to checking the result of
get_length()being equal to zero. However this function is implemented in O(1) running time.Added in version 2.48.
- lookup(data: Any, cmp_func: Callable[[Any, Any, Any], int], cmp_data: Any = None) SequenceIter | None#
Returns an iterator pointing to the position of the first item found equal to
dataaccording tocmp_funcandcmp_data. If more than one item is equal, it is not guaranteed that it is the first which is returned. In that case, you can usenext()andprev()to get others.cmp_funcis called with two items of theseq, andcmp_data. It should return 0 if the items are equal, a negative value if the first item comes before the second, and a positive value if the second item comes before the first.This function will fail if the data contained in the sequence is unsorted.
Added in version 2.28.
- Parameters:
data – data to look up
cmp_func – the function used to compare items in the sequence
cmp_data – user data passed to
cmp_func
- lookup_iter(data: Any, iter_cmp: Callable[[SequenceIter, SequenceIter, Any], int], cmp_data: Any = None) SequenceIter | None#
Like
lookup(), but uses aSequenceIterCompareFuncinstead of aCompareDataFuncas the compare function.iter_cmpis called with two iterators pointing intoseq. It should return 0 if the iterators are equal, a negative value if the first iterator comes before the second, and a positive value if the second iterator comes before the first.This function will fail if the data contained in the sequence is unsorted.
Added in version 2.28.
- Parameters:
data – data to look up
iter_cmp – the function used to compare iterators in the sequence
cmp_data – user data passed to
iter_cmp
- classmethod move(dest: SequenceIter) None#
Moves the item pointed to by
srcto the position indicated bydest. After calling this functiondestwill point to the position immediately aftersrc. It is allowed forsrcanddestto point into different sequences.Added in version 2.14.
- Parameters:
dest – a
SequenceIterpointing to the position to which the item is moved
- classmethod move_range(begin: SequenceIter, end: SequenceIter) None#
Inserts the (
begin,end) range at the destination pointed to bydest. Thebeginandenditers must point into the same sequence. It is allowed fordestto point to a different sequence than the one pointed into bybeginandend.If
destisNone, the range indicated bybeginandendis removed from the sequence. Ifdestpoints to a place within the (begin,end) range, the range does not move.Added in version 2.14.
- Parameters:
begin – a
SequenceIterend – a
SequenceIter
- prepend(data: Any = None) SequenceIter#
Adds a new item to the front of
seqAdded in version 2.14.
- Parameters:
data – the data for the new item
- classmethod range_get_midpoint(end: SequenceIter) SequenceIter#
Finds an iterator somewhere in the range (
begin,end). This iterator will be close to the middle of the range, but is not guaranteed to be exactly in the middle.The
beginandenditerators must both point to the same sequence andbeginmust come before or be equal toendin the sequence.Added in version 2.14.
- Parameters:
end – a
SequenceIter
- classmethod remove() None#
Removes the item pointed to by
iter. It is an error to pass the end iterator to this function.If the sequence has a data destroy function associated with it, this function is called on the data for the removed item.
Added in version 2.14.
- Returns:
0 if the file was successfully removed, -1 if an error occurred
- classmethod remove_range(end: SequenceIter) None#
Removes all items in the (
begin,end) range.If the sequence has a data destroy function associated with it, this function is called on the data for the removed items.
Added in version 2.14.
- Parameters:
end – a
SequenceIter
- search(data: Any, cmp_func: Callable[[Any, Any, Any], int], cmp_data: Any = None) SequenceIter#
Returns an iterator pointing to the position where
datawould be inserted according tocmp_funcandcmp_data.cmp_funcis called with two items of theseq, andcmp_data. It should return 0 if the items are equal, a negative value if the first item comes before the second, and a positive value if the second item comes before the first.If you are simply searching for an existing element of the sequence, consider using
lookup().This function will fail if the data contained in the sequence is unsorted.
Added in version 2.14.
- Parameters:
data – data for the new item
cmp_func – the function used to compare items in the sequence
cmp_data – user data passed to
cmp_func
- search_iter(data: Any, iter_cmp: Callable[[SequenceIter, SequenceIter, Any], int], cmp_data: Any = None) SequenceIter#
Like
search(), but uses aSequenceIterCompareFuncinstead of aCompareDataFuncas the compare function.iter_cmpis called with two iterators pointing intoseq. It should return 0 if the iterators are equal, a negative value if the first iterator comes before the second, and a positive value if the second iterator comes before the first.If you are simply searching for an existing element of the sequence, consider using
lookup_iter().This function will fail if the data contained in the sequence is unsorted.
Added in version 2.14.
- Parameters:
data – data for the new item
iter_cmp – the function used to compare iterators in the sequence
cmp_data – user data passed to
iter_cmp
- classmethod set(data: Any = None) None#
Changes the data for the item pointed to by
iterto bedata. If the sequence has a data destroy function associated with it, that function is called on the existing data thatiterpointed to.Added in version 2.14.
- Parameters:
data – new data for the item
- sort(cmp_func: Callable[[Any, Any, Any], int], cmp_data: Any = None) None#
Sorts
sequsingcmp_func.cmp_funcis passed two items ofseqand should return 0 if they are equal, a negative value if the first comes before the second, and a positive value if the second comes before the first.Added in version 2.14.
- Parameters:
cmp_func – the function used to sort the sequence
cmp_data – user data passed to
cmp_func
- classmethod sort_changed(cmp_func: Callable[[Any, Any, Any], int], cmp_data: Any = None) None#
Moves the data pointed to by
iterto a new position as indicated bycmp_func. This function should be called for items in a sequence already sorted according tocmp_funcwhenever some aspect of an item changes so thatcmp_funcmay return different values for that item.cmp_funcis called with two items of theseq, andcmp_data. It should return 0 if the items are equal, a negative value if the first item comes before the second, and a positive value if the second item comes before the first.Added in version 2.14.
- Parameters:
cmp_func – the function used to compare items in the sequence
cmp_data – user data passed to
cmp_func.
- classmethod sort_changed_iter(iter_cmp: Callable[[SequenceIter, SequenceIter, Any], int], cmp_data: Any = None) None#
Like
sort_changed(), but uses aSequenceIterCompareFuncinstead of aCompareDataFuncas the compare function.iter_cmpis called with two iterators pointing into theSequencethatiterpoints into. It should return 0 if the iterators are equal, a negative value if the first iterator comes before the second, and a positive value if the second iterator comes before the first.Added in version 2.14.
- Parameters:
iter_cmp – the function used to compare iterators in the sequence
cmp_data – user data passed to
cmp_func
- sort_iter(cmp_func: Callable[[SequenceIter, SequenceIter, Any], int], cmp_data: Any = None) None#
Like
sort(), but uses aSequenceIterCompareFuncinstead of aCompareDataFuncas the compare functioncmp_funcis called with two iterators pointing intoseq. It should return 0 if the iterators are equal, a negative value if the first iterator comes before the second, and a positive value if the second iterator comes before the first.Added in version 2.14.
- Parameters:
cmp_func – the function used to compare iterators in the sequence
cmp_data – user data passed to
cmp_func
- classmethod swap(b: SequenceIter) None#
Swaps the items pointed to by
aandb. It is allowed foraandbto point into difference sequences.Added in version 2.14.
- Parameters:
b – a
SequenceIter