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

Get() accepts negative index. #10

Merged
merged 2 commits into from
Aug 3, 2016
Merged

Get() accepts negative index. #10

merged 2 commits into from
Aug 3, 2016

Conversation

gammazero
Copy link
Contributor

Allow caller to retrieve items from the queue by specifying the number of places from the tail. Using Get(0) and Get(-1) is equivalent to Head() and Tail() often found in other queue implementations.

func (q *Queue) Get(i int) interface{} {
// If indexing backwards, convert to positive index.
if i < 0 {
i = q.count + i
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+=

@eapache
Copy link
Owner

eapache commented Aug 3, 2016

Thanks!

@eapache eapache merged commit d4bdc2c into eapache:master Aug 3, 2016
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.

2 participants