rocketlaunchr / dataframe-go

DataFrames for Go: For statistics, machine-learning, and data manipulation/exploration
Other
1.16k stars 93 forks source link

OrderedMap bug #39

Closed pjebs closed 4 years ago

pjebs commented 4 years ago

For ordered map:

When setting an existing value, should we remove old value and append new?

    o.store[key] = val
    o.keys = append(o.keys, key)

For Delete function, if key is not found, then return immediately.