chickadee » describe » describe-sequence-limit

describe-sequence-limit nparameter

Limit the number of elements displayed to N when describing the contents of a sequence -- e.g. a list, vector, bytevector, hash table or string. Defaults to 40.

#;6> (parameterize ((describe-sequence-limit 5))
       (describe (iota 100)))
list of length 100
 0: 0
 1: 1
 2: 2
 3: 3
 4: 4
 (95 elements not displayed)