/*(non-Javadoc) @see Lucene.Net.Search.Function.FieldCacheSource#cachedFieldSourceEquals(Lucene.Net.Search.Function.FieldCacheSource) */ public override bool CachedFieldSourceEquals(FieldCacheSource o) { if (o.GetType() != typeof(FloatFieldSource)) { return(false); } FloatFieldSource other = (FloatFieldSource)o; return(this.parser == null ? other.parser == null : this.parser.GetType() == other.parser.GetType()); }
private void InitBlock(float[] arr, FloatFieldSource enclosingInstance) { this.arr = arr; this.enclosingInstance = enclosingInstance; }
public AnonymousClassDocValues(float[] arr, FloatFieldSource enclosingInstance) { InitBlock(arr, enclosingInstance); }