Struct AllHitsCollector<T>
  
Syntax
public struct AllHitsCollector<T> : ICollector<T> where T : struct, IQueryResult
 
Type Parameters
Constructors
  
AllHitsCollector(Single, ref NativeList<T>)
Declaration
public AllHitsCollector(float maxFraction, ref NativeList<T> allHits)
 
Parameters
| Type | 
Name | 
Description | 
| Single | 
maxFraction | 
 | 
| NativeList<T> | 
allHits | 
 | 
Fields
  
AllHits
Declaration
public NativeList<T> AllHits
 
Field Value
| Type | 
Description | 
| NativeList<T> | 
 | 
Properties
  
EarlyOutOnFirstHit
Declaration
public bool EarlyOutOnFirstHit { get; }
 
Property Value
Implements
MaxFraction
Declaration
public float MaxFraction { get; }
 
Property Value
Implements
NumHits
Declaration
public int NumHits { get; }
 
Property Value
Implements
Methods
  
AddHit(T)
Declaration
public bool AddHit(T hit)
 
Parameters
| Type | 
Name | 
Description | 
| T | 
hit | 
 | 
Returns
Implements