package
0.0.0-20241212013832-3e83a38c33ff
Repository: https://github.com/blackhorseya/golang-101.git
Documentation: pkg.go.dev

# Functions

NewBoldDecorator 用於創建 BoldDecorator 實例.
NewItalicDecorator 用於創建 ItalicDecorator 實例.

# Structs

BoldDecorator 是具體裝飾器,為 Text 添加加粗行為.
ItalicDecorator 是具體裝飾器,為 Text 添加斜體行為.
PlainText 是具體的組件,實現了 Text 接口.
TextDecorator 是裝飾器,實現了 Text 接口,並持有一個 Text 對象的引用.

# Interfaces

Text 定義一個組件接口.