d8c4bf0390341ae679aa874ce1561b3c3507ae20
[pipes.git] / package.lisp
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          package.lisp
6 ;;;; Purpose:       Package definition for pipes package
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Apr 2000
9 ;;;;
10 ;;;; $Id: package.lisp,v 1.2 2002/11/07 20:26:13 kevin Exp $
11 ;;;;
12 ;;;; This file, part of pipes, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; Pipes users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
16 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
17 ;;;; *************************************************************************
18
19 (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
20
21 (in-package :cl-user)
22
23 (defpackage #:pipes
24   (:use #:common-lisp)
25   (:export
26    #:+empty-pipe+
27    #:make-pipe
28    #:pipe-tail
29    #:pipe-head
30    #:pipe-elt
31    #:pipe-enumerate
32    #:pipe-values
33    #:pipe-force
34    #:pipe-filter
35    #:pipe-map
36    #:pipe-map-filtering
37    #:pipe-append
38    #:pipe-mappend
39    #:pipe-mappend-filtering
40    ))
41
42
43 (defpackage #:pipes-user
44   (:use #:common-lisp #:pipes)
45   )