git.fiddlerwoaroof.com
Browse code

Add simple readme, export make-update-stream;

fiddlerwoaroof authored on 13/06/2017 01:35:00
Showing 2 changed files
... ...
@@ -1 +1,5 @@
1
-This is the stub README.txt for the "vector-update-stream" project.
1
+A simple stream library modified from code in flexi-streams.
2
+
3
+This has a single exported function MAKE-UPDATE-STRING that takes an adjustable array with a fill-pointer and
4
+returns a stream that reads bytes into that array.  This is useful for times where you want to stub out the
5
+filesystem or network in test code.
... ...
@@ -1,5 +1,6 @@
1 1
 ;;;; package.lisp
2 2
 
3 3
 (defpackage :vector-update-stream
4
-  (:use :cl :trivial-gray-streams))
4
+  (:use :cl :trivial-gray-streams)
5
+  (:export #:make-update-stream))
5 6