private inline suspend fun <T : TimelineItem> existsNewerTimelineItem(issue: Issue, time: OffsetDateTime, itemFilter: (T) -> Boolean = { true }): Boolean
Checks if a TimelineItem with type T exists on issue created after time matching itemFilter
Return
the result of the check
Parameters
issue
contains the timeline to check
time
only consider items after this time
itemFilter
used to further filter for acceptable TimelineItems
Type Parameters
T
the type of TimelineItem to look for