EqualFuncFull

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.

This is a version of #GEqualFunc which provides a user_data closure from the caller.

alias EqualFuncFull = bool delegate
(
const(void)* a
,
const(void)* b
)

Return Value

true if a = b; false otherwise