s/and will flow the conformed result to the next predicate so something 
like this should work:

(s/def ::xrange 
  (s/and (s/keys ::req [::x0 ::x1]) 
             (fn [{:keys [::x0 ::x1]}] (< x0 x1))))

On Wednesday, October 19, 2016 at 12:27:04 PM UTC-5, Mark Bastian wrote:
>
> Is it possible to specify relationships between spec values. For example:
>
> (s/def ::x0 (int-in 0 100))
> (s/def ::x1 (int-in 0 100))
>
> ;I now want to say something along the lines of (note that the :where is 
> totally made up - just conveying the intent):
> (s/def ::xrange (s/keys ::req [::x0 ::x1 :where  (< ::x0 ::x1)]))
>
> How might I do this?
>
> Thanks in advance!
> Mark
>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to