Implementing Futures
This lesson describes Go’s “futures”, which allow the calculation of values beforehand using lazy evaluation and channels.
We'll cover the following...
Introduction
A related idea to lazy evaluation is that of futures. Sometimes, ...