| 71 | } |
| 72 | |
| 73 | bool FlowDiffUtils::HasNextDifference(const SListView<TSharedPtr<FDiffSingleResult>>& ListView, const TArray<TSharedPtr<FDiffSingleResult>>& ListViewSource) |
| 74 | { |
| 75 | const int32 CurrentIndex = GetCurrentIndex(ListView, ListViewSource); |
| 76 | return ListViewSource.IsValidIndex(CurrentIndex + 1); |
| 77 | } |
| 78 | |
| 79 | bool FlowDiffUtils::HasPrevDifference(const SListView<TSharedPtr<FDiffSingleResult>>& ListView, const TArray<TSharedPtr<FDiffSingleResult>>& ListViewSource) |
| 80 | { |
nothing calls this directly
no test coverage detected