-
Notifications
You must be signed in to change notification settings - Fork 1
Map
JustGod edited this page Oct 28, 2023
·
1 revision
(method) Map:Constructor()
table<string, any>
(method) Map:filter(callback: fun(key: string, value: any):boolean)
-> Map
(method) Map:forEach(callback: fun(key: string, value: any):any)
-> Map
(method) Map:get(key: string)
-> any
(method) Map:has(key: string)
-> boolean
(method) Map:keys(callback?: fun(key: string):void)
-> table<string, any>
(method) Map:map(callback: fun(key: string, value: any):any)
-> Map
(method) Map:predicate(callback: fun(key: string, value: any):boolean)
-> boolean
(method) Map:remove(key: string)
-> boolean
(method) Map:set(key: string, value: any)
-> Map
(method) Map:values(callback?: fun(value: any):void)
-> table<string, any>