underscore/tuple.go
Ruidy fbf58eff42
Refresh documentation (#39)
* minor documentation fixes

* fix Hugo warnings

* add openssf badge
2024-12-03 09:29:53 +01:00

8 lines
161 B
Go

package underscore
// Tuple is a generic tuple type.
// It is used to return multiple values from a function.
type Tuple[L, R any] struct {
Left L
Right R
}