Warning will be like `@Nullable` / `@NotNull` in J...
# language-proposals
m
Warning will be like
@Nullable
/
@NotNull
in Java. If a certain number of elements is required, failing to supply them must be an error.
like
@Nonempty vararg
Using both bounds would be better:
@Elements(min = 1, max = 100)