Adds multiple vals to the Set associated with key in the Map. If key is not already in the map, a new Set will first be created.

Namespace: Lucene.Net.Util
Assembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1

Syntax

C#
public virtual int PutAll(
	T key,
	Dictionary<V, V> vals
)
Visual Basic
Public Overridable Function PutAll ( _
	key As T, _
	vals As Dictionary(Of V, V) _
) As Integer
Visual C++
public:
virtual int PutAll(
	T key, 
	Dictionary<V, V>^ vals
)

Parameters

key
Type: T

[Missing <param name="key"/> documentation for "M:Lucene.Net.Util.MapOfSets`2.PutAll(`0,System.Collections.Generic.Dictionary{`1,`1})"]

vals
Type: System.Collections.Generic..::..Dictionary<(Of <(<'V, V>)>)>

[Missing <param name="vals"/> documentation for "M:Lucene.Net.Util.MapOfSets`2.PutAll(`0,System.Collections.Generic.Dictionary{`1,`1})"]

Return Value

the size of the Set associated with key once val is added to it.

See Also