MCPcopy Index your code
hub / github.com/labstack/echo / Int64s

Method Int64s

binder.go:639–641  ·  view source on GitHub ↗

Int64s binds parameter to slice of int64

(sourceParam string, dest *[]int64)

Source from the content-addressed store, hash-verified

637
638// Int64s binds parameter to slice of int64
639func (b *ValueBinder) Int64s(sourceParam string, dest *[]int64) *ValueBinder {
640 return b.intsValue(sourceParam, dest, false)
641}
642
643// MustInt64s requires parameter value to exist to bind to int64 slice variable. Returns error when value does not exist
644func (b *ValueBinder) MustInt64s(sourceParam string, dest *[]int64) *ValueBinder {

Calls 1

intsValueMethod · 0.95