Add - New subject to collection.
(entity *base.Entity)
| 110 | |
| 111 | // Add - New subject to collection. |
| 112 | func (e *EntityCollection) Add(entity *base.Entity) { |
| 113 | e.entities = append(e.entities, entity) |
| 114 | } |
| 115 | |
| 116 | // AttributeCollection -Attribute collection. |
| 117 | type AttributeCollection struct { |
no outgoing calls