Glossary coding Term Page

Decorator

the `@` syntax that layers shared pre/post logic onto functions

decorator #coding#python
Korean version

Related Concepts

Core Idea

Decorator is the @ syntax that layers shared pre/post logic onto functions. It usually makes the most sense alongside Higher-order function, Closure, functools.wraps.

Why It Matters Here

Mathbong reuses this term across python posts as shared vocabulary.

Posts Mentioning This Concept