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

{: flip}