Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(tree_t), | intent(in) | :: | self | |||
integer, | intent(in) | :: | uni |
subroutine print_tree_wrap(self, uni) implicit none ! type(tree_node_t), intent(in) :: tree(:) class(tree_t), intent(in) :: self integer, intent(in) :: uni call print_tree_internal(self%nodes, self%top, uni) write(uni, *) '' end subroutine print_tree_wrap