modified readme

This commit is contained in:
ismayilmalik 2018-01-20 13:43:47 +03:00
parent 84034ffeeb
commit f118b649ac

View File

@ -26,6 +26,8 @@
- [Mediator](#mediator) - [Mediator](#mediator)
- [Template](#template) - [Template](#template)
- [Memento](#memento) - [Memento](#memento)
- [Interpretor](#interpretor)
- [Command](#command)
- [Concurrency patterns](#concurrency-patterns) - [Concurrency patterns](#concurrency-patterns)
--- ---
@ -102,5 +104,11 @@ Define the skeleton of an algorithm in an operation, deferring some steps to sub
### Memento ### Memento
Without violating encapsulation, capture and externalize an object's internal state so that the object can be restored to this state later. Without violating encapsulation, capture and externalize an object's internal state so that the object can be restored to this state later.
### Interpretor
Given a language, define a representation for its grammar along with an interpreter that uses the representation to interpret sentences in the language.
### Command
Encapsulate a request as an object, thereby letting you parametrize clients with different requests, and support undoable operations.
## Concurrency patterns ## Concurrency patterns
Pattenrs for concurrent work and parallel execution in Go. Pattenrs for concurrent work and parallel execution in Go.