Vivek Bharath Akupatni

Results 11 comments of 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?

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 *...

Example: See highlighted portion the links are not clickable ![ruby_csv_example](https://user-images.githubusercontent.com/22565917/221874398-86727025-7a8f-4884-a92c-3f8804fcc3bd.png) 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.