Skip to content
New issue

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

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

Already on GitHub? # to your account

remove old todo #1892

Merged
merged 1 commit into from
Aug 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions utils/bag/bag.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,6 @@ func (b *Bag[T]) Equals(other Bag[T]) bool {

// Mode returns the most common element in the bag and the count of that element.
// If there's a tie, any of the tied element may be returned.
// TODO for Stephen: Does the above violate an assumption made by Snowball?
// If the bag is empty, the zero value and 0 are returned.
func (b *Bag[T]) Mode() (T, int) {
var (
mode T
Expand Down