mirror of
https://github.com/rjNemo/underscore
synced 2026-06-06 10:36:43 +00:00
8 lines
161 B
Go
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
|
|
}
|