This question is based upon the excellent answer here: https://stackoverflow.com/a/29835826/642697
var asciiValues: [UInt8] { compactMap(\.asciiValue) }
I'm hoping someone can explain the "\" notation and perhaps point me at the documentation for it as further reading?
The snippet below is how I have seen/used compactMap before. Are they the same?
var asciiValues: [UInt8] { compactMap { $0.asciiValue }}