list-length>1GBBopen Toolsmake-hash-values-vectorlist-length>2GoTo Top

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

Purpose
Fast length > 2 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 > 2; nil otherwise.

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

Examples

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


The GBBopen Project


list-length>1GBBopen Toolsmake-hash-values-vectorlist-length>2GoTo Top