You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should provide functions for traversing trees make from containers that implement Get/Set
consttreeGet=(seq,tree)=>foldl(seq,tree,(c,k)=>get(c,k));consttreeSet=(seq,tree,value)=>…consttryTreeGet=(seq,tree,default)=>// Returns default if a node didn't existconsttryTreeSet=(seq,tree,value)=>// Won't throw an exception if an intermediate node didn't existconsttreeCreateNodes=(seq,tree)=>// Will create intermediate nodes (default values in sequence which is of the form [[key, defaultValue],...])
The text was updated successfully, but these errors were encountered:
We should provide functions for traversing trees make from containers that implement Get/Set
The text was updated successfully, but these errors were encountered: