Coverage report: /home/ellis/.stash/quicklisp/dists/ultralisp/software/edicl-flexi-streams-20240429143708/packages.lisp
Kind | Covered | All | % |
expression | 0 | 9 | 0.0 |
branch | 0 | 2 | 0.0 |
Key
Not instrumented
Conditionalized out
Executed
Not executed
Both branches taken
One branch taken
Neither branch taken
1
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*-
2
;;; $Header: /usr/local/cvsrep/flexi-streams/packages.lisp,v 1.39 2008/05/30 07:50:31 edi Exp $
4
;;; Copyright (c) 2005-2008, Dr. Edmund Weitz. All rights reserved.
6
;;; Redistribution and use in source and binary forms, with or without
7
;;; modification, are permitted provided that the following conditions
10
;;; * Redistributions of source code must retain the above copyright
11
;;; notice, this list of conditions and the following disclaimer.
13
;;; * Redistributions in binary form must reproduce the above
14
;;; copyright notice, this list of conditions and the following
15
;;; disclaimer in the documentation and/or other materials
16
;;; provided with the distribution.
18
;;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR 'AS IS' AND ANY EXPRESSED
19
;;; OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
;;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21
;;; ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
22
;;; DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23
;;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
24
;;; GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25
;;; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26
;;; WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27
;;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28
;;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32
(unless (find-symbol (symbol-name :stream-file-position) :trivial-gray-streams)
33
(error "You need a newer version of TRIVIAL-GRAY-STREAMS."))
35
(defpackage :flexi-streams
36
(:use :cl :trivial-gray-streams)
38
(:shadow #+:lispworks :with-accessors
40
(:export :*default-eol-style*
41
:*default-little-endian*
43
:accept-overlong-sequence
45
:external-format-condition
46
:external-format-condition-external-format
47
:external-format-eol-style
48
:external-format-error
49
:external-format-encoding-error
50
:external-format-equal
52
:external-format-little-endian
60
:flexi-stream-external-format
61
:flexi-stream-element-type
62
:flexi-stream-element-type-error
63
:flexi-stream-element-type-error-element-type
65
:flexi-stream-out-of-sync-error
66
:flexi-stream-position
68
:get-output-stream-sequence
70
:in-memory-stream-closed-error
71
:in-memory-stream-error
72
:in-memory-stream-position-spec-error
73
:in-memory-stream-position-spec-error-position-spec
74
:in-memory-input-stream
75
:in-memory-output-stream
78
:make-in-memory-input-stream
79
:make-in-memory-output-stream
84
:output-stream-sequence-length
89
:with-input-from-sequence
90
:with-output-to-sequence))