Scala - Append item to array
Add single item to the back of an array. Element is added to end of the array without altering the rest of the array. The length of the array increases by one.
Add single item to the back of an array. Element is added to end of the array without altering the rest of the array. The length of the array increases by one.
{{array}} :+ {{item}}
last update:
{{array}} += {{item}}
last update: