Question: are polymorphs static dispatched when being applied?
I'm taking a shot at optimizing aref* in dense-arrays, specifically %aref for array subscripts. Most of the time is spent in
(setf (apply #'aref result ss-idx)
(apply #'aref array ss-elt))
I wonder if peltadot is able to static dispatch these calls to aref?