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

Method Int32

binder.go:481–483  ·  view source on GitHub ↗

Int32 binds parameter to int32 variable

(sourceParam string, dest *int32)

Source from the content-addressed store, hash-verified

479
480// Int32 binds parameter to int32 variable
481func (b *ValueBinder) Int32(sourceParam string, dest *int32) *ValueBinder {
482 return b.intValue(sourceParam, dest, 32, false)
483}
484
485// MustInt32 requires parameter value to exist to bind to int32 variable. Returns error when value does not exist
486func (b *ValueBinder) MustInt32(sourceParam string, dest *int32) *ValueBinder {

Calls 1

intValueMethod · 0.95