Definition at line 233 of file dc_hash.f90.
◆ dchashputline0()
| subroutine dc_hash::putline::dchashputline0 |
( |
type(hash), intent(in) | hashv | ) |
|
ハッシュの内容を標準出力に出力
hashv の内容を標準出力に表示します. 主にデバッグ用途に使用します.
- Parameters
-
Definition at line 475 of file dc_hash.f90.
478 implicit none
479 type(HASH), intent(in) :: hashv
480 type(HASH) :: hashv_tmp
481 character(len = STRING):: key, value
482 logical:: end
483 continue
484 hashv_tmp = hashv
485
486 call printf(6,
'#<HASH:: ')
487 call dchashrewind(hashv_tmp)
488 do
489 call dchashnext(hashv_tmp, key, value, end)
490 if (end) exit
491 call printf(6,
' "%c" -> "%c",', &
492 & c1=trim(key), c2=trim(value))
493 enddo
495
character(string) function, public joinchar(carray, expr)
integer, parameter, public string
文字列を保持する 文字型変数の種別型パラメタ
The documentation for this interface was generated from the following file: