Definition at line 170 of file dc_hash.f90.
 
◆ dchashget0()
  
  | 
        
          | subroutine dc_hash::get::dchashget0 | ( | type(hash), intent(inout) | hashv, |  
          |  |  | character(*), intent(in) | key, |  
          |  |  | character(*), intent(out) | value, |  
          |  |  | logical, intent(out), optional | found |  
          |  | ) |  |  |  | private | 
 
Definition at line 326 of file dc_hash.f90.
  336     type(
hash), 
intent(inout) :: hashv
   337     character(*), 
intent(in)  :: key
   338     character(*), 
intent(out) :: value
   339     logical, 
intent(out), 
optional :: found
   340     character(STRING) :: search_key, search_value
   345       call dchashnext(hashv, search_key, search_value, end)
   348         if (
present(found)) found = .false.
   352       if (trim(search_key) == trim(key)) 
then   354         if (
present(found)) found = .true.
 
integer, parameter, public string
文字列を保持する 文字型変数の種別型パラメタ 
 
 
The documentation for this interface was generated from the following file: