MCPcopy
hub / github.com/ent/ent / Args

Method Args

dialect/sql/builder.go:3190–3198  ·  view source on GitHub ↗

Args appends a list of arguments to the builder.

(a ...any)

Source from the content-addressed store, hash-verified

3188
3189// Args appends a list of arguments to the builder.
3190func (b *Builder) Args(a ...any) *Builder {
3191 for i := range a {
3192 if i > 0 {
3193 b.Comma()
3194 }
3195 b.Arg(a[i])
3196 }
3197 return b
3198}
3199
3200// Argf appends an input argument to the builder
3201// with the given format. For example:

Callers 8

QueryErrMethod · 0.80
InMethod · 0.80
NotInMethod · 0.80
compositePMethod · 0.80
valueInOpFunction · 0.80
AppendMethod · 0.80
argsFunction · 0.80

Calls 2

CommaMethod · 0.95
ArgMethod · 0.95

Tested by 1