mirror of
https://github.com/logos-storage/logos-storage-network-crawler.git
synced 2026-01-06 15:33:10 +00:00
18 lines
435 B
Nim
18 lines
435 B
Nim
import pkg/stint
|
|
|
|
type
|
|
Periodicity* = object
|
|
seconds*: uint64
|
|
|
|
Period* = uint64
|
|
Timestamp* = uint64
|
|
|
|
func periodOf*(periodicity: Periodicity, timestamp: Timestamp): Period =
|
|
timestamp div periodicity.seconds
|
|
|
|
func periodStart*(periodicity: Periodicity, period: Period): Timestamp =
|
|
period * periodicity.seconds
|
|
|
|
func periodEnd*(periodicity: Periodicity, period: Period): Timestamp =
|
|
periodicity.periodStart(period + 1)
|