| 450 | } |
| 451 | |
| 452 | mx::array array_from_list(nb::list pl, std::optional<mx::Dtype> dtype) { |
| 453 | return array_from_list_impl(pl, dtype); |
| 454 | } |
| 455 | |
| 456 | mx::array array_from_list(nb::tuple pl, std::optional<mx::Dtype> dtype) { |
| 457 | return array_from_list_impl(pl, dtype); |
no test coverage detected