FirstOp lookup for the very first operation of the Entity
()
| 403 | |
| 404 | // FirstOp lookup for the very first operation of the Entity |
| 405 | func (e *Entity) FirstOp() Operation { |
| 406 | for _, op := range e.ops { |
| 407 | return op |
| 408 | } |
| 409 | for _, op := range e.staging { |
| 410 | return op |
| 411 | } |
| 412 | return nil |
| 413 | } |
| 414 | |
| 415 | // LastOp lookup for the very last operation of the Entity |
| 416 | func (e *Entity) LastOp() Operation { |