summary refs log tree commit diff
path: root/lib/kvflip.fnl
blob: 25fc2227afe4678336546163210ae42ce3545fd1 (plain)
1
2
3
4
5
6
(fn kvflip [t]
  "takes a table of {key value} and returns a table of {value key}"
  (collect [k v (pairs t)] (values v k)))

{: kvflip}