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

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

Purpose
Fast length > 1 test of a list.

Package   :gbbopen-tools

Module   :gbbopen-tools

Arguments and values

list     A proper list or a dotted list
boolean     A generalized boolean

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

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

Examples

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


The GBBopen Project


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