We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
where
At the moment boundaries can be set only within <T: ..>, it's not possible to set boundaries with where clause.
<T: ..>
One particular usecase where it would be helpful is this one:
#[nutype( validate(predicate = |c| c.into_iter().next().is_some()), )] struct NonEmpty<C>(C) where for<'a> &'a C: IntoIterator;
This would allow to define NonEmpty collection, regardless of what kind of collection it is.
NonEmpty
See also #130 (comment)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
At the moment boundaries can be set only within
<T: ..>
, it's not possible to set boundaries withwhere
clause.One particular usecase where it would be helpful is this one:
This would allow to define
NonEmpty
collection, regardless of what kind of collection it is.See also #130 (comment)
The text was updated successfully, but these errors were encountered: