r7061: initial property settings
[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$
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 (in-package #:cl-user)
20
21 (defpackage #:pipes
22   (:use #:common-lisp)
23   (:export
24    #:+empty-pipe+
25    #:make-pipe
26    #:pipe-tail
27    #:pipe-head
28    #:pipe-elt
29    #:pipe-enumerate
30    #:pipe-values
31    #:pipe-force
32    #:pipe-filter
33    #:pipe-map
34    #:pipe-map-filtering
35    #:pipe-append
36    #:pipe-mappend
37    #:pipe-mappend-filtering
38    ))
39
40
41 (defpackage #:pipes-user
42   (:use #:common-lisp #:pipes)
43   )