jscl
                                
                                
                                
                                    jscl copied to clipboard
                            
                            
                            
                        SIMPLE-VECTOR
ABCL:
CL-USER(1): (typep #(1 2) '(simple-vector 2))
T
JSCL
CL-USER>  (typep #(1 2) '(simple-vector 2))
ERROR: Unknown type-specifier (SIMPLE-VECTOR 2).
                                    
                                    
                                    
                                
Is it done? I'm still getting the same error.
At now In JSCL any one-dimensional array  - its a simple vector.
I dont think that before the implementation of the subtypep, its necessary to multiply entities.
In case of emergency - we  has a deftype - any type at any time.
Sure but then (typep #(1 2) '(simple-vector 2)) should return T instead of throwing the error?
Hmmm I'll take care
@davazp
Well To start
- 
I did not define such a type either in hardcode or as user-defined via
DEFTYPE - 
I would like to look at the type definition through the
DEFTYPEof this type in order to first determine the scale of the problem and how to solve it - 
In the general case, this problem is solved by a competent definition
(DEFTYPE simple-vector...)on the user side - 
For most users, there is no difference between vector and simple-vector other than the simple- name prefix. For a user who has this difference, there is a
DEFTYPE(this is a custom case, completely on his side, with all the side effects of the current implementation).