operator []= method
Implementation
operator []=(ProviderKey key, L result) {
_checkMutable();
if (_mainResponse != null) {
_otherResponses[_handledBy] = _mainResponse;
}
_mainResponse = result;
_handledBy = key;
}
operator []=(ProviderKey key, L result) {
_checkMutable();
if (_mainResponse != null) {
_otherResponses[_handledBy] = _mainResponse;
}
_mainResponse = result;
_handledBy = key;
}