docs: Add tutorial link for Acyclic Visitor pattern (#525) (#1884)

This commit is contained in:
Anum Amin
2021-10-24 11:23:12 +05:00
committed by GitHub
parent da6d20e997
commit b80ac39e1f

View File

@ -138,6 +138,10 @@ This pattern can be used:
* When the visited class hierarchy will be frequently extended with new derivatives of the Element class.
* When the recompilation, relinking, retesting or redistribution of the derivatives of Element is very expensive.
## Tutorial
* [Acyclic Visitor Pattern Example](https://codecrafter.blogspot.com/2012/12/the-acyclic-visitor-pattern.html)
## Consequences
The good: