Skip to content

ModelEntities Vector

mitchell-conrad edited this page Jan 19, 2021 · 1 revision

Table of Contents

Vector

The Vector entity defines an array/vector of data in MEDEA.

The Vector example on the right is similar to the following C++ code:

struct Message {
   string instName;  // @key
   int messageID;
   string content;
};

struct MessageList {
   std::vector<Message> messageVector;
};

Parent

Can be adopted by the below entities:

Children

Can adopt only one of the below entities:

Dependents

The below entities are dependent on this entity:

Dependencies

This entity does not depend on any entities.

Editable Data Fields

  • label - sets the label

Edges

This entity does not have any visible edges attached to it.

Clone this wiki locally