···114114 "Splits line with re and parses all longs out of the resulting split. Single argument returns a curried call with the specified re"
115115 ([re] (partial splarse re))
116116 ([re line]
117117- (->> (s/split line re) (mapv parse-long))))
117117+ (->> (s/split line re) (remove s/blank?) (mapv parse-long))))
118118119119(defn between?
120120 "Defaults to inclusive checking (0 with a min of 0 and max of 10 would return true)"