dfa_state_node__get_transition_top Function

private pure function dfa_state_node__get_transition_top(self) result(res)

This function returns the index of top transition in the list dfa_state_node_t has.

Type Bound

dfa_state_node_t

Arguments

Type IntentOptional Attributes Name
class(dfa_state_node_t), intent(in) :: self

Return Value integer


Source Code

   pure function dfa_state_node__get_transition_top (self) result(res)
      implicit none
      class(dfa_state_node_t), intent(in) :: self
      integer :: res

      res = self%tra_top
   end function dfa_state_node__get_transition_top