Fork me on GitHub
#schema
<
2016-12-23
>
bleadof09:12:11

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

bleadof09:12:09

If I do

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

frank15:12:51

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