commit 5c2ef9d4be5631c0ed772076d4364fd9cf74e75d
parent 5352057e0371b0beaae118b4ca49fd10d6ccff1a
Author: Drew DeVault <sir@cmpwn.com>
Date: Thu, 5 May 2022 13:15:42 +0200
io: drop unwrap
This is not used anymore.
Signed-off-by: Drew DeVault <sir@cmpwn.com>
Diffstat:
1 file changed, 0 insertions(+), 4 deletions(-)
diff --git a/io/types.ha b/io/types.ha
@@ -73,7 +73,3 @@ export type copier = fn(to: *stream, from: *stream) (size | error);
//
// Returns the new offset relative to the start or an error.
export type seeker = fn(s: *stream, off: off, w: whence) (off | error);
-
-// The interface for a stream which wraps another kind of stream. Returns the
-// underlying stream.
-export type unwrap = fn(s: *stream) *stream;