This subroutine copies the data of a specified transition into the variables of another dfa_transition_t.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(dfa_transition_t), | intent(in) | :: | src | |||
type(dfa_transition_t), | intent(inout) | :: | dst |
pure subroutine copy_dfa_transition(src, dst) implicit none type(dfa_transition_t), intent(in) :: src type(dfa_transition_t), intent(inout) :: dst dst%c = src%c dst%dst = src%dst dst%nfa_set = src%nfa_set dst%own_j = src%own_j end subroutine copy_dfa_transition