Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support set (theory) style operations #26

Open
ikitommi opened this issue Dec 3, 2015 · 0 comments
Open

Support set (theory) style operations #26

ikitommi opened this issue Dec 3, 2015 · 0 comments

Comments

@ikitommi
Copy link
Member

ikitommi commented Dec 3, 2015

At least union, intersection, difference. Should handle optional & required keys and values and handle incompatible types gracefully.

(st/union {:id s/Str, (s/optional-key :name) s/Str, :size (s/enum :S :M)}
          {:id s/Str, :name s/Str. :size (s/maybe (s/enum :S :M))})
; {:id s/Str
;  :name s/Str
;  :size (s/enum :S :M)}

(st/union {:id s/Str} {:id s/Int})
; FAIL

(st/union {:id s/Str} {:id s/Int} s/either)
; {:id (s/either s/Str s/Int)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant