mirror of
https://github.com/rjNemo/underscore
synced 2026-06-06 10:36:43 +00:00
Created a Tuple struct as some of the new functions require you to return a new slice with two fields which is the result of the new functions Created the Join, JoinProjection, Range, SumMap, Zip functions, ecah fuction is documented with how it works and had a unit test or maybe more
6 lines
70 B
Go
6 lines
70 B
Go
package underscore
|
|
|
|
type Tuple[L, R any] struct {
|
|
Left L
|
|
Right R
|
|
}
|