DEV Community

Emre Odabas
Emre Odabas

Posted on

Quick Guide: Go 1.18 Features

#go

With the Go 1.18 version, which is planned to be released in the first quarter of 2022, many new features are waiting for us.
This version will be one of the most critical packages of Go history and we will reach the beta version probably in a month. So what are these changes?

Image description

Type Parameters (Generics)

The long-awaited "Type Parameter" feature in Go is actually known as Generics in some other languages. With this feature, we can give dynamic types to our functions. Let's dive into a simple example and write a function that finds the minimum value of any two int variables.

func minInt(x int, y int) int {
   if x < y {
      return x
   } else {
      return y
   }
}
Enter fullscreen mode Exit fullscreen mode

When we need the same functionality for float32, we need to rewrite the same thing also for float32.

func minFloat(x float32, y float32) float32 {
   if x < y {
      return x
   } else {
      return y
   }
}
Enter fullscreen mode Exit fullscreen mode

With the power of Type Parameters, we could easily define a function that could get desired types of variables. For defining types, we also encounter a new operator called tilde ~. This operator actually returns us the interface of the type information, so we can make our type restrictions. Let's write the same min function that covers int and float32 types as below.

type OrderTypes interface { 
   ~int | ~float32 
}
func min[P OrderTypes](x, y P) P {
    if x < y {
      return x
    } else {
      return y
    }
}
Enter fullscreen mode Exit fullscreen mode

It seems pretty solid, right? Go is also proposed a constraints library that contains already defined type groups. For example, we could implement our function for all ordered types.

func min[P constraints.Ordered](x, y P) P {
    if x < y {
      return x
    } else {
      return y
    }
}
Enter fullscreen mode Exit fullscreen mode

Of course, the use of generics is not limited to this sample. It could be very useful especially in ORM-style problems that we generally create functions that work with multiple types. As well, you could check these examples shared by the Go team also give you some ideas. If you desire to watch the details, there is a great presentation the team made at GopherCon.
Apart from these, the online editor (playground) where we can experiment will also be useful. If you wish to try 1.18 in your own environment, you could download gotip and work with the active branch of Go.

Fuzzing Test

With the Golang 1.18 package, the "Fuzzing" feature will come into our lives. With this test library, which will be offered as beta, we will be able to automatically make random mutations of our inputs in unit tests.
As software developers, we sometimes miss unit tests edge cases. And this lack of data diversity could be abused and used in security leaks and vulnerabilities especially on critical libraries. We could prevent this situation using Fuzzing Test.
For implementing Fuzzing Test, you could wrap your unit tests with a method that name starts with the Fuzz prefix. You could also use the Go Testing page as a sample code.

func FuzzHex(f *testing.F) {
  for _, seed := range [][]byte{ {}, {0}, {9}, {0xa}, {0xf}, {1, 2, 3, 4}} {
    f.Add(seed)
  }
  f.Fuzz(func(t *testing.T, in []byte) {
    enc := hex.EncodeToString(in)
    out, err := hex.DecodeString(enc)
    if err != nil {
      t.Fatalf("%v: decode: %v", in, err)
    }
    if !bytes.Equal(in, out) {
      t.Fatalf("%v: not equal after round trip: %v", in, out)
    }
  })
}
Enter fullscreen mode Exit fullscreen mode

Workspaces

This feature comes to facilitates developers' jobs, who work on multiple modules at the same time. Although the module version can be changed with the replace command in go.mod version 1.17, it is often forgotten to clear these replace commands while committing the code. Inserting or removing that line every time is a very bothering thing to do for these developers.
With the Workspace feature, you could create a new file called go.work and write the replace command there. This file allows us to change modules specific to our working environment without touching the existing go.mod file. As an example, you could look at the property's proposed design page.

go 1.17

directory (
    ./baz // foo.org/bar/baz
    ./tools // golang.org/x/tools
)

replace golang.org/x/net => example.com/fork/net v1.4.5
Enter fullscreen mode Exit fullscreen mode

As a result, Go 1.18 comes with the useful Fuzzing and Workspaces features, along with the Generics feature that was discussed, talked and introduced more than a year. Apart from that, many improvements and fixes will also be in this version. You can follow the status of the version and what it contains via this link.

Image description


Related links

Latest comments (0)