Table of Contents

Go - Channel

About

A channel is a communication mechanism that allows one goroutine to pass values of a specified type to another goroutine.

Management

Receive

v, ok = <-ch

where;