From f8addc607812290ebbdbb1560f336f56390d0d8d Mon Sep 17 00:00:00 2001
From: Shengyu Zhang
- Go 1.17 added conversions from slice to an array pointer.
+ Go 1.17 added conversions from slice to an array pointer.
Go 1.20 extends this to allow conversions from a slice to an array:
given a slice x, [4]byte(x) can now be written
instead of *(*[4]byte)(x).