Are there any functions that return just the first parameter while ignoring errors, similar to the "must" series functions? ```go func First[T any](value T, other any) T { return value } ```