Skip to content

Releases: elliotchance/orderedmap

v1.4.0

05 Feb 14:11
724076b
Compare
Choose a tag to compare
Adds Copy() function (#19)

v1.3.0

08 Jul 13:16
5498093
Compare
Choose a tag to compare
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

27 Apr 13:13
de4adf9
Compare
Choose a tag to compare
Create LICENSE (#13)

v1.2.1

28 Mar 22:37
14f6f98
Compare
Choose a tag to compare
chore: fix typo (#11)

v1.2.0

18 Nov 22:31
Compare
Choose a tag to compare
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

18 Nov 22:29
Compare
Choose a tag to compare
Add .editorconfig (#9)

v1.1.1

17 Nov 22:13
Compare
Choose a tag to compare
Add performance comparison between orderedmap and go built-in map (#6)

v1.1.0

15 Nov 03:53
c843b30
Compare
Choose a tag to compare
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

15 Nov 03:02
887596e
Compare
Choose a tag to compare
Adding Travis CI (#1)

v1.0.0

15 Nov 00:27
Compare
Choose a tag to compare
Basic functions

Basic functions include Set, Get, Delete, Len and Keys.