Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (928 - 930 of 1030)

Ticket Resolution Summary Owner Reporter
#310 fixed remove-duplicates bug Gary Byers R. Matthew Emerson
Description
? (remove-duplicates '(1 0 1 1 1 0 0 0 1 0 1 0 1) :END 11)
(1 0 0 1)

The expected result is (0 1 0 1).

#1014 fixed remove-if-not consing: seems to fully copy the original sequence before removing elements Anton Vodonosov
Description
(DEFPARAMETER *FILTERED-LIST* (REMOVE-IF-NOT (CONSTANTLY NIL) *LONG-LIST*))
took 75,108,000 microseconds (75.108000 seconds) to run.
     73,183,190 microseconds (73.183190 seconds, 97.44%) of which was spent in GC.
During that period, and with 8 available CPU cores,
     74,662,078 microseconds (74.662080 seconds) were spent in user mode
        171,601 microseconds ( 0.171601 seconds) were spent in system mode
 320,000,128 bytes of memory allocated.

(length *long-list*)
=> 20000000

(/ 320000128.0 (length *long-list*))
=> 16.000006
;; I.e. 16 bytes (64 bit cons) per element of original lisp

(asdf:implementation-identifier)
=> "ccl-1.8-f95-win-x64"

Probably the remove-if-not implementation could be enhanced.

#45 fixed resizing editor window shouldn't scroll content Jeremy Jones Jeremy Jones
Description

When an editor window is resized, the text is scrolled so that the insertion point is in the middle of the window. The text that is at the beginning of the window should remain at the beginning of the window.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.