| title | Template |
|---|---|
| hide_title | true |
| description | describe the pattern in one sentence. |
import { CreationalPatternTag, BehavioralPatternTag, StructuralPatternTag, } from "@site/src/components/pattern-page-features/pattern-alias-and-tag"; import TwoColumnProsCons from "@site/src/components/pattern-page-features/pros-and-cons"; import TOCInline from "@theme/TOCInline"; import Tabs from "@theme/Tabs"; import TabItem from "@theme/TabItem"; import Applicability from "@site/src/components/pattern-page-features/applicability";
<CreationalPatternTag title="template" aliases={["optional aliases here"]} /> <BehavioralPatternTag title="template" aliases={["optional aliases here"]} /> <StructuralPatternTag title="template" aliases={["optional aliases here"]} />
Mention the pattern and hope that you can explain it in very little time.
this explains a problem someone may encounter in an application or system
this explains why this pattern can solve the problem we just stated
This is a really cool metaphor regarding this specific topic
Common practical scenarios for applying the X pattern include:
- a list of
- real world examples
<TwoColumnProsCons pros={["pros here"]} cons={["cons here"]} />
<Applicability items={[ { situation: "when to use", context: "example or how it helps", }, ]} />
To implement a X manually:
- Here's various steps
- To follow
- When implementing this pattern
//ts code here#python code here
:::note
This sample is to get a 'feel' for the pattern. The code itself may not reflect a correct implementation of the pattern.
:::
// code- Another pattern wiki link here
Information used in this page was collected from various reliable sources: