size_of_cs Function

private elemental function size_of_cs(arg)

Arguments

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

Return Value integer


Contents

Source Code


Source Code

  elemental integer function size_of_cs (arg)
    complex (kind_rs), intent(in) :: arg
    size_of_cs = c_sizeof(arg)
  end function size_of_cs