File: Memory.hs

package info (click to toggle)
debug-me 1.20220324-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 712 kB
  • sloc: haskell: 3,151; sh: 115; makefile: 80
file content (14 lines) | stat: -rw-r--r-- 359 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{- Copyright 2017 Joey Hess <id@joeyh.name>
 -
 - Licensed under the GNU AGPL version 3 or higher.
 -}

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