Skip to contents

Given two vectors of integers, this function finds the consecutive number in the second vector (post) for each element in the first vector (prev).

Usage

get_next_consecutives(prev, post)

Arguments

prev

A vector of positive integers representing previous numbers.

post

A vector of positive integers representing subsequent numbers.

Value

A numeric atomic vector with length at most of min(prev, post).

Examples

prev <- c(1, 3, 5)
post <- c(2, 4, 6, 7)
get_next_consecutives(prev, post)
#> [1] 2 4 6
# Output: 2, 4, 6.