sourcery_m.F90 Source File


This file depends on

sourcefile~~sourcery_m.f90~~EfferentGraph sourcefile~sourcery_m.f90 sourcery_m.F90 sourcefile~sourcery_bin_m.f90 sourcery_bin_m.f90 sourcefile~sourcery_m.f90->sourcefile~sourcery_bin_m.f90 sourcefile~sourcery_co_object_m.f90 sourcery_co_object_m.f90 sourcefile~sourcery_m.f90->sourcefile~sourcery_co_object_m.f90 sourcefile~sourcery_command_line_m.f90 sourcery_command_line_m.f90 sourcefile~sourcery_m.f90->sourcefile~sourcery_command_line_m.f90 sourcefile~sourcery_data_partition_m.f90 sourcery_data_partition_m.f90 sourcefile~sourcery_m.f90->sourcefile~sourcery_data_partition_m.f90 sourcefile~sourcery_file_m.f90 sourcery_file_m.f90 sourcefile~sourcery_m.f90->sourcefile~sourcery_file_m.f90 sourcefile~sourcery_formats_m.f90 sourcery_formats_m.F90 sourcefile~sourcery_m.f90->sourcefile~sourcery_formats_m.f90 sourcefile~sourcery_object_m.f90 sourcery_object_m.f90 sourcefile~sourcery_m.f90->sourcefile~sourcery_object_m.f90 sourcefile~sourcery_oracle_m.f90 sourcery_oracle_m.f90 sourcefile~sourcery_m.f90->sourcefile~sourcery_oracle_m.f90 sourcefile~sourcery_string_m.f90 sourcery_string_m.f90 sourcefile~sourcery_m.f90->sourcefile~sourcery_string_m.f90 sourcefile~sourcery_test_description_m.f90 sourcery_test_description_m.F90 sourcefile~sourcery_m.f90->sourcefile~sourcery_test_description_m.f90 sourcefile~sourcery_test_m.f90 sourcery_test_m.f90 sourcefile~sourcery_m.f90->sourcefile~sourcery_test_m.f90 sourcefile~sourcery_test_result_m.f90 sourcery_test_result_m.f90 sourcefile~sourcery_m.f90->sourcefile~sourcery_test_result_m.f90 sourcefile~sourcery_units_m.f90 sourcery_units_m.f90 sourcefile~sourcery_m.f90->sourcefile~sourcery_units_m.f90 sourcefile~sourcery_user_defined_collectives_m.f90 sourcery_user_defined_collectives_m.f90 sourcefile~sourcery_m.f90->sourcefile~sourcery_user_defined_collectives_m.f90 sourcefile~sourcery_vector_test_description_m.f90 sourcery_vector_test_description_m.f90 sourcefile~sourcery_m.f90->sourcefile~sourcery_vector_test_description_m.f90 sourcefile~sourcery_data_partition_m.f90->sourcefile~sourcery_bin_m.f90 sourcefile~sourcery_file_m.f90->sourcefile~sourcery_string_m.f90 sourcefile~sourcery_oracle_m.f90->sourcefile~sourcery_object_m.f90 sourcefile~sourcery_test_description_m.f90->sourcefile~sourcery_string_m.f90 sourcefile~sourcery_test_description_m.f90->sourcefile~sourcery_test_result_m.f90 sourcefile~sourcery_test_m.f90->sourcefile~sourcery_test_result_m.f90 sourcefile~sourcery_test_result_m.f90->sourcefile~sourcery_string_m.f90 sourcefile~sourcery_vector_test_description_m.f90->sourcefile~sourcery_string_m.f90 sourcefile~sourcery_vector_test_description_m.f90->sourcefile~sourcery_test_result_m.f90

Files dependent on this one

sourcefile~~sourcery_m.f90~~AfferentGraph sourcefile~sourcery_m.f90 sourcery_m.F90 sourcefile~sourcery_string_s.f90 sourcery_string_s.f90 sourcefile~sourcery_string_s.f90->sourcefile~sourcery_m.f90

Source Code

module sourcery_m
  !! export all public entities from every other sourcery module
  use sourcery_command_line_m, only : command_line_t
  use sourcery_data_partition_m, only : data_partition_t
  use sourcery_bin_m, only : bin_t
  use sourcery_formats_m, only : csv, cscv, separated_values
  use sourcery_file_m, only : file_t
  use sourcery_string_m, only : string_t, operator(.cat.)
  use sourcery_test_m, only : test_t, test_description_substring
  use sourcery_test_description_m, only : test_description_t, test_function_i
  use sourcery_test_result_m, only : test_result_t
  use sourcery_vector_test_description_m, only : vector_test_description_t, vector_function_strategy_t
  use sourcery_user_defined_collectives_m, only : co_all

  !! legacy modules (likely to be removed in a future release):
  use sourcery_object_m, only : object_t
  use sourcery_co_object_m, only : co_object
  use sourcery_oracle_m, only : oracle_t
  use sourcery_units_m

  implicit none

end module sourcery_m