Add - New subject to collection.
(attribute *base.Attribute)
| 142 | |
| 143 | // Add - New subject to collection. |
| 144 | func (t *AttributeCollection) Add(attribute *base.Attribute) { |
| 145 | t.attributes = append(t.attributes, attribute) |
| 146 | } |
| 147 | |
| 148 | // TupleBundle defines a structure for managing collections of tuples, |
| 149 | // with separate collections for write (create/update) and delete operations. |
no outgoing calls