chore: simplify mapreduce (#1401)

This commit is contained in:
Kevin Wan
2022-01-01 19:24:35 +08:00
committed by GitHub
parent 8e9110cedf
commit fe1da14332
2 changed files with 8 additions and 9 deletions

View File

@@ -4,8 +4,8 @@ package lang
var Placeholder PlaceholderType
type (
// GenericType can be used to hold any type.
GenericType = interface{}
// AnyType can be used to hold any type.
AnyType = interface{}
// PlaceholderType represents a placeholder type.
PlaceholderType = struct{}
)