FUNCTION bag_to_set

(* SCHEMA support_resource_schema; *)
  FUNCTION bag_to_set (the_bag : BAG OF GENERIC:intype):SET OF GENERIC:intype;
    LOCAL
      the_set : SET OF GENERIC:intype := [];
    END_LOCAL;

    IF SIZEOF(the_bag) > 0 THEN
      REPEAT i := 1 TO HIINDEX(the_bag);
        the_set := the_set + the_bag[i];
      END_REPEAT;
    END_IF;
    RETURN (the_set);
  END_FUNCTION;

Referenced By

Defintion bag_to_set is references by the following definitions:
DefinitionType
 acyclic_action_method_relationship FUNCTION
 acyclic_action_relationship FUNCTION
 acyclic_action_resource_relationship FUNCTION
 acyclic_approval_relationship FUNCTION
 acyclic_characterized_object_relationship FUNCTION
 acyclic_contract_relationship FUNCTION
 acyclic_document_relationship FUNCTION
 acyclic_effectivity_relationship FUNCTION
 acyclic_event_occurrence_relationship FUNCTION
 acyclic_experience_relationship FUNCTION
 acyclic_experience_type_relationship FUNCTION
 acyclic_externally_defined_item_relationship FUNCTION
 acyclic_external_source_relationship FUNCTION
 acyclic_general_property_relationship FUNCTION
 acyclic_group_relationship FUNCTION
 acyclic_identification_assignment_relationship FUNCTION
 acyclic_location_relationship FUNCTION
 acyclic_mapped_representation FUNCTION
 acyclic_occlusion_precedence FUNCTION
 acyclic_organizational_project_relationship FUNCTION
 acyclic_organization_relationship FUNCTION
 acyclic_organization_type_relationship FUNCTION
 acyclic_person_type_definition_relationship FUNCTION
 acyclic_position_in_organization_relationship FUNCTION
 acyclic_presentation_representation_relationship FUNCTION
 acyclic_product_category_relationship FUNCTION
 acyclic_product_definition_formation_relationship FUNCTION
 acyclic_product_definition_relationship FUNCTION
 acyclic_product_relationship FUNCTION
 acyclic_property_definition_relationship FUNCTION
 acyclic_qualification_relationship FUNCTION
 acyclic_qualification_type_relationship FUNCTION
 acyclic_representation_relationship FUNCTION
 acyclic_shape_aspect_relationship FUNCTION
 acyclic_symbol_representation_relationship FUNCTION
 acyclic_time_interval_relationship FUNCTION
 acyclic_versioned_action_request_relationship FUNCTION
 assembly_leaf FUNCTION
 connected_in_simple_loop FUNCTION
 datum_feature ENTITY
 datum_target ENTITY
 field_in_table FUNCTION
 find_assembly_root FUNCTION
 find_shape_representation_of_product_definition FUNCTION
 find_shape_representation_of_shape_aspect FUNCTION
 get_product_definitions FUNCTION
 get_property_definition_representations FUNCTION
 get_shape_aspects FUNCTION
 material_property ENTITY
 relatives_of_product_definitions FUNCTION
 relatives_of_shape_representations FUNCTION
 representations_mapped_into FUNCTION
 unique_link_usage FUNCTION
 using_items FUNCTION
 using_product_definition_of_shape_representation FUNCTION
 using_representation_with_mapping FUNCTION
 using_shape_aspect_of_shape_representation FUNCTION


[Top Level Definitions] [Exit]

Generated by STEP Tools® EXPRESS to HTML Converter
2012-03-27T17:13:58-04:00