make dropFirst and dropLast drop n elements

This commit is contained in:
Isaac Van Doren 2023-10-29 13:23:33 -05:00
parent cb6b36e218
commit 139d3c6f89
No known key found for this signature in database
GPG key ID: CFA524CD470E5B94
48 changed files with 3518 additions and 3470 deletions

View file

@ -2285,7 +2285,7 @@ fn anonymous_closure_in_polymorphic_expression_issue_4717() {
if index == 0 then
input
else
List.drop input index
List.dropFirst input index
main = chompWhile [1u8, 2u8, 3u8]
"###
@ -2482,7 +2482,7 @@ fn weakening_avoids_overspecialization() {
if index == 0 then
input
else
List.drop input index
List.dropFirst input index
"###
)
}