Lines Matching defs:Set
60 V8_WARN_UNUSED_RESULT MaybeLocal<Map> Set(Local<Context> context,
92 * An instance of the built-in Set constructor (ECMA-262, 6th Edition, 23.2.1).
94 class V8_EXPORT Set : public Object {
98 V8_WARN_UNUSED_RESULT MaybeLocal<Set> Add(Local<Context> context,
106 * Returns an array of the keys in this Set.
111 * Creates a new empty Set.
113 static Local<Set> New(Isolate* isolate);
115 V8_INLINE static Set* Cast(Value* value) {
119 return static_cast<Set*>(value);
123 Set();