February 3, 20215 yr Hi, How does position-insert work? (setf test '(c4 d4 e4 fs5 e4)) (setf test2 (position-insert '(1 3 5 7) 'b3 test)) =>(c4 b3 d4 b3 e4 b3 fs5 e4) ; 1 3 5 ? what am I missing?
February 3, 20215 yr Yes, this is important to have flexibility on editing materials. I´d like to know how to use it better.
February 3, 20215 yr This is how it works, but I will extend the length to cover all possible positions. (setf test '(c4 d4 e4 fs5 e4)) (position-insert '(1 3 5 7 9) 'b3 test) => (c4 b3 d4 b3 e4 b3 fs5 b3 e4 b3)
February 3, 20215 yr Author Your example gives at my cpu this: (position-insert '(1 3 5 7 9) 'b3 test) =>(c4 b3 d4 b3 e4 b3 fs5 e4) so it does not make so much difference, am I the only one, can someone please try this little example, thanks!
Create an account or sign in to comment