pub const READ_ONLY_LIST_METHODS: &[&str];Expand description
The read-only / non-mutating List built-in methods this codegen lowers
natively per target (see desugared_list_method). The in-place mutators
are excluded: push/append lower via desugared_list_mutating_method
(DQ18) and pop/remove_at/insert/reverse/set via
desugared_list_inplace_mutator (DQ30).