Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 2.74 KB

EntityQueryBuilder.AsMap_TKey_(int,IEqualityComparer_TKey_).md

File metadata and controls

34 lines (21 loc) · 2.74 KB

EntityQueryBuilder.AsMap(int, IEqualityComparer) Method

Returns an EntityMap<TKey> with the specified rules.

public DefaultEcs.EntityMap<TKey> AsMap<TKey>(int capacity, System.Collections.Generic.IEqualityComparer<TKey> comparer);

Type parameters

TKey

The component type to use as key.

Parameters

capacity System.Int32

The initial number of element the EntityMap<TKey> can contain.

comparer System.Collections.Generic.IEqualityComparer<TKey>

The System.Collections.Generic.IEqualityComparer<> implementation to use when comparing keys, or null to use the default System.Collections.Generic.EqualityComparer<>.Default for the type of the key.

Returns

DefaultEcs.EntityMap<TKey>
The EntityMap<TKey>.