feat(Go-Tool):2020/12/14:添加validator.v8源码解析和使用示例

This commit is contained in:
Huangzj
2020-12-14 15:15:58 +08:00
parent 23d7d6e226
commit fa31b23cca
51 changed files with 4619 additions and 1662 deletions
+4 -3
View File
@@ -2,9 +2,10 @@ package linq
// Union produces the set union of two collections.
//
// This method excludes duplicates from the return set. This is different
// behavior to the Concat method, which returns all the elements in the input
// collection including duplicates.
// This method excludes duplicates from the return set.
// This is different behavior to the Concat method,
// which returns all the elements in the input collection
// including duplicates.
func (q Query) Union(q2 Query) Query {
return Query{
Iterate: func() Iterator {