ParameterValue

public enum ParameterValue : Equatable, Hashable, ExpressibleByStringLiteral, ExpressibleByBooleanLiteral, ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral, CustomStringConvertible

Undocumented

API

  • Int parameter value

    Declaration

    Swift

    case int(_: Int)
  • String parameter value

    Declaration

    Swift

    case string(_: String)
  • Double parameter value

    Declaration

    Swift

    case double(_: Double)
  • Bool parameter value

    Declaration

    Swift

    case bool(_: Bool)

ExpressibleByStringLiteral

ExpressibleByBooleanLiteral

ExpressibleByFloatLiteral

ExpressibleByIntegerLiteral

CustomStringConvertible

  • Declaration

    Swift

    public var description: String { get }

Hashable

  • Declaration

    Swift

    public func hash(into hasher: inout Hasher)

Equatable

  • Declaration

    Swift

    public static func == (lhs: ParameterValue, rhs: ParameterValue) -> Bool