Closed sjakobi closed 6 years ago
> f s = case s of { VarSize _ -> "VarSize"; ConstSize _ -> "ConstSize"} > f (Data.Store.size :: Size (Either Int Word)) "VarSize"
IMO this should be a ConstSize 9 as both Int and Word are ConstSize 8 (on my 64-bit machine).
ConstSize 9
Int
Word
ConstSize 8
Good point! Fixed in https://github.com/fpco/store/commit/6b22382564939fb2110564d854a049527cd8199b
IMO this should be a
ConstSize 9
as bothInt
andWord
areConstSize 8
(on my 64-bit machine).