Informal description
          For any two lists $l_1$ and $l_2$ of elements of type $\alpha$, the following are equivalent:
1. $l_1$ is an infix of $l_2$ (denoted $l_1 <:+: l_2$), meaning $l_1$ appears as a contiguous subsequence in $l_2$.
2. There exists a natural number $k$ such that:
   - The sum of the lengths of $l_1$ and $k$ is less than or equal to the length of $l_2$ (i.e., $|l_1| + k \leq |l_2|$), and
   - For every index $i$ with $i < |l_1|$, the element at position $i + k$ in $l_2$ is equal to the $i$-th element of $l_1$ (i.e., $l_2[i + k] = l_1[i]$).