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

Method BindWithDelimiter

binder.go:422–424  ·  view source on GitHub ↗

BindWithDelimiter binds parameter to destination by suitable conversion function. Delimiter is used before conversion to split parameter value to separate values

(sourceParam string, dest any, delimiter string)

Source from the content-addressed store, hash-verified

420// BindWithDelimiter binds parameter to destination by suitable conversion function.
421// Delimiter is used before conversion to split parameter value to separate values
422func (b *ValueBinder) BindWithDelimiter(sourceParam string, dest any, delimiter string) *ValueBinder {
423 return b.bindWithDelimiter(sourceParam, dest, delimiter, false)
424}
425
426// MustBindWithDelimiter requires parameter value to exist to bind destination by suitable conversion function.
427// Delimiter is used before conversion to split parameter value to separate values

Calls 1

bindWithDelimiterMethod · 0.95