Add - New subject to collection.
(tuple *base.Tuple)
| 33 | |
| 34 | // Add - New subject to collection. |
| 35 | func (t *TupleCollection) Add(tuple *base.Tuple) { |
| 36 | t.tuples = append(t.tuples, tuple) |
| 37 | } |
| 38 | |
| 39 | // ToSubjectCollection - Converts new subject collection from given tuple collection |
| 40 | func (t *TupleCollection) ToSubjectCollection() *SubjectCollection { |
no outgoing calls