pub const MAP_QUERY_ACCESSORS: &[StoreOp];Expand description
The .entries/.keys/.values lazy query accessors a store Map[K, V]
field exposes (v0.158, ADR 0184) — fields, not method calls, so they’re
dispatched in crate::checker::expressions::check_field_access rather than
a check_store_*_op function, and are a separate table from
MAP_STORE_OPS though they share a receiver. Never offered on a held
Map[K, Connection] (bynk.held.query_accessor_on_held_map) — this static
table doesn’t carry the value type, so callers gate that themselves.