Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Proposal: lo.OrElse() #423

Open
FGasper opened this issue Jan 30, 2024 · 0 comments
Open

Proposal: lo.OrElse() #423

FGasper opened this issue Jan 30, 2024 · 0 comments

Comments

@FGasper
Copy link

FGasper commented Jan 30, 2024

// OrElse returns the first value if it is a non-zero value,
// “or else” it returns the second.
func OrElse[T comparable](specimen T, ifZero T) {
	if specimen == *new(T) {
		return ifZero
	}

	return specimen
}

^^ Useful to replace zero values with some non-zero default.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant