Package ch.bailu.gtk.gobject
Schnittstelle TypeValueTable.OnTypeValuePeekPointerFunc
- Umschließende Klasse:
TypeValueTable
- Funktionsschnittstelle:
- Dies ist eine funktionale Schnittstelle, die somit als Zuweisungsziel für einen Lambdaausdruck oder eine Methodenreferenz verwendet werden kann.
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungonTypeValuePeekPointerFunc
(CallbackHandler __self, Value value) If the value contents fit into a pointer, such as objects or strings,
return this pointer, so the caller can peek at the current contents.
-
Methodendetails
-
onTypeValuePeekPointerFunc
If the value contents fit into a pointer, such as objects or strings,
return this pointer, so the caller can peek at the current contents.
To extend on our above string example:
<!-- language="C" --> return value->data[0].v_pointer;
- Parameter:
value
- the value to peek- Gibt zurück:
- a pointer to the value contents
-