Splice: Difference between revisions

From The K Language Wiki
Content added Content deleted
("More lowercasing")
("Better category ordering, add redirects to categories, fix pseudo-adverb categories")
 
Line 14: Line 14:
"abcx"</pre>
"abcx"</pre>


[[Category:Special forms]]
[[Category:Verbs]]
[[Category:Verbs]]
[[Category:Special forms]]
[[Category:Primitives]]
[[Category:Primitives]]

Latest revision as of 06:42, 9 July 2022

Splice
?[x;(s;e);z]
Supported in K5,K6

splice is a special form of the ? verb which takes 3 arguments.

  • x is the array to be modified.
  • (s;e) is a two element array indicating start index and end index
  • z is the replacement array.

In ngn/k, splice removes the portion of the array x from s to e, exclusive of e and inserts z in that place.

 ?["abcd";3 3;"x"]
"abcxd"
 ?["abcd";3 4;"x"]
"abcx"