list-length-2-pGBBopen Toolslist-length>1list-length>GoTo Top

list-length>   n list => boolean[Function]

Purpose
Fast length > n test of a list.

Package   :gbbopen-tools

Module   :gbbopen-tools

Arguments and values

n     A non-negative fixnum
list     A proper list or a dotted list
boolean     A generalized boolean

Returns
True if list has length > n; nil otherwise.

See also
    list-length>
    list-length-1-p
    list-length-2-p

Examples

  > (list-length> 1 '(a b))
  t
  > (list-length> 2 '(a b))
  nil
  > (list-length> 1 '(a))
  nil
  > (list-length> 1 '(a . b))
  nil
  > (list-length> 1 '(a b . c))
  t
  >


The GBBopen Project


list-length-2-pGBBopen Toolslist-length>1list-length>GoTo Top