Kind | Covered | All | % |
expression | 0 | 4 | 0.0 |
branch | 0 | 0 | nil |
1
;;; io.lisp --- IO API
2
3
;;
4
5
;;; Code:
6
(pkg:defpkg :io
7
(:use :cl)
8
(:use-reexport :io/proto :io/uring :io/flate
9
:io/zstd :io/stream :io/socket :io/chunky
10
:io/smart-buffer :io/static :io/xsubseq))
11
12
(defpackage :io-user
13
(:use :cl :std :std-user :io))
14
15
(in-package :io)
16
(pushnew :io *features*)