checkIterableOfUint32<T extends Iterable<int> > static method
Check that every integer in iterable
is unsigned and of size 4
.
Implementation
static T checkIterableOfUint32<T extends Iterable<int>>(
T iterable, [
String? name,
]) {
return checkIterableOfUnsignedIntegerOfSize<T>(iterable, 4, name);
}