[HARLEQUIN][Common Lisp HyperSpec (TM)] [Previous][Up][Next]


Function ARRAYP

Syntax:

arrayp object => generalized-boolean

Arguments and Values:

object---an object.

generalized-boolean---a generalized boolean.

Description:

Returns true if object is of type array; otherwise, returns false.

Examples:

 (arrayp (make-array '(2 3 4) :adjustable t)) =>  true
 (arrayp (make-array 6)) =>  true
 (arrayp #*1011) =>  true
 (arrayp "hi") =>  true
 (arrayp 'hi) =>  false
 (arrayp 12) =>  false

Affected By: None.

Exceptional Situations: None.

See Also:

typep

Notes:

 (arrayp object) ==  (typep object 'array)


[Starting Points][Contents][Index][Symbols][Glossary][Issues]
Copyright 1996, The Harlequin Group Limited. All Rights Reserved.