Contents

xpc_dictionary_applier_t

A block to invoke for every key-value pair in the dictionary.

Declaration

typealias xpc_dictionary_applier_t = (UnsafePointer<CChar>, xpc_object_t) -> Bool

Parameters

  • key:

    The current key in the iteration.

  • value:

    The current value in the iteration.

Return Value

A Boolean indicating whether iteration should continue.

See Also

Dictionary objects