Skip to content

Instantly share code, notes, and snippets.

@henryw374
Created May 16, 2019 10:30
Show Gist options
  • Save henryw374/a4cc98552c73a40881e4f71c83c603c3 to your computer and use it in GitHub Desktop.
Save henryw374/a4cc98552c73a40881e4f71c83c603c3 to your computer and use it in GitHub Desktop.
clojure index-by
(ns corr.core
(:require [medley.core :as m]))
(defn index-by [f coll]
(->> coll
(group-by f)
(m/map-vals (fn [xs]
(assert (= 1 (count (take 2 xs))))
(first xs)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment