ToC DocOverview CGDoc RelNotes Index PermutedIndex
Allegro CL version 7.0
Home Previous Up Next Table of Contents Index
  ANSI Common Lisp   15 Arrays   15.2 Dictionary of Arrays

15.2.32 vectorp Function

Syntax:
vectorp object    generalized-boolean

Arguments and Values:
object - an object.

generalized-boolean - a generalized boolean.

Description:
Returns true if object is of type vector; otherwise, returns false.

Examples:
 (vectorp "aaaaaa")  true
 (vectorp (make-array 6 :fill-pointer t))  true
 (vectorp (make-array '(2 3 4)))  false
 (vectorp #*11)  true
 (vectorp #b11)  false

Notes:
 (vectorp object) ==(typep object 'vector)

Allegro CL Implementation Details:
None.

Home Previous Up Next Table of Contents Index
© Franz Inc. 1998-2002 - File last updated 6-21-2002