Delete removes a key-value pair from the State.
(key string)
| 60 | |
| 61 | // Delete removes a key-value pair from the State. |
| 62 | func (s *State) Delete(key string) { |
| 63 | s.dependencies.Delete(key) |
| 64 | } |
| 65 | |
| 66 | // Reset resets the State by removing all keys. |
| 67 | func (s *State) Reset() { |