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

Method Uint64s

binder.go:867–869  ·  view source on GitHub ↗

Uint64s binds parameter to slice of uint64

(sourceParam string, dest *[]uint64)

Source from the content-addressed store, hash-verified

865
866// Uint64s binds parameter to slice of uint64
867func (b *ValueBinder) Uint64s(sourceParam string, dest *[]uint64) *ValueBinder {
868 return b.uintsValue(sourceParam, dest, false)
869}
870
871// MustUint64s requires parameter value to exist to bind to uint64 slice variable. Returns error when value does not exist
872func (b *ValueBinder) MustUint64s(sourceParam string, dest *[]uint64) *ValueBinder {

Calls 1

uintsValueMethod · 0.95