Return the entry for the specified key, or abort if no such entry exists.
Synopses
Declared in <llvm/ADT/DenseMap.h>
Return the entry for the specified key, or abort if no such entry exists.
[[nodiscard]]
ValueT&
at(const_arg_type_t<KeyT> Val);
Return the entry for the specified key, or abort if no such entry exists.
[[nodiscard]]
ValueT const&
at(const_arg_type_t<KeyT> Val) const;
Return Value
-
Reference to the mapped value for
Val. -
Const reference to the mapped value for
Val.
|
Note
|
The return value should not be discarded. |
Parameters
Name |
Description |
Val |
Key of the entry to retrieve. |
Created with MrDocs