2
我想在給定的Rebol函數中重新組織參數塊,以提供對函數所需參數的更全面理解。這些參數在Rebol的功能塊可延展的數據結構在Rebol的一個很好的例子:如何解析函數參數塊?
adjoin: func [
"Adjoins"
series [series!] "Series to adjoin"
joinee
/local other
][...]
但我需要的東西,更可預見的,使這個元數據的意義。我將如何獲得更符合的格式?例如:
[
; should include about value whether the about string is there or not
about none none "Adjoins"
argument series [series!] "Series to Adjoin"
argument joinee none none
option local none none
argument other none none
]
對transform方法或表示參數內容的最佳方式的任何想法都是最有幫助的。