! Copyright (C) 2007, 2009 Slava Pestov. ! See http://factorcode.org/license.txt for BSD license. USING: kernel io io.timeouts io.styles destructors ; IN: io.streams.null SINGLETONS: null-reader null-writer ; UNION: null-stream null-reader null-writer ; M: null-stream dispose drop ; M: null-stream set-timeout 2drop ; M: null-reader stream-readln drop f ; M: null-reader stream-read1 drop f ; M: null-reader stream-read-until 2drop f f ; M: null-reader stream-read 2drop f ; M: null-writer stream-write1 2drop ; M: null-writer stream-write 2drop ; M: null-writer stream-nl drop ; M: null-writer stream-flush drop ; M: null-writer stream-format 3drop ; M: null-writer make-span-stream nip ; M: null-writer make-block-stream nip ; M: null-writer make-cell-stream nip ; M: null-writer stream-write-table 3drop ; : with-null-reader ( quot -- ) null-reader swap with-input-stream* ; inline : with-null-writer ( quot -- ) null-writer swap with-output-stream* ; inline