Sequence


Object Hierarchy:

GLib.Sequence GLib.Sequence GLib.Sequence

Description:

[ Compact ]
[ Version ( since = "2.14" ) ]
[ CCode ( free_function = "g_sequence_free" ) ]
public class Sequence<G>

The Sequence struct is an opaque data type representing a sequence data type.

Example: Sort all items:

public static int main (string[] args) {
Sequence<string> seq = new Sequence<string> ();
seq.append ("1. Lorem");
seq.append ("4. amet");
seq.append ("2. ipsum");
seq.append ("3. sit");

bool asc = true;
seq.sort ((a, b) => {
return (asc)? strcmp (a, b) : strcmp (b, a);
});

// Output:
// ``1. Lorem``
// ``2. ipsum``
// ``3. sit``
// ``4. amet``
seq.foreach ((item) => {
print ("%s\n", item);
});

return 0;
}

valac --pkg glib-2.0 GLib.Sequence.sort.vala


Namespace: GLib
Package: glib-2.0

Content:

Static methods:

Creation methods:

Methods: