Merge release Beta 1 into stable #21

Merged
Felisp merged 35 commits from dev into stable 2024-08-13 17:48:09 +02:00
Showing only changes of commit 618304f5eb - Show all commits

View file

@ -68,3 +68,11 @@
(map? default-val)) ; If only one is, we don't care cus then it's just assigment
{k (map-apply-defaults conf-val default-val)}
{k (nil?-else conf-val default-val)})))))
(defn fmap [f m]
"Applies function [f] to every key and value in map [m]
Function signature should be (f [key value])."
(into
(empty m)
(for [[key val] m]
[key (f key val)])))