Castellano (Spanish)
Appearance
Castellano (Spanish)
Appearance
ENUM
Parser.Option
Contents
string(_:)
integer(_:)
double(_:)
boolean(_:)
dictionary(_:)
array(_:)
public enum Option: Equatable, Codable, Sendable
string(_:)
case string(String)
It represents a string value.
integer(_:)
case integer(Int)
It represents an integer value.
double(_:)
case double(Double)
It represents a floating value.
boolean(_:)
case boolean(Bool)
It represents a boolean value.
dictionary(_:)
case dictionary([String: Option])
It represents a dictionary value.
array(_:)
case array([Option])
It represents an array value.