Skip to content
Snippets Groups Projects
Commit c22803fc authored by Allen Gilliland's avatar Allen Gilliland
Browse files

convenience function for converting a time-of-day value like "morning" into an...

convenience function for converting a time-of-day value like "morning" into an actual hour of the day value.
parent 32f93e81
No related branches found
No related tags found
No related merge requests found
......@@ -50,6 +50,12 @@
{:id "evening" :name "Evening" :realhour 20},
{:id "midnight" :name "Midnight" :realhour 0}])
(defn time-of-day->realhour
"Time-of-day to realhour"
[time-of-day]
(-> (filter (fn [tod] (= time-of-day (:id tod))) times-of-day)
(first)
(:realhour)))
;; ## Entity
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment