o_e Posted February 3, 2021 Posted February 3, 2021 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? JulioHerrlein 1 Quote
JulioHerrlein Posted February 3, 2021 Posted February 3, 2021 Yes, this is important to have flexibility on editing materials. I´d like to know how to use it better. Quote
opmo Posted February 3, 2021 Posted February 3, 2021 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) JulioHerrlein 1 Quote
o_e Posted February 3, 2021 Author Posted February 3, 2021 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! Quote
Stephane Boussuge Posted February 4, 2021 Posted February 4, 2021 You will get this result with the next update. S. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.