From 295c36c00a87b2a76026cbd651c8325df4d1736f Mon Sep 17 00:00:00 2001 From: Sakis Kasampalis Date: Sat, 6 Sep 2014 19:41:52 +0200 Subject: [PATCH] removed iterator from the index --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 35e83733..87b467c5 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,6 @@ Current Patterns: | [factory_method](factory_method.py) | delegate a specialized function/method to create instances | | [flyweight](flyweight.py) | transparently reuse existing instances of objects with similar/identical state | | [graph_search](graph_search.py) | (graphing algorithms, not design patterns) | -| [iterator](iterator.py) | structure repeated, identical calls as a generator | | [mediator](mediator.py) | an object that knows how to connect other objects and act as a proxy | | [memento](memento.py) | generate an opaque token that can be used to go back to a previous state | | [mvc](mvc.py) | model<->view<->controller (non-strict relationships) |