10000 Release Dynamic array concatenation · hmmdyl/LWDR · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Jan 7, 2023. It is now read-only.

Dynamic array concatenation

Compare
Choose a tag to compare
@hmmdyl hmmdyl released this 30 May 13:04
· 73 commits to master since this release

This release now supports dynamic array concatenation.

For example:

int[] myArr = [2, 3, 4];
myArr ~= 5;
// myArr is now [2, 3, 4, 5]

int myArr2 = [6, 7];

int myArr3 = myArr ~ myArr2;
// myArr3 is [2, 3, 4, 5, 6, 7];
0