blog.golang.org
Resources curated from this publisher and indexed across appsec.fyi topic pages. Last item added: 2021-02-28.
| Date Added | Resource | Excerpt |
|---|---|---|
| 2021-02-28 2021 | The Laws of Reflection - The Go Blog | The content discusses the laws of reflection in Go, explaining how reflection functions, how to approach it conceptually, and how to effectively utilize it within Go programming. |
| 2021-02-28 2021 | Constants - The Go Blog | The blog post introduces the concept of constants in the Go programming language. Constants are values that do not change during the program's execution. They are declared using the "const" keyword and provide a way to define fixed values that remain constant throughout the program. Constants are useful for defining values that should not be altered, such as mathematical constants or configuration settings. The post likely covers how constants are declared, their benefits, and examples of how they can be used in Go programming. |
| 2021-02-28 2021 | Strings, bytes, runes and characters in Go - The Go Blog | The content discusses the functionality of strings in Go and provides guidance on their usage. It likely covers topics such as string manipulation, encoding, decoding, and other related operations in the Go programming language. |
| 2021-02-28 2021 | Go Slices: usage and internals - The Go Blog | The content discusses the usage and internal workings of Go slices. It explains how to use slices in Go programming and provides insights into their functionality. Slices are a fundamental data structure in Go that allow for flexible and efficient handling of collections of elements. Understanding how slices work is crucial for effective Go programming. |
| 2021-01-12 2021 | A Proposal for Adding Generics to Go - The Go Blog | The Go programming language is considering adding generics through a proposal in its language change process. This potential addition could enhance the language's capabilities and flexibility by allowing developers to write more reusable and efficient code. Generics would enable the creation of data structures and algorithms that can work with different data types without sacrificing performance or safety. The proposal is a significant step towards evolving Go to better meet the needs of its users and improve the overall development experience. |