()
| 166 | } |
| 167 | |
| 168 | func (s SequenceID) SafeSequence() uint64 { |
| 169 | if s.LowSeq > 0 { |
| 170 | return s.LowSeq |
| 171 | } else { |
| 172 | return s.Seq |
| 173 | } |
| 174 | } |
| 175 | |
| 176 | func (s SequenceID) IsNonZero() bool { |
| 177 | return s.Seq > 0 |
no outgoing calls
no test coverage detected