We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Existing documentation on master branch still refers to older version of gods before generics.
Example:
package main import aq "github.com/emirpasic/gods/queues/arrayqueue" // ArrayQueueExample to demonstrate basic usage of ArrayQueue func main() { queue := aq.New() // empty queue.Enqueue(1) // 1 queue.Enqueue(2) // 1, 2 _ = queue.Values() // 1, 2 (FIFO order) _, _ = queue.Peek() // 1,true _, _ = queue.Dequeue() // 1, true _, _ = queue.Dequeue() // 2, true _, _ = queue.Dequeue() // nil, false (nothing to deque) queue.Enqueue(1) // 1 queue.Clear() // empty queue.Empty() // true _ = queue.Size() // 0 }
This needs to updated for generics. I am glad to update the documentation via a PR as well if there is no concern.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Existing documentation on master branch still refers to older version of gods before generics.
Example:
This needs to updated for generics. I am glad to update the documentation via a PR as well if there is no concern.
The text was updated successfully, but these errors were encountered: