File: package.lisp

package info (click to toggle)
cl-pipes 1.2.1-5.2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 48 kB
  • sloc: lisp: 187; makefile: 35
file content (38 lines) | stat: -rw-r--r-- 868 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; Name:          package.lisp
;;;; Purpose:       Package definition for pipes package
;;;; Programmer:    Kevin M. Rosenberg
;;;; Date Started:  Apr 2000
;;;;
;;;; $Id: package.lisp 8627 2004-02-06 14:19:48Z kevin $
;;;;
;;;; *************************************************************************

(in-package #:cl-user)

(defpackage #:pipes
  (:use #:common-lisp)
  (:export
   #:+empty-pipe+
   #:make-pipe
   #:pipe-tail
   #:pipe-head
   #:pipe-elt
   #:pipe-enumerate
   #:pipe-values
   #:pipe-force
   #:pipe-filter
   #:pipe-map
   #:pipe-map-filtering
   #:pipe-append
   #:pipe-mappend
   #:pipe-mappend-filtering
   ))


(defpackage #:pipes-user
  (:use #:common-lisp #:pipes)
  )