patchState method

C patchState(
  1. MatexBaseCoreState partialState
)

Implementation

C patchState(MatexBaseCoreState partialState) {
  differenceState = differenceState.copyWithState(partialState);
  state = state.copyWithState(partialState);
  result = null;

  return _checkStateValidity();
}