UnicodeComposeFunc


Description:

[ CCode ( cname = "hb_unicode_compose_func_t" , instance_pos = 4.9 ) ]
public delegate Bool UnicodeComposeFunc (UnicodeFuncs ufuncs, Codepoint a, Codepoint b, Codepoint ab)

A virtual method for the UnicodeFuncs structure.

This method should compose a sequence of two input Unicode code points by canonical equivalence, returning the composed code point in a Codepoint output parameter (if successful). The method must return an Bool indicating the success of the composition.

Parameters:

ufuncs

A Unicode-functions structure

a

The first code point to compose

b

The second code point to compose

ab

The composed code point

user_data

user data pointer passed by the caller

Returns:

`true` is a,b composed, `false` otherwise


Namespace: HarfBuzz