Skip to content

Commit febbf12

Browse files
committed
fix bad formatting after overflow by #833
1 parent 5e858b8 commit febbf12

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

quickref/quickref.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1008,10 +1008,10 @@
10081008
& \texttt{xs.lengthCompare(n)} & Returns -1 if xs is shorter than n, +1 if it is longer, else 0. \\\cline{1-3}
10091009

10101010

1011-
Index & \texttt{xs.indexOf(x)} & The index of the first element in xs equal to x, or -1 if not found.\\ \cline{2-3}
1012-
search: & \texttt{xs.lastIndexOf(x)} & The index of the last element in xs equal to x, or -1 if not found.\\\cline{2-3}
1011+
Index & \texttt{xs.indexOf(x)} & Index of first element in xs equal to x, or -1 if not found.\\ \cline{2-3}
1012+
search: & \texttt{xs.lastIndexOf(x)} & Index of last element in xs equal to x, or -1 if not found.\\\cline{2-3}
10131013
& \texttt{xs.indexOfSlice(ys) \newline xs.lastIndexOfSlice(ys)} & The (last) index of xs such that successive elements starting from that index form the sequence ys. Returns -1 if not found.\\\cline{2-3}
1014-
& \texttt{xs.indexWhere(p)} & The index of the first element in xs that satisfies p, or -1 if not found.\\\cline{2-3}
1014+
& \texttt{xs.indexWhere(p)} & Index of first element in xs satisfying p, or -1 if not found.\\\cline{2-3}
10151015
& \texttt{xs.segmentLength(p, i)} & The length of the longest uninterrupted segment of elements in xs, starting with xs(i), that all satisfy the predicate p.\\\cline{2-3}
10161016
& \texttt{xs.prefixLength(p)} & Same as \texttt{ xs.segmentLength(p, 0)}\\\cline{1-3}
10171017

0 commit comments

Comments
 (0)