Does the Go programming language, as of now, optimize tail calls? If not, does it at least optimize tail-recursive calls of a function to itself?
相关问题
- Golang mongodb aggregation
- How to flatten out a nested json structure in go
- how to install private repo using glide golang
- How to convert a string to a byte array which is c
- IntelliJ 2017.1.2 GOLANG debug does not work on br
相关文章
- Can I run a single test in a suite?
- How to check if a request was cancelled
- Is it possible to implement an interface with unex
- How to access value of first index of array in Go
- Embedded Interface
- How to represent an array with mixed types
- Common Lisp: Why does my tail-recursive function c
- go tutorial select statement
Everything you can find over the Internet, that "Go supports tailable recursions in some cases", and that was told in mailing list:
To get those cases you'd better dig into golang source, which is open.
It does not. Nor is there any plan to according to the core development team on the mailing list.