2023-07-23 22:05:54 +02:00
|
|
|
// Copyright (c) 2023 IBM Corp.
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2023-07-07 22:31:06 +02:00
|
|
|
// Package tuple contains type definitions and functions for data structures for tuples of heterogenous types. For homogeneous types
|
|
|
|
// consider to use arrays for simplicity
|
|
|
|
package tuple
|
|
|
|
|
2024-02-08 08:41:51 +01:00
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
N "github.com/IBM/fp-go/number"
|
|
|
|
)
|
|
|
|
|
2023-08-18 22:15:26 +02:00
|
|
|
func Of[T1 any](t T1) Tuple1[T1] {
|
|
|
|
return MakeTuple1(t)
|
|
|
|
}
|
|
|
|
|
2023-09-13 15:04:19 +02:00
|
|
|
// First returns the first element of a [Tuple2]
|
2023-07-07 22:31:06 +02:00
|
|
|
func First[T1, T2 any](t Tuple2[T1, T2]) T1 {
|
|
|
|
return t.F1
|
|
|
|
}
|
|
|
|
|
2023-09-13 15:04:19 +02:00
|
|
|
// Second returns the second element of a [Tuple2]
|
2023-07-07 22:31:06 +02:00
|
|
|
func Second[T1, T2 any](t Tuple2[T1, T2]) T2 {
|
|
|
|
return t.F2
|
|
|
|
}
|
|
|
|
|
|
|
|
func Swap[T1, T2 any](t Tuple2[T1, T2]) Tuple2[T2, T1] {
|
|
|
|
return MakeTuple2(t.F2, t.F1)
|
|
|
|
}
|
|
|
|
|
2023-08-18 22:15:26 +02:00
|
|
|
func Of2[T1, T2 any](e T2) func(T1) Tuple2[T1, T2] {
|
2023-07-07 22:31:06 +02:00
|
|
|
return func(t T1) Tuple2[T1, T2] {
|
|
|
|
return MakeTuple2(t, e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func BiMap[E, G, A, B any](mapSnd func(E) G, mapFst func(A) B) func(Tuple2[A, E]) Tuple2[B, G] {
|
|
|
|
return func(t Tuple2[A, E]) Tuple2[B, G] {
|
|
|
|
return MakeTuple2(mapFst(First(t)), mapSnd(Second(t)))
|
|
|
|
}
|
|
|
|
}
|
2024-02-08 08:41:51 +01:00
|
|
|
|
|
|
|
// marshalJSON marshals the tuple into a JSON array
|
|
|
|
func tupleMarshalJSON(src ...any) ([]byte, error) {
|
|
|
|
return json.Marshal(src)
|
|
|
|
}
|
|
|
|
|
|
|
|
// tupleUnmarshalJSON unmarshals a JSON array into a tuple
|
|
|
|
func tupleUnmarshalJSON(data []byte, dst ...any) error {
|
|
|
|
var src []json.RawMessage
|
|
|
|
if err := json.Unmarshal(data, &src); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
l := N.Min(len(src), len(dst))
|
|
|
|
// unmarshal
|
|
|
|
for i := 0; i < l; i++ {
|
|
|
|
if err := json.Unmarshal(src[i], dst[i]); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// successfully decoded the tuple
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// tupleString converts a tuple to a string
|
|
|
|
func tupleString(src ...any) string {
|
|
|
|
l := len(src)
|
|
|
|
return fmt.Sprintf("Tuple%d[%s](%s)", l, fmt.Sprintf(strings.Repeat(", %T", l)[2:], src...), fmt.Sprintf(strings.Repeat(", %v", l)[2:], src...))
|
|
|
|
}
|