module Foundation.Time.Types
( NanoSeconds(..)
, Seconds(..)
) where
import Foundation.Internal.Proxy
import Foundation.Primitive.Imports
import Foundation.Primitive.Types
import Foundation.Numerical
import Data.Coerce
newtype NanoSeconds = NanoSeconds Word64
deriving (Show,Eq,Ord,Additive,Enum,Bounded)
instance PrimType NanoSeconds where
primSizeInBytes _ = primSizeInBytes (Proxy :: Proxy Word64)
primBaUIndex ba ofs = primBaUIndex ba (coerce ofs)
primMbaURead mba ofs = primMbaURead mba (coerce ofs)
primMbaUWrite mba ofs v = primMbaUWrite mba (coerce ofs) (coerce v :: Word64)
primAddrIndex addr ofs = primAddrIndex addr (coerce ofs)
primAddrRead addr ofs = primAddrRead addr (coerce ofs)
primAddrWrite addr ofs v = primAddrWrite addr (coerce ofs) (coerce v :: Word64)
newtype Seconds = Seconds Word64
deriving (Show,Eq,Ord,Additive,Enum,Bounded)
instance PrimType Seconds where
primSizeInBytes _ = primSizeInBytes (Proxy :: Proxy Word64)
primBaUIndex ba ofs = primBaUIndex ba (coerce ofs)
primMbaURead mba ofs = primMbaURead mba (coerce ofs)
primMbaUWrite mba ofs v = primMbaUWrite mba (coerce ofs) (coerce v :: Word64)
primAddrIndex addr ofs = primAddrIndex addr (coerce ofs)
primAddrRead addr ofs = primAddrRead addr (coerce ofs)
primAddrWrite addr ofs v = primAddrWrite addr (coerce ofs) (coerce v :: Word64)