hashList function

int hashList(
  1. Iterable<Object> arguments
)

Implementation

int hashList(Iterable<Object> arguments) {
  int result = 0;
  for (Object argument in arguments) {
    result = _Jenkins.combine(result, argument);
  }
  return _Jenkins.finish(result);
}