Hi everyone ! I have a simple need but don’t find the right navigator t o do it. Is it possible do insert en sub sequence into a sequence :
(sp/setval [path to an element] [7 9] [0 1 2 3 4]) => [0 1 7 9 2 3 4]
Thank you !(srange 3 3)
Thanks I am going to try !
(keyword here is "subsequence" in the doc)
(sp/setval (sp/srange 2 2) [7 9] [0 1 2 3 4]) => [0 1 7 9 2 3 4]
👍