index


Description:

[ CCode ( generic_type_pos = 0.1 ) ]
public unowned G index (uint index)

Example: Simple array access:

public int main (string[] args) {
Array<string> array = new Array<string> ();
array.append_val ("1. entry");
array.append_val ("2. entry");
array.append_val ("3. entry");

// Output:
// ``1. entry``
// ``2. entry``
// ``3. entry``
// ``(null)``
print ("%s\n", array.index (0));
print ("%s\n", array.index (1));
print ("%s\n", array.index (2));
print ("%s\n", array.index (3));

return 0;
}

valac --pkg glib-2.0 GLib.Array.index.vala