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

Method Uint64

binder.go:689–691  ·  view source on GitHub ↗

Uint64 binds parameter to uint64 variable

(sourceParam string, dest *uint64)

Source from the content-addressed store, hash-verified

687
688// Uint64 binds parameter to uint64 variable
689func (b *ValueBinder) Uint64(sourceParam string, dest *uint64) *ValueBinder {
690 return b.uintValue(sourceParam, dest, 64, false)
691}
692
693// MustUint64 requires parameter value to exist to bind to uint64 variable. Returns error when value does not exist
694func (b *ValueBinder) MustUint64(sourceParam string, dest *uint64) *ValueBinder {

Calls 1

uintValueMethod · 0.95