Int64ValueConvertible

public protocol Int64ValueConvertible

This protocol specifies that the types using it should be able to convert their forms into an Int64 format.

  • Returns Int64 value or nil if conversion isn’t possible.

    Declaration

    Swift

    var int64Value: Int64? { get }
  • Returns Int64 value or 0 if conversion isn’t possible.

    Declaration

    Swift

    var int64ValueOrDefault: Int64 { get }