Every line of 'golang constructor' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Go code is secure.
923 func (this *DateTruncStr) Constructor() FunctionConstructor { 924 return func(operands ...Expression) Function { 925 return NewDateTruncStr(operands[0], operands[1]) 926 } 927 }
107 func (this *Like) Constructor() FunctionConstructor { 108 return func(operands ...Expression) Function { 109 return NewLike(operands[0], operands[1]) 110 } 111 }
85 func (this *LT) Constructor() FunctionConstructor { 86 return func(operands ...Expression) Function { 87 return NewLT(operands[0], operands[1]) 88 } 89 }
17 func NewConstructor() Constructor { 18 return _constructor{} 19 }
91 func (this *ObjectLength) Constructor() FunctionConstructor { 92 return func(operands ...Expression) Function { 93 return NewObjectLength(operands[0]) 94 } 95 }
186 func (this *ArrayAvg) Constructor() FunctionConstructor { 187 return func(operands ...Expression) Function { 188 return NewArrayAvg(operands[0]) 189 } 190 }
80 func (this *Sub) Constructor() FunctionConstructor { 81 return func(operands ...Expression) Function { 82 return NewSub(operands[0], operands[1]) 83 } 84 }