Skip to content

Commit 51fe551

Browse files
committed
Clean up
1 parent 90ea760 commit 51fe551

116 files changed

Lines changed: 28 additions & 4266 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -2,37 +2,37 @@
22

33
## Types of Patterns
44

5-
1. [Behavioral](behavioral/README.md) ([Wiki](https://en.wikipedia.org/wiki/Behavioral_pattern))
6-
1. [Creational](creational/README.md) ([Wiki](https://en.wikipedia.org/wiki/Creational_pattern))
7-
1. [Structural](structural/README.md) ([Wiki](https://en.wikipedia.org/wiki/Structural_pattern))
5+
1. Behavioral ([Wiki](https://en.wikipedia.org/wiki/Behavioral_pattern))
6+
1. Creational ([Wiki](https://en.wikipedia.org/wiki/Creational_pattern))
7+
1. Structural ([Wiki](https://en.wikipedia.org/wiki/Structural_pattern))
88

99
## Template List
1010

11-
Template name | Type | Status | Links |
12-
:---------------------------------------------------------------------------|:----------:|--------------:|:----------------------------------------------------------------------|
13-
[Abstract Factory](creational/abstract%20factory/README.md) | Creational | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Abstract_factory_pattern) |
14-
[Adapter](structural/adapter/README.md) | Structural | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Adapter_pattern) |
15-
[Bridge](structural/bridge/README.md) | Structural | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Bridge_pattern) |
16-
[Builder](creational/builder/README.md) | Creational | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Builder_pattern) |
17-
[Chain of Responsibility](behavioral/chain%20of%20responsibility/README.md) | Behavioral | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Chain-of-responsibility_pattern) |
18-
[Command](behavioral/command/README.md) | Behavioral | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Command_pattern) |
19-
[Composite](structural/composite/README.md) | Structural | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Composite_pattern) |
20-
[Decorator](structural/decorator/README.md) | Structural | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Decorator_pattern) |
21-
[Facade](structural/facade/README.md) | Structural | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Facade_pattern) |
22-
[Factory Method](creational/factory%20method/README.md) | Creational | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Factory_method_pattern) |
23-
[Flyweight](structural/flyweight/README.md) | Structural | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Flyweight_pattern) |
24-
Interpreter | Behavioral | *Not started* | [Wiki](https://en.wikipedia.org/wiki/Interpreter_pattern) |
25-
Iterator | Behavioral | *Not started* | [Wiki](https://en.wikipedia.org/wiki/Iterator_pattern) |
26-
Mediator | Behavioral | *Not started* | [Wiki](https://en.wikipedia.org/wiki/Mediator_pattern) |
27-
Memento | Behavioral | *Not started* | [Wiki](https://en.wikipedia.org/wiki/Memento_pattern) |
28-
[Prototype](creational/prototype/README.md) | Creational | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Prototype_pattern) |
29-
[Proxy](structural/proxy/README.md) | Structural | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Proxy_pattern) |
30-
Observer | Behavioral | *Not started* | [Wiki](https://en.wikipedia.org/wiki/Observer_pattern) |
31-
[Singleton](creational/singleton/README.md) | Creational | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Singleton_pattern) |
32-
State | Behavioral | *Not started* | [Wiki](https://en.wikipedia.org/wiki/State_pattern) |
33-
Strategy | Behavioral | *Not started* | [Wiki](https://en.wikipedia.org/wiki/Strategy_pattern) |
34-
Template Method | Behavioral | *Not started* | [Wiki](https://en.wikipedia.org/wiki/Template_method_pattern) |
35-
Visitor | Behavioral | *Not started* | [Wiki](https://en.wikipedia.org/wiki/Visitor_pattern) |
11+
Template name | Type | Status | Links |
12+
:-----------------------|:----------:|--------------:|:----------------------------------------------------------------------|
13+
Abstract Factory | Creational | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Abstract_factory_pattern) |
14+
Adapter | Structural | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Adapter_pattern) |
15+
Bridge | Structural | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Bridge_pattern) |
16+
Builder | Creational | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Builder_pattern) |
17+
Chain of Responsibility | Behavioral | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Chain-of-responsibility_pattern) |
18+
Command | Behavioral | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Command_pattern) |
19+
Composite | Structural | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Composite_pattern) |
20+
Decorator | Structural | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Decorator_pattern) |
21+
Facade | Structural | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Facade_pattern) |
22+
Factory Method | Creational | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Factory_method_pattern) |
23+
Flyweight | Structural | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Flyweight_pattern) |
24+
Interpreter | Behavioral | *Not started* | [Wiki](https://en.wikipedia.org/wiki/Interpreter_pattern) |
25+
Iterator | Behavioral | *Not started* | [Wiki](https://en.wikipedia.org/wiki/Iterator_pattern) |
26+
Mediator | Behavioral | *Not started* | [Wiki](https://en.wikipedia.org/wiki/Mediator_pattern) |
27+
Memento | Behavioral | *Not started* | [Wiki](https://en.wikipedia.org/wiki/Memento_pattern) |
28+
Prototype | Creational | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Prototype_pattern) |
29+
Proxy | Structural | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Proxy_pattern) |
30+
Observer | Behavioral | *Not started* | [Wiki](https://en.wikipedia.org/wiki/Observer_pattern) |
31+
Singleton | Creational | *Finished* | [Wiki](https://en.wikipedia.org/wiki/Singleton_pattern) |
32+
State | Behavioral | *Not started* | [Wiki](https://en.wikipedia.org/wiki/State_pattern) |
33+
Strategy | Behavioral | *Not started* | [Wiki](https://en.wikipedia.org/wiki/Strategy_pattern) |
34+
Template Method | Behavioral | *Not started* | [Wiki](https://en.wikipedia.org/wiki/Template_method_pattern) |
35+
Visitor | Behavioral | *Not started* | [Wiki](https://en.wikipedia.org/wiki/Visitor_pattern) |
3636

3737
## Useful links
3838

behavioral/README.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

behavioral/chain of responsibility/README.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

behavioral/chain of responsibility/car/Cargo.toml

Lines changed: 0 additions & 6 deletions
This file was deleted.

behavioral/chain of responsibility/car/README.md

Lines changed: 0 additions & 120 deletions
This file was deleted.

behavioral/chain of responsibility/car/src/garage.rs

Lines changed: 0 additions & 23 deletions
This file was deleted.

behavioral/chain of responsibility/car/src/handler.rs

Lines changed: 0 additions & 38 deletions
This file was deleted.

behavioral/chain of responsibility/car/src/lib.rs

Lines changed: 0 additions & 14 deletions
This file was deleted.

behavioral/chain of responsibility/car/src/main.rs

Lines changed: 0 additions & 17 deletions
This file was deleted.

behavioral/chain of responsibility/police_department/Cargo.toml

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)