DateDay

public struct DateDay : Codable, Comparable

Undocumented

  • The date formatter used for encoding and decoding

    Declaration

    Swift

    public static let dateFormatter: DateFormatter
  • Undocumented

    Declaration

    Swift

    public let date: Date
  • Undocumented

    Declaration

    Swift

    public let year: Int
  • Undocumented

    Declaration

    Swift

    public let month: Int
  • day

    Undocumented

    Declaration

    Swift

    public let day: Int
  • Undocumented

    Declaration

    Swift

    public init(date: Date = Date())
  • Undocumented

    Declaration

    Swift

    public init(year: Int, month: Int, day: Int)
  • Declaration

    Swift

    public init(from decoder: Decoder) throws
  • Declaration

    Swift

    public func encode(to encoder: Encoder) throws
  • Declaration

    Swift

    public static func == (lhs: DateDay, rhs: DateDay) -> Bool
  • Declaration

    Swift

    public static func < (lhs: DateDay, rhs: DateDay) -> Bool