ReadStream.st
changeset 5310 b943d0eae029
parent 4826 ff30434f0feb
child 5810 3de0efaab65c
--- a/ReadStream.st	Tue Mar 21 13:53:43 2000 +0100
+++ b/ReadStream.st	Tue Mar 21 13:54:37 2000 +0100
@@ -43,7 +43,6 @@
 "
 ! !
 
-
 !ReadStream methodsFor:'converting'!
 
 readStream
@@ -82,6 +81,10 @@
 
 !ReadStream methodsFor:'queries'!
 
+copyFrom:beginning to:end
+    ^ collection copyFrom:beginning to:end
+!
+
 isReadable
     "return true, if reading is supported by the recevier.
      Here, true is always returned."
@@ -676,5 +679,5 @@
 !ReadStream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ReadStream.st,v 1.40 1999-10-01 08:37:37 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ReadStream.st,v 1.41 2000-03-21 12:54:37 cg Exp $'
 ! !