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

Method Int8

binder.go:501–503  ·  view source on GitHub ↗

Int8 binds parameter to int8 variable

(sourceParam string, dest *int8)

Source from the content-addressed store, hash-verified

499
500// Int8 binds parameter to int8 variable
501func (b *ValueBinder) Int8(sourceParam string, dest *int8) *ValueBinder {
502 return b.intValue(sourceParam, dest, 8, false)
503}
504
505// MustInt8 requires parameter value to exist to bind to int8 variable. Returns error when value does not exist
506func (b *ValueBinder) MustInt8(sourceParam string, dest *int8) *ValueBinder {

Calls 1

intValueMethod · 0.95