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

Method Uint32

binder.go:699–701  ·  view source on GitHub ↗

Uint32 binds parameter to uint32 variable

(sourceParam string, dest *uint32)

Source from the content-addressed store, hash-verified

697
698// Uint32 binds parameter to uint32 variable
699func (b *ValueBinder) Uint32(sourceParam string, dest *uint32) *ValueBinder {
700 return b.uintValue(sourceParam, dest, 32, false)
701}
702
703// MustUint32 requires parameter value to exist to bind to uint32 variable. Returns error when value does not exist
704func (b *ValueBinder) MustUint32(sourceParam string, dest *uint32) *ValueBinder {

Calls 1

uintValueMethod · 0.95