DataNode.opBinaryRight

Gets whether the given key is present in the object.

struct DataNode
@nogc inout nothrow
inout(DataNode)*
opBinaryRight
(
string op
)
(
string key
)
if (
op == "in"
)

Parameters

key string

The key to query.

Return Value

Type: inout(DataNode)*

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

Meta