v0.0.623
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 1m46s

This commit is contained in:
2026-02-03 11:33:03 +01:00
parent a373876d32
commit 8aaf2cd257
4 changed files with 48 additions and 15 deletions

7
langext/func.go Normal file
View File

@@ -0,0 +1,7 @@
package langext
func FuncChain[T any](v1 func(T) T, v2 func(T) T) func(T) T {
return func(t T) T {
return v2(v1(t))
}
}