(defn print-dataflow "Prints a dataflow, one cell per line" [df] (println) (let [f (fn [cell] (-> cell :name str))] (doseq [cell (sort-by f (:cells @df))] (prn cell))))
Comments top
No comments for print-dataflow. Log in to add a comment.