Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ordered map support #763

Merged
merged 1 commit into from
Sep 27, 2022
Merged

ordered map support #763

merged 1 commit into from
Sep 27, 2022

Conversation

gingerwizard
Copy link
Collaborator

closes #758

Allows maps to be inserted. Defers implementation of ordered map to the user - must simply comply with

type OrderedMap interface {
	Get(key interface{}) (interface{}, bool)
	Put(key interface{}, value interface{})
	Keys() <-chan interface{}
}

@gingerwizard gingerwizard self-assigned this Sep 26, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Ensure map keys are ordered prior to insert
2 participants