json_file_print_to_console Subroutine

private subroutine json_file_print_to_console(me)

Arguments

Type IntentOptional AttributesName
class(json_file), intent(inout) :: me

Description

Print the JSON file to the console.

Calls

proc~~json_file_print_to_console~~CallsGraph proc~json_file_print_to_console json_file_print_to_console proc~json_value_print json_value_print proc~json_file_print_to_console->proc~json_value_print proc~json_value_print->proc~json_value_print interface~throw_exception throw_exception proc~json_value_print->interface~throw_exception proc~real_to_string real_to_string proc~json_value_print->proc~real_to_string proc~json_count json_count proc~json_value_print->proc~json_count proc~integer_to_string integer_to_string proc~json_value_print->proc~integer_to_string none~write_it write_it proc~json_value_print->none~write_it proc~json_throw_exception json_throw_exception interface~throw_exception->proc~json_throw_exception proc~compact_real_string compact_real_string proc~real_to_string->proc~compact_real_string
Help

Variables

TypeVisibility AttributesNameInitial
character(kind=CK,len=:), public, allocatable:: dummy

Source Code

    subroutine json_file_print_to_console(me)

    implicit none

    class(json_file),intent(inout)  :: me

    character(kind=CK,len=:),allocatable :: dummy

    call json_value_print(me%p,iunit=output_unit,str=dummy,indent=1,colon=.true.)

    end subroutine json_file_print_to_console