XPCLiteralValue
A type that bridges Swift literal values to XPC objects for use in dictionary literals.
Declaration
struct XPCLiteralValueOverview
This type enables ergonomic dictionary literal syntax:
let dict: XPCDictionary = [
"name": "John",
"age": 30,
"isActive": true,
"score": 95.5
]