CellValue
public struct CellValue
extension CellValue: Hashable
A structure for storing and interacting with the value contained by a Tables cell
-
The number value of the cell
Declaration
Swift
public var number: BigNumber? -
The string value of the cell
Declaration
Swift
public var string: String? -
The boolean value of the cell
Declaration
Swift
public var boolean: Bool? -
The type of the structure
Declaration
Swift
public var type: Type -
Undocumented
Declaration
Swift
public static var `nil`: CellValue { get } -
Initialize the structure for a number
Declaration
Swift
public init(number: BigNumber) -
Initialize the structure for an integer
Declaration
Swift
public init(int: BigInt) -
Initialize the structure for a string
Declaration
Swift
public init(string: String) -
Initialize the structure for a boolean
Declaration
Swift
public init(boolean: Bool) -
Gives the string representation of the
CellValueDeclaration
Swift
public var description: String? { get } -
Equatable implementation
Declaration
Swift
public static func == (lhs: CellValue, rhs: CellValue) -> Bool -
Hashable implementation
Declaration
Swift
public func hash(into hasher: inout Hasher)
View on GitHub
CellValue Structure Reference