Vivek Bharath Akupatni
Vivek Bharath Akupatni
Thanks for the response. I will look into your suggestions. Do you think adding support for this in the future is a good idea?
All the four links are broken
May be relevant: https://github.com/ruby/rdoc/issues/618
Makes sense I would prefer `FilterUnique` and `FilterUniqueBy`. For `FilterUnique`, can't we maintain the order by looking for the current element in map and it doesn't exist, add it and...
>As for the signatures, it's fine to return iter.Seq but the argument iterators should be func(func(V) bool) so that Go's type system allows any type alias of iter.Seq to be...
Example: ```golang type student struct { id int class string } membership := []student{ {id: 1, class: "CS"}, {id: 1, class: "Math"}, {id: 100, class: "Math"}, } uniqueStudents := FilterUniqueBy(slices.Values(membership),...
I did some research for other languages. Posting here for future reference: ### Java * [distinct()](https://docs.oracle.com/en/java/javase/22/docs/api/java.base/java/util/stream/Stream.html#distinct()). Uses `Object.equals` that is defined on each object to do comparison. ### Python *...
Yeah planning to do next couple of weeks.
Example: See highlighted portion the links are not clickable  Comes from https://raw.githubusercontent.com/ruby/csv/master/NEWS.md
Yes. I will make a PR to fix them. Thank you for quick response.