get_int16


Description:

public int16 get_int16 ()

Returns the 16-bit signed integer value of this.

It is an error to call this function with a this of any type other than g_variant_type_int16.

Example: Get a int16:

public static int main () {
Variant var1 = new Variant.int16 (10);
// Output: ``10``
print ("%d\n", var1.get_int16 ());
// Output: ``10``
print ("%d\n", (int16) var1);
return 0;
}

valac --pkg glib-2.0 GLib.Variant.get_int16.vala

Parameters:

this

an int16 Variant instance

Returns:

a int16