git.haskell.org
/
packages
/
binary.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ceecc7c
)
strictify
author
Don Stewart
<dons@cse.unsw.edu.au>
Thu, 11 Jan 2007 16:57:28 +0000
(17:57 +0100)
committer
Don Stewart
<dons@cse.unsw.edu.au>
Thu, 11 Jan 2007 16:57:28 +0000
(17:57 +0100)
src/Data/Binary/Get.hs
patch
|
blob
|
history
diff --git
a/src/Data/Binary/Get.hs
b/src/Data/Binary/Get.hs
index
72709e8
..
8e10c75
100644
(file)
--- a/
src/Data/Binary/Get.hs
+++ b/
src/Data/Binary/Get.hs
@@
-52,8
+52,8
@@
import GHC.Base
import GHC.Word
import GHC.Int
-data S = S L.ByteString -- the rest of the input
- Int64 -- bytes read
+data S = S L.ByteString
-- the rest of the input
+
!
Int64 -- bytes read
-- | The Get monad is just a State monad carrying around the input ByteString
newtype Get a = Get { unGet :: State S a }