
Security News
PyPI Expands Trusted Publishing to GitLab Self-Managed as Adoption Passes 25 Percent
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads
github.com/Ryu0118/swift-typed-date
Advanced tools
TypedDate is a wrapper for Swift's Date that enhances date handling at the type level. It enables the construction of custom date structures, ranging from single components like year to combinations of year, month, day, time, etc., tailored to specific development requirements.
Key features of TypedDate include:
To initialize a TypedDate, you can use the following syntax:
import TypedDate
TypedDate(Year(2023), Month(11), Day(12))
TypedDate(Year(2023), Month(11), Day(12), calendar: Calendar(identifier: .gregorian))
TypedDate(Year(2023), Month(11), Day(12), Hour(11), Minute(12), Second(1), Nanosecond(10000000))
TypedDate(Year(2023), Month(11), Day(12), Hour(11), Minute(12), FractionalSecond(5.12))
This will create a TypedDate instance representing the date 2023/11/12.
Date has the following components available: Year, Month, Day, Hour, Minute, Second, and Nanosecond.
To create a TypedDate from a Date, use Date.scope(to:calendar:).
let typedDate1: TypedDate<(Year, Month)> = Date().scope(to: \.month)
let typedDate2: TypedDate<(Year, Month, Day, Hour)> = Date().scope(to: \.hour)
let typedDate3: TypedDate<(Year, Month, Day, Hour, Minute)> = Date().scope(to: \.minute, calendar: Calendar(identifier: .gregorian))
let typedDate4: TypedDateOfYear = Date().scope(to: \.year)
let typedDate5: TypedDateOfDay = Date().scope(to: \.day)
To convert from TypedDate to Date, use date property.
typedDate.date // Date
The fill method allows you to fill in a specific part of a date. For example:
let typedDate = TypedDate(Year(2023), Month(11), Day(12))
// typedDate: TypedDate<(Year, Month, Day)>
typedDate.fill(
to: \.second,
arguments: (Hour(11), Minute(12), Second(10))
)
// TypedDate<(Year, Month, Day, Hour, Minute, Second)>
typedDate.fill(
to: \.hour,
arguments: (Hour(11)),
calendar: Calendar(identifier: .gregorian)
)
// TypedDate<(Year, Month, Day, Hour)>
In this example, filledDate will represent the date 2023/11/12 11:12
The erase method allows you to erase a specific part of a date. For example:
let date = TypedDate(Year(2023), Month(11), Day(12), Hour(11), Minute(12))
let erasedDate1: TypedDate<(Year, Month, Day)> = date.erase(to: \.day)
let erasedDate2: TypedDate<(Year, Month)> = date.erase(to: \.month)
let erasedDate2: TypedDate<(Year)> = date.erase(to: \.year, calendar: Calendar(identifier: .gregorian)
In this example, erasedDate will be erased up to date specified in keyPath.
The modify method allows you to modify a specific part of a date. For example:
let typedDate = TypedDate(Year(2023), Month(11), Day(12), Hour(11), Minute(12))
// typedDate: 2023/11/12 11:12
let modifiedDate = typedDate.modifying(\.year) { $0 += 1 }
.modifying(\.month) { $0 -= 2 }
.modifying(\.day) { $0 += 3 }
.modifying(\.hour) { $0 += 4 }
.modifying(\.minute) { $0 += 5 }
.add(\.year, 1)
.add(\.month, -2)
.add(\.day, 3)
.add(\.hour, -2)
.add(\.minute, -3)
// modifiedDate: 2025/07/18 13:14
or use TypedDate.modify(_:calendar:modify:) method
var typedDate = TypedDate(Year(2023), Month(11))
typedDate.modify(\.year) { $0 += 1 }
// typedDate: 2024/11
let typedDate = TypedDate(Year(2023), Month(11), Day(12), Hour(11), Minute(12), Second(1), Nanosecond(10000000))
typedDate.year() // 2023
typedDate.month(calendar: Calendar(identifier: .gregorian)) // 11
typedDate.day() // 12
typedDate.hour(calendar: Calendar(identifier: .gregorian)) // 11
typedDate.minute() // 12
typedDate.second(calendar: Calendar(identifier: .gregorian) // 1
typedDate.nanosecond() // 10000000
This library includes the following typealias:
public typealias TypedDateOfYear = TypedDate<Year>
public typealias TypedDateOfMonth = TypedDate<(Year, Month)>
public typealias TypedDateOfDay = TypedDate<(Year, Month, Day)>
public typealias TypedDateOfHour = TypedDate<(Year, Month, Day, Hour)>
public typealias TypedDateOfMinute = TypedDate<(Year, Month, Day, Hour, Minute)>
public typealias TypedDateOfSecond = TypedDate<(Year, Month, Day, Hour, Minute, Second)>
public typealias TypedDateOfNanosecond = TypedDate<(Year, Month, Day, Hour, Minute, Second, Nanosecond)>
TypedDate conforms to the Comparable, Equatable, Hashable, and Codable protocols, which makes it even more powerful and convenient compared to traditional date handling:
These protocols allow for easy comparison of TypedDate instances. You can check if one date is equal to, less than, or greater than another date using standard comparison operators (==, <, >, etc.). This is much more intuitive and less error-prone than comparing individual date components.
let date1: Date // 2023/11/12
let date2: Date // 2023/11/11
// To check the date have the same year
date1.scope(to: \.year) == date2.scope(to: \.year) // -> true
// To check the date have the same year, month, and day
date1.scope(to: \.day) == date2.scope(to: \.day) // -> false
// Compare days
date1.scope(to: \.day) > date2.scope(to: \.day) // -> true
The Codable conformance means that TypedDate instances can be easily encoded to and decoded from various formats such as JSON. This is particularly useful when working with APIs or saving dates to persistent storage.
.package(url: "https://github.com/Ryu0118/swift-typed-date", exact: "0.6.0")
FAQs
Unknown package
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.

Security News
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.