go-iterator
go
go-iterator | go | |
---|---|---|
2 | 2,136 | |
5 | 122,633 | |
- | 0.8% | |
0.0 | 10.0 | |
almost 2 years ago | 5 days ago | |
Go | Go | |
- | BSD 3-clause "New" or "Revised" License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
go-iterator
-
1.18 is released
I already played around a bit wit the beta a while back and made an iterator library to get to know this new language. It's here for anyone interested: https://github.com/polyfloyd/go-iterator
-
iter: Generic, lazy iterators for Go 1.18
Regarding call chaining, it is still possible to chain things with operations that return different types, but they have to be done with functions instead of methods, so the result is still the same, just it's a little less readable. There is a generic iterator implementation by polyfloyd that doesn't support method chaining, but imo being able to chain iterators is one of their biggest strengths, since implementing lazy evaluation manually for a single operation isn't that difficult, its when you need to perform multiple kinds of manipulations that it gets messy.
go
-
Let's GO!
https://go.dev/doc/install will take you to the installer download. https://github.com/golang/go will get you the source code if you want to put it in a custom directory. $brew install golang will install handle all of it, for you.
- Testes de Integração no Symfony com Testcontainers
- Go proposal: new package providing weak pointers
-
Rust vs Go? Which should you choose in 2024
Go is an open-source programming language created at Google by Robert Griesemer, Rob Pike, and Ken Thompson in 2009. It's statically typed and similar to C++ in syntax. In an interview, Rob Pike said Go was created because of the difficulty associated with concurrency operations in C++ at the time.
-
Instalando asdf e Golang no Linux
Sobre o Go
-
Evolve your go workspace to a real monorepo
It's surprising the go tooling doesn't have a more native way to do something like this already. Upstream issue: https://github.com/golang/go/issues/50745
Like, go already has test caching (so "only test stuff that changed" shouldn't be necessary, that should just happen), and code formatting and such is already quite fast...
Overall, I feel like having another tool which parses my go source code is going to be slower than writing a Makefile to wrap:
go list -f '{{.Dir}}' -m | xargs -L1 go test ./...
-
How to start contributing to Utreexo
Utreexo is written in Go, so having a basic knowledge and understanding of Go programming language will be an added bonus. However, if you are new to Go, you can check out these resources to know more about the language, and to understand a few basic concepts of the language Effective Go, Learn Go.
-
Golang Security Review Guide
go =< 1.15 has an issue with Range header that can be exploited in some contexts https://github.com/golang/go/issues/40940
-
Duck Typing (Horror) in Go
You can learn from the Go codebase to get a feel of why this is useful:
https://github.com/golang/go/blob/master/src/cmd/go/internal...
-
Go automatically downloads a newer toolchain if needed
Go core team has admitted that Go toolchain 1.22.n versions break backward compatibility: https://github.com/golang/go/issues/66092
There is another breakage case: https://github.com/golang/go/issues/66070 and the team leader doesn't plan to fix it.
What are some alternatives?
gtools - Generic tools for go 1.18+
v - Simple, fast, safe, compiled language for developing maintainable software. Compiles itself in <1s with zero library dependencies. Supports automatic C => V translation. https://vlang.io
go-generic - A collection of experiments using Go Generics coming out in Go 1.18
TinyGo - Go compiler for small places. Microcontrollers, WebAssembly (WASM/WASI), and command-line tools. Based on LLVM.
client
zig - General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software.
iter - Package iter provides generic, lazy iterators, functions for producing them from primitive types, as well as functions and methods for transforming and consuming them.
Nim - Nim is a statically typed compiled systems programming language. It combines successful concepts from mature languages like Python, Ada and Modula. Its design focuses on efficiency, expressiveness, and elegance (in that order of priority).
lo - 💥 A Lodash-style Go library based on Go 1.18+ Generics (map, filter, contains, find...)
Angular - Deliver web apps with confidence 🚀
server
golang-developer-roadmap - Roadmap to becoming a Go developer in 2020