trySetField method
Implementation
bool trySetField(K key, V value) {
if (!key.testAccess(this)) return false;
key.setIn(this, value);
return true;
}
bool trySetField(K key, V value) {
if (!key.testAccess(this)) return false;
key.setIn(this, value);
return true;
}