Jeremy Bytes
byte-sized chunks of .NET
Tuesday, February 2, 2021
Go (golang) Anonymous Functions - Inlining Code for Goroutines
›
Anonymous functions in Go (golang) let us inline code rather than having a separate function. These are often used for goroutines (conc...
Monday, February 1, 2021
Go (golang) WaitGroup - Signal that a Concurrent Operation is Complete
›
In the last article, we looked at using channels in Go to get data from one concurrent operation to another ( Go (golang) Channels - M...
Sunday, January 31, 2021
Go (golang) Channels - Moving Data Between Concurrent Processes
›
Go has concurrency baked in to the language -- concurrent operations are referred to as " goroutines ". But concurrency is a ...
Thursday, January 14, 2021
Go (golang) Goroutines - Running Functions Asynchronously
›
I've been exploring the Go programming language (golang). A really cool feature is that running functions asynchronously is built r...
Wednesday, January 13, 2021
Go (golang) Multiple Return Values - Different from C# Tuples
›
One of the features that I like in the Go programming language (golang) is that functions can return multiple values. In C#, we can mim...
Tuesday, January 12, 2021
Go (golang) Error Handling - A Different Philosophy
›
In looking at Go (golang) as someone who has spent quite a bit of time in C#, I'm really intrigued by the approach to error handling. ...
1 comment:
‹
›
Home
View web version