(c Client)
| 66 | } |
| 67 | |
| 68 | func (ln listNode) keyAV(c Client) map[string]dynamodb.AttributeValue { |
| 69 | avm := map[string]dynamodb.AttributeValue{} |
| 70 | avm[c.pk] = StringValue{ln.key}.ToAV() |
| 71 | avm[c.sk] = StringValue{ln.address}.ToAV() |
| 72 | |
| 73 | return avm |
| 74 | } |
| 75 | |
| 76 | func (ln listNode) next(side LSide) (address string) { |
| 77 | switch side { |
no test coverage detected