valid Common Lisp and has been tested in Allegro CL 4.1, Lucid CL 4.0.1,
MCL 2.0 and CMU CL. It allows the user to type arithmetic expressions in
the traditional way (e.g., 1+2) when writing Lisp programs instead of
using the normal Lisp syntax (e.g., (+ 1 2)). It is not intended to be a
full replacement for the normal Lisp syntax.
This package is compiled with SBCL.
Written by Mark Kantrowitz, School of Computer Science,
Carnegie Mellon University, March 1993.
WWW: http://www.cliki.net/infix
PR: ports/93223
Submitted by: Pedro F Giffuni <giffunip@asme.org>
valid Common Lisp and has been tested in Allegro CL 4.1, Lucid CL 4.0.1,
MCL 2.0 and CMU CL. It allows the user to type arithmetic expressions in
the traditional way (e.g., 1+2) when writing Lisp programs instead of
using the normal Lisp syntax (e.g., (+ 1 2)). It is not intended to be a
full replacement for the normal Lisp syntax.
This package is compiled with CMUCL.
Written by Mark Kantrowitz, School of Computer Science,
Carnegie Mellon University, March 1993.
WWW: http://www.cliki.net/infix
PR: ports/93223
Submitted by: Pedro F. Giffuni <giffunip@asme.org>
valid Common Lisp and has been tested in Allegro CL 4.1, Lucid CL 4.0.1,
MCL 2.0 and CMU CL. It allows the user to type arithmetic expressions in
the traditional way (e.g., 1+2) when writing Lisp programs instead of
using the normal Lisp syntax (e.g., (+ 1 2)). It is not intended to be a
full replacement for the normal Lisp syntax.
It is known to be compatible with CMUCL, CLISP, MCL, and SBCL.
Written by Mark Kantrowitz, School of Computer Science,
Carnegie Mellon University, March 1993.
WWW: http://www.cliki.net/infix
PR: ports/93223
Submitted by: Pedro F. Giffuni
* Fixed long form of -1 switch to --single-pass as noted in man page and help.
* Added MSVC 2003 project files and renamed old 2002 ones.
* Fix whitespace in generated code.
PR: ports/99038
Submitted by: maintainer
(Note: upnp-1.3.1 stopped developing, and pupnp-1.4.0 is its successor)
- drop maintainership
Noticed by: Chris Hilbert <chris.hilbert at fileflash.com>
weak references. This module is a Perl-level interface to that API,
allowing weak references to be created in Perl.
A weak reference is just like an ordinary Perl reference except
that it isn't included in the reference count of the thing referred
to. This means that once all references to a particular piece of
data are weak, the piece of data is freed and all the weak references
are set to undef. This is particularly useful for implementing
circular data structures without memory leaks or caches of objects.
WWW: http://search.cpan.org/dist/WeakRef/
PR: ports/98963
Submitted by: Dmitry Marakasov <amdmi3@mail.ru>