홈페이지 : http://www.tclbuzz.com/v0/tmac/
Tmac은 Tcl의 매크로 기능입니다. 이를 통해 개발자는 애플리케이션의 특정 요구 사항에 따라 보다 간결한 코드를 작성할 수 있습니다. Tmac의 매크로 처리는 Tcl 코드가 구문 분석되기 전에 이루어지기 때문에 일반적으로 매크로에 대한 런타임 페널티는 없습니다. 실제로 매크로를 사용하면 평가 횟수를 줄이고, 모든 expr 인수가 중괄호를 사용하도록 하여 코드 속도를 쉽게 높일 수 있으며, 일반적으로 매크로에 내장되어 재사용할 수 있습니다.
Tmac is a macro facility for Tcl. It lets developers customize their use of Tcl so that they can write more concise code depending on specific needs in the application. Since Tmac processing takes place before the Tcl code is parsed, there is generally no runtime penalty for macros. In fact, macros could easily speed up code by reducing the number of evals, by ensuring that all expr arguments are braced, and generally making it easier to streamline or follow best practices because they can be embedded in macros and reused.
package require tmac
namespace import tmac::*
MAC-BLOCK t5 -parse simple a b\
{[expr [llength "Hey @a"] + [llength {@b, really!}] ] }
# puts stderr { <:t5 "how are you today mom?" {I am fine} :>}
return <:t5 "how are you today mom?" {I am fine} :>
'Tcl & Tk > 확장 패키지 (Extension Package)' 카테고리의 다른 글
ToolBar 0.2 (0) | 2025.04.03 |
---|---|
Combobox 2.3 (0) | 2025.04.03 |
Megawidget Library 0.9 (0) | 2025.04.03 |
Docking Framework v2.0 (0) | 2025.04.01 |
Containers 1.2 (0) | 2025.03.05 |