VarioqubValue

public struct VarioqubValue : Equatable, CustomStringConvertible

The VarioqubValue struct that stores a String value or converts this string to different data types: String, Boolean, Double, Integer, and 64-bit Integer.

  • Undocumented

    Declaration

    Swift

    public let rawValue: String
  • Undocumented

    Declaration

    Swift

    public init(string: String)
  • This property returns the rawValue as a String value.

    Declaration

    Swift

    public var stringValue: String? { get }
  • This property tries to convert rawValue to boolean and returns it if possible, or nil if the conversion is not possible.

    Declaration

    Swift

    public var boolValue: Bool? { get }
  • This property tries to convert rawValue to double and returns it if possible, or nil if the conversion is not possible.

    Declaration

    Swift

    public var doubleValue: Double? { get }
  • This property tries to convert rawValue to integer and returns it if possible, or nil if the conversion is not possible.

    Declaration

    Swift

    public var intValue: Int? { get }
  • This property tries to convert rawValue to 64-bit integer and returns it if possible, or nil if the conversion is not possible.

    Declaration

    Swift

    public var int64Value: Int64? { get }
  • Declaration

    Swift

    public var description: String { get }