size_of_cd Function

private elemental function size_of_cd(arg)

Arguments

Type IntentOptional Attributes Name
complex(kind=kind_rd), intent(in) :: arg

Return Value integer


Contents

Source Code


Source Code

  elemental integer function size_of_cd (arg)
    complex (kind_rd), intent(in) :: arg
    size_of_cd = c_sizeof(arg)
  end function size_of_cd