Русский (Russian)
Appearance
ENUM
Plist.Value
Contents
string(_:)
integer(_:)
real(_:)
boolean(_:)
dictionary(_:)
array(_:)
public indirect enum Value: Codable, Equatable, Sendable
It represents the values of the .plist or .entitlements file dictionary. It ensures that the values used to define the content of the dynamically generated .plist or .entitlements files are valid
string(_:)
case string(String)
It represents a string value.
integer(_:)
case integer(Int)
It represents an integer value.
real(_:)
case real(Double)
It represents a floating value.
boolean(_:)
case boolean(Bool)
It represents a boolean value.
dictionary(_:)
case dictionary([String: Value])
It represents a dictionary value.
array(_:)
case array([Value])
It represents an array value.