1 patch for repository http://darcs.haskell.org/packages/deepseq:

Provide NFData instance for Data.Sequence.Seq

Tue Jul 12 17:23:11 EEST 2011  ankarakulov@gmail.com
  * deepseq-sequence


New patches:

[deepseq-sequence
ankarakulov@gmail.com**20110712142311
 Ignore-this: fd8c6a8e956c32b64a3073d36df49afe
] hunk ./Control/DeepSeq.hs 59
 import Data.IntSet
 import Data.Tree
 import Data.Array
+import Data.Sequence
+
+import qualified Data.Foldable as Foldable
 
 -- | 'deepseq': fully evaluates the first argument, before returning the
 -- second.
hunk ./Control/DeepSeq.hs 152
 instance NFData Data.IntSet.IntSet where
     rnf = rnf . Data.IntSet.toList
 
+instance NFData a => NFData (Data.Sequence.Seq a) where
+    rnf = rnf . Foldable.toList
+
 instance NFData a => NFData [a] where
     rnf [] = ()
     rnf (x:xs) = rnf x `seq` rnf xs

Context:

[TAG git migration
Ian Lynagh <igloo@earth.li>**20110331135045
 Ignore-this: 8b54bf1e0d0fdefa3dbb8c0223ad9410
] 
Patch bundle hash:
a0218499b40cf68f644d22d22c35759b0d4b093a
