StringVariableMap_get_length Function

public function StringVariableMap_get_length(this) result(length)

Arguments

Type IntentOptional Attributes Name
type(StringVariableMap), intent(in) :: this

Return Value integer


Calls

proc~~stringvariablemap_get_length~~CallsGraph proc~stringvariablemap_get_length StringVariableMap_get_length proc~stringvariablemap_serialize StringVariableMap_serialize proc~stringvariablemap_get_length->proc~stringvariablemap_serialize interface~serialize_buffer_length serialize_buffer_length proc~stringvariablemap_serialize->interface~serialize_buffer_length interface~serialize_intrinsic serialize_intrinsic proc~stringvariablemap_serialize->interface~serialize_intrinsic none~first~238 StringVariableMapIterator%first proc~stringvariablemap_serialize->none~first~238 none~ftn_begin~35 StringVariableMap%ftn_begin proc~stringvariablemap_serialize->none~ftn_begin~35 none~ftn_end~35 StringVariableMap%ftn_end proc~stringvariablemap_serialize->none~ftn_end~35 none~next~96 StringVariableMapIterator%next proc~stringvariablemap_serialize->none~next~96 none~serialize~27 Variable%serialize proc~stringvariablemap_serialize->none~serialize~27 proc~mapl_return MAPL_Return proc~stringvariablemap_serialize->proc~mapl_return proc~mapl_verify MAPL_Verify proc~stringvariablemap_serialize->proc~mapl_verify none~of~182 StringVariableMapIterator%of none~first~238->none~of~182 to_node to_node none~ftn_end~35->to_node none~next~96->to_node none~serialize~27->interface~serialize_buffer_length none~serialize~27->interface~serialize_intrinsic none~serialize~27->proc~mapl_return none~serialize~27->proc~mapl_verify none~serialize~14 UnlimitedEntity%serialize none~serialize~27->none~serialize~14 proc~stringattributemap_serialize StringAttributeMap_serialize none~serialize~27->proc~stringattributemap_serialize proc~stringvector_serialize StringVector_serialize none~serialize~27->proc~stringvector_serialize at at proc~mapl_return->at insert insert proc~mapl_return->insert proc~mapl_throw_exception MAPL_throw_exception proc~mapl_return->proc~mapl_throw_exception proc~mapl_verify->proc~mapl_throw_exception none~serialize~14->interface~serialize_buffer_length none~serialize~14->interface~serialize_intrinsic none~serialize~14->proc~mapl_return interface~mapl_assert MAPL_Assert none~serialize~14->interface~mapl_assert none~get_rank UnlimitedEntity%get_rank none~serialize~14->none~get_rank proc~stringattributemap_serialize->interface~serialize_buffer_length proc~stringattributemap_serialize->interface~serialize_intrinsic proc~stringattributemap_serialize->proc~mapl_return proc~stringattributemap_serialize->none~serialize~14 none~begin~141 StringAttributeMap%begin proc~stringattributemap_serialize->none~begin~141 none~key~126 StringAttributeMapIterator%key proc~stringattributemap_serialize->none~key~126 none~next~85 StringAttributeMapIterator%next proc~stringattributemap_serialize->none~next~85 proc~stringvector_serialize->interface~serialize_buffer_length proc~stringvector_serialize->interface~serialize_intrinsic begin begin proc~stringvector_serialize->begin next next proc~stringvector_serialize->next of of proc~stringvector_serialize->of

Source Code

    integer function StringVariableMap_get_length(this) result(length)
      type (StringVariableMap), intent(in) :: this
      integer, allocatable :: buffer(:)

      call StringVariableMap_serialize(this, buffer)
      length = size(buffer)

    end function StringVariableMap_get_length