From f118b649ac07094de039fa5ae066c35ed24a1a4f Mon Sep 17 00:00:00 2001 From: ismayilmalik Date: Sat, 20 Jan 2018 13:43:47 +0300 Subject: [PATCH] modified readme --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 6731fc1..68d4d28 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,8 @@ - [Mediator](#mediator) - [Template](#template) - [Memento](#memento) + - [Interpretor](#interpretor) + - [Command](#command) - [Concurrency patterns](#concurrency-patterns) --- @@ -102,5 +104,11 @@ Define the skeleton of an algorithm in an operation, deferring some steps to sub ### Memento 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 Pattenrs for concurrent work and parallel execution in Go.