文件名称:bowen:实现Clojure协议的装饰器模式
文件大小:10KB
文件格式:ZIP
更新时间:2024-06-04 03:49:34
Clojure
鲍恩 为clojure协议实现。 您可以将其视为协议的中间件。 当我有一个包含多种方法的协议时,通常我想包装一个现有的实现,覆盖一些而非全部方法,例如: ( defprotocol Sheep ( baa [this]) ( eat [this]) ( walk-around [this])) ( deftype LoudSheep [decorated-sheep] Sheep ( baa [this] ( clojure.string/upper-case ( baa decorated-sheep)) ; Just delegate to the decorated instance ( eat [this] ( eat decorated-sheep)) ( walk-around [this]
【文件预览】:
bowen-master
----.gitignore(97B)
----src()
--------bowen()
----LICENSE(11KB)
----README.md(3KB)
----test()
--------bowen()
----project.clj(436B)