Releases: elliotchance/orderedmap
Releases · elliotchance/orderedmap
v1.4.0
Adds Copy() function (#19)
v1.3.0
Implement GetElement method (#17) GetElement returns the element for a key. If the key does not exist, the pointer will be nil. Co-authored-by: Jyoti Shete <jyoti.shete@coursehero.com>
v1.2.2
Create LICENSE (#13)
v1.2.1
chore: fix typo (#11)
v1.2.0
Implement GetOrDefault (#8) GetOrDefault returns the value for a key. If the key does not exist, it returns the default value instead.
v1.1.2
Add .editorconfig (#9)
v1.1.1
Add performance comparison between orderedmap and go built-in map (#6)
v1.1.0
Added bidirectional iterator (#2) The new methods Front() and Back() can be used to bidirectionally iterate over the elements. If the map is changing while the iteration is in-flight it may produce unexpected behavior.
v1.0.1
Adding Travis CI (#1)
v1.0.0
Basic functions Basic functions include Set, Get, Delete, Len and Keys.