MCPcopy
hub / github.com/labstack/echo / Int16

Method Int16

binder.go:491–493  ·  view source on GitHub ↗

Int16 binds parameter to int16 variable

(sourceParam string, dest *int16)

Source from the content-addressed store, hash-verified

489
490// Int16 binds parameter to int16 variable
491func (b *ValueBinder) Int16(sourceParam string, dest *int16) *ValueBinder {
492 return b.intValue(sourceParam, dest, 16, false)
493}
494
495// MustInt16 requires parameter value to exist to bind to int16 variable. Returns error when value does not exist
496func (b *ValueBinder) MustInt16(sourceParam string, dest *int16) *ValueBinder {

Calls 1

intValueMethod · 0.95