Gio.MenuLinkIter::get_next
function vfunc_get_next(): [ok: Boolean, out_link: String, value: Gio.MenuModel] {
}
This function combines Gio.MenuLinkIter.prototype.next with Gio.MenuLinkIter.prototype.get_name and Gio.MenuLinkIter.prototype.get_value.
First the iterator is advanced to the next (possibly first) link. If that fails, then false is returned and there are no other effects.
If successful, out_link and value are set to the name and Gio.MenuModel of the link that has just been advanced to. At this point, Gio.MenuLinkIter.prototype.get_name and Gio.MenuLinkIter.prototype.get_value will return the same values again.
The value returned in out_link remains valid for as long as the iterator remains at the current position. The value returned in value must be unreffed using GObject.Object.prototype.unref when it is no longer in use.
Since 2.32
- Returns
true on success, or false if there is no additional link