tuchk4 / apop

2 stars 1 forks source link

support Map, Set #11

Open marvelsrp opened 7 years ago

marvelsrp commented 7 years ago

support Map, WeakMap?, Set, WeakSet? add actions: rmk.toMap, rmk.fromMap?

tuchk4 commented 7 years ago

simple example experimental/js-structs

marvelsrp commented 7 years ago
new Map([[key1, value1], [key2, value2]])

converts to

{ key1: value1, key2: value2 }

new Set(1,2,3)

converts to

[1,2,3]