gotools

所属分类:工具库
开发工具:GO
文件大小:0KB
下载次数:0
上传日期:2023-12-17 10:43:24
上 传 者sh-1993
说明:  go编程的标准库
(Standard library for go programming)

文件列表:
LICENSE
files.go
future.go
future_test.go
go.mod
go.sum
maps.go
maps_test.go
misc.go
misc_test.go
numbers.go
numbers_test.go
sets.go
sets_test.go
slices.go
slices_test.go

# gotools Functionality that ought to be part of the Go standard library and that are standard – particularly to functional programming languages. Examples are: - Concat to concatenate a number of slices into one big slice - Map to apply a function to all elements of a slice and returns a slice of the results) - Reduce to apply a function to elements of the slice, returning f(f(f(x1, x2), x3), x4)... - Sets (with standard functions such as intersections and unions) Other functions just have an awkward syntax (such as the sort.Slice function where the sorting function takes indices instead of instances). So I added a Sort function that I found easier to consume. Such functions are possible since generics are available in Go – i.e. version 1.18. My expectation is that some of this functionality will be provided by the Go standard library in the long run. The library is by no means complete. (I implemented what I needed rather than taking something like the Clojure standard library as a blueprint.) So functionality you love might be missing without rational reason. Feel free to request such functionality. All functionality is backed with tests and used. However, some parts could be of better efficiency. (Particularly, the implementation of sets is slower as the implementation in e.g. Java.) However, all functionality should be at least as good as what you can hack down on your own in a cup of hours. One goal of this library is also to provide /simple/ functionality. You should have no issues forking and maintaining this library by yourself in case you find my support no-efficient. Still, the current state is sufficient for myself.

近期下载者

相关文件


收藏者