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

Method Int64

binder.go:471–473  ·  view source on GitHub ↗

Int64 binds parameter to int64 variable

(sourceParam string, dest *int64)

Source from the content-addressed store, hash-verified

469
470// Int64 binds parameter to int64 variable
471func (b *ValueBinder) Int64(sourceParam string, dest *int64) *ValueBinder {
472 return b.intValue(sourceParam, dest, 64, false)
473}
474
475// MustInt64 requires parameter value to exist to bind to int64 variable. Returns error when value does not exist
476func (b *ValueBinder) MustInt64(sourceParam string, dest *int64) *ValueBinder {

Calls 1

intValueMethod · 0.95