Maksym Snytchuk

Results 2 comments of Maksym Snytchuk

@xyluet I guess they know it because almost all methods here mutating the inputs ``` func Reverse[T any](collection []T) []T { length := len(collection) half := length / 2 for...

@xyluet I've found out this lib www.github.com/thoas/go-funk, not sure if it is much better, but at least "reverse" func isn't mutate an input array)