Hi,

there is always the possibility of a macro.

    (defmacro defwidget
      [name & body]
      (let [[docstring [attrs _ contents] body]
            (if (string? (first body))
              [(first body) (second body) (nthnext body 2)]
              [nil (first body) (next body)])]
        `(defn ~name
           ~@(when docstring [docstring])
           [& args#]
           (let [[~attrs ~contents] (if (map? (first args#))
                                      [(first args#) (next args#)]
                                      [{} args#])]
             ~@body))))

Usage:

    (defwidget my-widget
      "Some widget."
      [attrs & contents]
      [:some [:hiccup attrs contents]])

Kind regards
Meikel

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to