Changeset 2285 for trunk/j/src/org/armedbear/lisp/reduce.lisp
- Timestamp:
- 06/11/03 01:02:28 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/reduce.lisp
r2248 r2285 2 2 ;;; 3 3 ;;; Copyright (C) 2003 Peter Graves 4 ;;; $Id: reduce.lisp,v 1. 1 2003-06-10 16:04:55piso Exp $4 ;;; $Id: reduce.lisp,v 1.2 2003-06-11 01:02:28 piso Exp $ 5 5 ;;; 6 6 ;;; This program is free software; you can redistribute it and/or … … 54 54 (if (listp sequence) 55 55 (if from-end 56 (list-reduce-from-end 56 (list-reduce-from-end function sequence start end initial-value ivp key) 57 57 (list-reduce function sequence start end initial-value ivp key)) 58 58 (let* ((disp (if from-end -1 1))
Note: See TracChangeset
for help on using the changeset viewer.