Going through MathLibrary.swift (chapter 5) I noticed the following simple function
static func identity() -> float4x4 {
matrix_identity_float4x4
}
but it surprised me because there was no return
keyword. Is this because there are no other statements as in simple closures? Or is something else going on?