Append returns a new *objects with the given *objectTuple(s) appended to the end of the known objects.
(os ...*objectTuple)
| 232 | // Append returns a new *objects with the given *objectTuple(s) appended to the |
| 233 | // end of the known objects. |
| 234 | func (s *objects) Append(os ...*objectTuple) *objects { |
| 235 | return &objects{ |
| 236 | completed: s.completed, |
| 237 | objects: append(s.objects, os...), |
| 238 | } |
| 239 | } |
| 240 | |
| 241 | // First returns the first *objectTuple in the chain of objects. |
| 242 | func (s *objects) First() *objectTuple { |