Void functions mostly working, pending testing.

This commit is contained in:
dredgy
2022-07-25 12:59:23 +10:00
parent 0507fcff65
commit 983b7ae909
3 changed files with 10 additions and 7 deletions

View File

@@ -111,5 +111,5 @@ interface Array<T> {
first(): T
last(): T
unique(): this
collect(func: (item: T) => any[]): any[]
collect<y>(func: (item: T) => y[]): y[]
}