Skip to content

Tags: lutfuahmet/orderedmap

Tags

v1.4.0

Toggle v1.4.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Adds Copy() function (elliotchance#19)

v1.3.0

Toggle v1.3.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Implement GetElement method (elliotchance#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

Toggle v1.2.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Create LICENSE (elliotchance#13)

v1.2.1

Toggle v1.2.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
chore: fix typo (elliotchance#11)

v1.2.0

Toggle v1.2.0's commit message
Implement GetOrDefault (elliotchance#8)

GetOrDefault returns the value for a key. If the key does not exist, it returns the default value instead.

v1.1.2

Toggle v1.1.2's commit message
Add .editorconfig (elliotchance#9)

v1.1.1

Toggle v1.1.1's commit message
Add performance comparison between orderedmap and go built-in map (el…

…liotchance#6)

v1.1.0

Toggle v1.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Added bidirectional iterator (elliotchance#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

Toggle v1.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Adding Travis CI (elliotchance#1)

v1.0.0

Toggle v1.0.0's commit message
Basic functions

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