1
0
Fork 0
mirror of https://github.com/tmrts/go-patterns.git synced 2025-04-04 21:53:38 +03:00

behavioral/visitor: marked visitor as implement in README

This commit is contained in:
Serge Bishyr 2017-10-18 16:34:33 +03:00
parent 8cbceb99c5
commit 7ba8e00dff

View file

@ -45,7 +45,7 @@ A curated collection of idiomatic design & application patterns for Go language.
| [State](/behavioral/state.md) | Encapsulates varying behavior for the same object based on its internal state | ✘ |
| [Strategy](/behavioral/strategy.md) | Enables an algorithm's behavior to be selected at runtime | ✔ |
| [Template](/behavioral/template.md) | Defines a skeleton class which defers some methods to subclasses | ✘ |
| [Visitor](/behavioral/visitor.md) | Separates an algorithm from an object on which it operates | |
| [Visitor](/behavioral/visitor.md) | Separates an algorithm from an object on which it operates | |
## Synchronization Patterns