EqualFunc
Description:
[
CCode ( has_target =
false ) ]
public delegate bool EqualFunc (
G a,
G b)
Specifies the type of a function used to test two values for equality.
The function should return true if both values are equal and
false otherwise.
Parameters:
a |
a value
|
b |
a value to compare with
|
Returns:
true if a = b ; false
otherwise
|