1
0
mirror of https://github.com/IBM/fp-go.git synced 2025-08-10 22:31:32 +02:00

fix: add support for JSON serialization on tuples

Signed-off-by: Dr. Carsten Leue <carsten.leue@de.ibm.com>
This commit is contained in:
Dr. Carsten Leue
2023-07-28 15:50:03 +02:00
parent 903669c1bc
commit 9988ae27ef
23 changed files with 1159 additions and 32 deletions

View File

@@ -45,6 +45,6 @@ func ExampleLoggingWriter() {
fmt.Println(res())
// Output: {40 [Doubled 10 -> 20 Doubled 20 -> 40]}
// Output: Tuple2[int, []string](40, [Doubled 10 -> 20 Doubled 20 -> 40])
}