Make snippet in README nicer to read (🤷♀️)
A generic type to decorate a given value with timestamp information.
let resource: Timestamped<Resource> = getResource() if resource.createdBefore(Date.yesterady) { print("Old resource. Needs refresh") } else { print("Still fresh: resource is \(resource.value)") }
版权所有:中国计算机学会技术支持:开源发展技术委员会 京ICP备13000930号-9 京公网安备 11010802032778号
Timestamped ⏱
A generic type to decorate a given value with timestamp information.