Drop unexposed List symbol

List.iterate doesn't need a manual Symbol entry because
it's not exposed.
This commit is contained in:
Richard Feldman 2022-07-22 10:45:47 -04:00 committed by Folkert
parent d60ad6b5af
commit 97720c4090
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C

View file

@ -1290,13 +1290,12 @@ define_builtins! {
66 LIST_GET_UNSAFE: "getUnsafe" 66 LIST_GET_UNSAFE: "getUnsafe"
67 LIST_REPLACE_UNSAFE: "replaceUnsafe" 67 LIST_REPLACE_UNSAFE: "replaceUnsafe"
68 LIST_WITH_CAPACITY: "withCapacity" 68 LIST_WITH_CAPACITY: "withCapacity"
69 LIST_ITERATE: "iterate" 69 LIST_UNREACHABLE: "unreachable"
70 LIST_UNREACHABLE: "unreachable" 70 LIST_RESERVE: "reserve"
71 LIST_RESERVE: "reserve" 71 LIST_APPEND_UNSAFE: "appendUnsafe"
72 LIST_APPEND_UNSAFE: "appendUnsafe" 72 LIST_SUBLIST_LOWLEVEL: "sublistLowlevel"
73 LIST_SUBLIST_LOWLEVEL: "sublistLowlevel" 73 LIST_CAPACITY: "capacity"
74 LIST_CAPACITY: "capacity" 74 LIST_MAP_TRY: "mapTry"
75 LIST_MAP_TRY: "mapTry"
} }
7 RESULT: "Result" => { 7 RESULT: "Result" => {
0 RESULT_RESULT: "Result" // the Result.Result type alias 0 RESULT_RESULT: "Result" // the Result.Result type alias