toInts method

Set<int> toInts()

Convert elements to truncated integers.

1.9, 2.9.toInts() returns 1, 2; 1.9, 2.9.toRounded() returns 2, 3.

Implementation

Set<int> toInts() {
  return h.toIntIterable(original: this).toSet();
}