isPure method

bool isPure()

Are every input Pure?

Implementation

bool isPure() {
  return _inputs.every((input) => input.isPure);
}