MCPcopy Create free account
hub / github.com/convox/rack / UpdateMathMin

Function UpdateMathMin

provider/aws/lambda/formation/handler/math.go:84–93  ·  view source on GitHub ↗
(req Request)

Source from the content-addressed store, hash-verified

82}
83
84func UpdateMathMin(req Request) (string, map[string]string, error) {
85 val, err := mathMin(req)
86 if err != nil {
87 return "invalid", nil, err
88 }
89
90 return req.PhysicalResourceId, map[string]string{
91 "Value": val,
92 }, nil
93}
94
95func mathMax(req Request) (string, error) {
96 x, y, err := parseXY(req)

Callers 1

HandleMathMinFunction · 0.85

Calls 1

mathMinFunction · 0.85

Tested by

no test coverage detected