CompressionStream.st
changeset 3316 7d8e613eb9da
parent 3293 772bcf3f973c
child 4205 126f38d59bbe
--- a/CompressionStream.st	Wed Jul 02 12:48:25 2014 +0200
+++ b/CompressionStream.st	Thu Jul 03 15:37:32 2014 +0200
@@ -535,6 +535,12 @@
     ^ outputBytes at:position.
 !
 
+nextBytes:numBytes into:aByteCollection startingAt:initialIndex
+    "can do it faster here than in super class"
+
+    ^ self next:numBytes into:aByteCollection startingAt:initialIndex.
+!
+
 nextOrNil
     "return the next element, a character or byte (textmode)
      return nil, if there are no more elements"
@@ -705,11 +711,11 @@
 !CompressionStream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/CompressionStream.st,v 1.35 2014-06-03 10:51:02 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/CompressionStream.st,v 1.36 2014-07-03 13:37:32 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic2/CompressionStream.st,v 1.35 2014-06-03 10:51:02 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/CompressionStream.st,v 1.36 2014-07-03 13:37:32 stefan Exp $'
 ! !