schema 2016-12-23

@bleadof has joined the channel

How do I define a schema where I have non-empty vector of type?

If I do

[(s/one s/Str)]
, it only allows one, but I’d like to have one or more, like + in regular expression?

you can do zero or more with [s/Str], but I don't know about non-empty