@@ -0,0 +1,8 @@
package main
func If[T any](cond bool, vtrue, vfalse T) T {
if cond {
return vtrue
}
return vfalse
The note is not visible to the blocked user.