summaryrefslogtreecommitdiffhomepage
path: root/Memory.hs
blob: 963acf7a1cb76463dee0af5765d49799688a1642 (plain)
1
2
3
4
5
6
7
8
9
module Memory where

-- | Class of things whose size in memory is known.
--
-- (This can be an approximate size, but should be no larger than the
-- memory used to reprecent the thing.)
class DataSize t where
	-- ^ Size in bytes
	dataSize :: t -> Integer