MCPcopy Create free account
hub / github.com/dbProjectRED/redimo.go / IntValue

Struct IntValue

values.go:51–53  ·  view source on GitHub ↗

IntValue is a convenience value wrapper for an int64, usable as IntValue{42}

Source from the content-addressed store, hash-verified

49// IntValue is a convenience value wrapper for an int64, usable as
50// IntValue{42}
51type IntValue struct {
52 I int64
53}
54
55func (iv IntValue) ToAV() dynamodb.AttributeValue {
56 return dynamodb.AttributeValue{N: aws.String(strconv.FormatInt(iv.I, 10))}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected