(namespace, operation, inputsJSON string)
| 343 | } |
| 344 | |
| 345 | func entryKey(namespace, operation, inputsJSON string) tupleKey { |
| 346 | return tupleKey{ |
| 347 | namespace: namespace, |
| 348 | operation: operation, |
| 349 | inputsJSON: inputsJSON, |
| 350 | } |
| 351 | } |
| 352 | |
| 353 | func (l *Lockfile) sortedEntries() []lockEntry { |
| 354 | entries := make([]lockEntry, 0, len(l.entries)) |