RcOrderedDictionary.opBinaryRight

Gets whether the given key is present in the object.

struct RcOrderedDictionary(TKey, TValue)
@nogc inout nothrow
inout(TValue)*
opBinaryRight
(
string op
)
(
auto ref TKey key
)
if (
op == "in"
)

Parameters

key TKey

The key to query.

Return Value

Type: inout(TValue)*

true if the object contains a value with the given key, false otherwise.

Meta