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

Method Uint16

binder.go:709–711  ·  view source on GitHub ↗

Uint16 binds parameter to uint16 variable

(sourceParam string, dest *uint16)

Source from the content-addressed store, hash-verified

707
708// Uint16 binds parameter to uint16 variable
709func (b *ValueBinder) Uint16(sourceParam string, dest *uint16) *ValueBinder {
710 return b.uintValue(sourceParam, dest, 16, false)
711}
712
713// MustUint16 requires parameter value to exist to bind to uint16 variable. Returns error when value does not exist
714func (b *ValueBinder) MustUint16(sourceParam string, dest *uint16) *ValueBinder {

Calls 1

uintValueMethod · 0.95