Structures
Standard Lisp Structures are really just vectors.
Accessing an element of a structure is as fast as accessing an element of an array.
The reader functions generated by defstruct get compiled into an vector access of a specific position (fast!)
If you redefine the positions, you have to recompile your code