Русский (Russian)
Appearance
ENUM
Template.Attribute.Value
Contents
string(_:)
integer(_:)
real(_:)
boolean(_:)
dictionary(_:)
array(_:)
public indirect enum Value: Codable, Equatable, Sendable
This represents the default value type of Attribute
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.