summaryrefslogtreecommitdiff
path: root/src/Data/Sized.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Data/Sized.hs')
-rw-r--r--src/Data/Sized.hs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/Data/Sized.hs b/src/Data/Sized.hs
deleted file mode 100644
index 0d3d5845..00000000
--- a/src/Data/Sized.hs
+++ /dev/null
@@ -1,14 +0,0 @@
1module Data.Sized where
2
3import Data.Typeable
4
5
6-- | Info about a type's serialized length. Either the length is known
7-- independently of the value, or the length depends on the value.
8data Size a
9 = VarSize (a -> Int)
10 | ConstSize !Int
11 deriving Typeable
12
13class Sized a where size :: Size a
14