| 240 | } |
| 241 | |
| 242 | List * |
| 243 | list_make2_impl(NodeTag t, ListCell datum1, ListCell datum2) |
| 244 | { |
| 245 | List *list = new_list(t, 2); |
| 246 | |
| 247 | list->elements[0] = datum1; |
| 248 | list->elements[1] = datum2; |
| 249 | check_list_invariants(list); |
| 250 | return list; |
| 251 | } |
| 252 | |
| 253 | List * |
| 254 | list_make3_impl(NodeTag t, ListCell datum1, ListCell datum2, |
nothing calls this directly
no test coverage detected