Performs an unchecked cast from a value to a list value. In debug builds a best effort is made to crash. If `IsList()` would return false, calling this method is undefined behavior.
| 1781 | // debug builds a best effort is made to crash. If `IsList()` would return |
| 1782 | // false, calling this method is undefined behavior. |
| 1783 | ListValue GetList() & { return std::as_const(*this).GetList(); } |
| 1784 | ListValue GetList() const&; |
| 1785 | ListValue GetList() &&; |
| 1786 | ListValue GetList() const&& { return GetList(); } |