- Jul 30, 2014
-
-
Attila Lendvai authored
-
REMF does not remove duplicate keys, and re-scanning the list for each key is slower. Signed-off-by:
Attila Lendvai <attila.lendvai@gmail.com>
-
- May 12, 2014
-
-
Previously, BISECT-BIG was never called.
-
- Mar 04, 2014
-
-
Attila Lendvai authored
Suggested by Stas Boukarev.
-
Attila Lendvai authored
Patch by "James M. Lawrence" <llmjjmll@gmail.com>
-
Attila Lendvai authored
-
Signed-off-by:
Attila Lendvai <attila.lendvai@gmail.com>
-
- Feb 16, 2014
-
-
-
Attila Lendvai authored
-
- Jan 26, 2013
-
-
Nikodemus Siivola authored
-
Nikodemus Siivola authored
-
Nikodemus Siivola authored
-
Michael Stevens authored
-
Nikodemus Siivola authored
-
Nikodemus Siivola authored
-
Nikodemus Siivola authored
-
Jan Moringen authored
add IO chapter containing READ-FILE-INTO-{STRING,BYTE-VECTOR} change include/fun-alexandria-ensure-gethash.texinfo -> include/macro-alexandria-ensure-gethash.texinfo
-
- Apr 26, 2012
-
-
Nikodemus Siivola authored
Return NIL if the sequence is empty, instead of the NO-EXTREMUM nonsense. It was bad design, because it's not an error someone higher up the stack can sensibly handle, and handling it locally is too verbose and slow. (or (extremum ...) (error ...)) expresses the common case succintly, and fits the pattern of existing sequence functions. If it is deemed necessary, we can also add &KEY DEFAULT, but that seems overkill and has little precedent in sequence functions.
-
- Apr 25, 2012
-
-
Nikodemus Siivola authored
From http://www.cliki.net/EXTREMUM A simple version built on top of REDUCE for now.
-
- Apr 22, 2012
-
-
Nikodemus Siivola authored
Yech. Phui. Tabs.
-
Nikodemus Siivola authored
Workarounds for the Clisp and CMUCL failures. Newer Clisp's no longer have the stack-overflow for the hash-table test, so enable it too.
-
- Mar 30, 2012
-
-
Nikodemus Siivola authored
Added test-case.
-
Nikodemus Siivola authored
It's destructive.
-
Nikodemus Siivola authored
This reverts commit 485544d4. MEAN and MEDIAN are again non-generic, and DISPLACE-ARRAY is removed. Motivation on the mailing list.
-
- Mar 07, 2012
-
-
- Mar 02, 2012
-
-
Attila Lendvai authored
-
- Jan 20, 2012
-
-
tpapp authored
Objects other than sequences have means and medians (eg probability distributions, arrays, sequences/arrays wrapped in another object, etc), so it makes sense to make these functions generic. DISPLACE-ARRAY is a small utility function that is used in the implementation of MEDIAN for arrays, but is also of general utility because it makes the creation of displaced arrays simpler, dispensing with the need to specify the element type, and offering sensible defaults when one wants vectors. Also added tests for all the new functions/methods.
-
Jyrki Jaakkola authored
-
Ryan Davis authored
Evaluate the default-form only if we actually use it.
-
- Nov 09, 2011
-
-
Jianshi Huang authored
-
- Nov 02, 2011
-
-
Nikodemus Siivola authored
-
James M. Lawrence authored
Multiple evaluation of the function argument, oops.
-
- Oct 29, 2011
-
-
Antony authored
Clozure CL at least considers it currently unused and signals a style warning.
-
Mason Smith authored
Plus tests.
-
Svante Carl v. Erichsen authored
No need to depend on the vagaries of ADJUST-ARRAY.
-
Anton Kovalenko authored
CIRCULAR-TREE-P had an unfortunate corner case, causing it to overflow the stack (seen and repoted at #lisp for '#1=(#1#).) The problem is caused by the end-test (of the outer DO) being run before the body has a first chance to check for (member slow seen).
-
- May 12, 2011
-
-
Nikodemus Siivola authored
-
- Mar 06, 2011
-
-
Nikodemus Siivola authored
Check for empty sequences and invalid bounding index designators.
-
Nikodemus Siivola authored
-
Nikodemus Siivola authored
-