mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
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() {}
|