15 lines
207 B
V
15 lines
207 B
V
|
module builtin
|
||
|
|
||
|
struct map {
|
||
|
m JS.Map
|
||
|
len int
|
||
|
}
|
||
|
|
||
|
// Removes the mapping of a particular key from the map.
|
||
|
[unsafe]
|
||
|
pub fn (mut m map) delete(key voidptr) {
|
||
|
#m.m.delete(key)
|
||
|
}
|
||
|
|
||
|
pub fn (m &map) free() {}
|