Created
December 19, 2016 08:17
-
-
Save zhouqiang-cl/f12f8d33209a4f5081ad78fbc16ef8cb to your computer and use it in GitHub Desktop.
common lisp 的函数 ARRAY-HAS-FILL-POINTER-P
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
语法 | |
array-has-fill-pointer-p array => generalized-boolean | |
参数和值 | |
array --- 一个 array | |
generalized-boolean --- 一个 generalized-boolean | |
描述 | |
如果 array 有 fill pointer, 则返回真, 否则返回 false | |
代码 | |
* (array-has-fill-pointer-p (make-array 4)) | |
NIL | |
* (array-has-fill-pointer-p | |
(make-array 8 | |
:fill-pointer 2 | |
:initial-element 'filler)) | |
T |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment