This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
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 !Thanks I am going to try !
(sp/setval (sp/srange 2 2) [7 9] [0 1 2 3 4]) => [0 1 7 9 2 3 4]
👍