fromIterable static method

IntegerModulus fromIterable(
  1. Iterable<Identifierable> iterable
)

Implementation

static IntegerModulus fromIterable(Iterable<Identifierable> iterable) {

    final a = ListOfIdentifierable.fromIterable(iterable);

    final result = IntegerModulus(a);

    return result;

}