blob: 3408da1b9b5d6d6f07a2c6e90f081e06bfe41367 [file] [log] [blame]
using System.Runtime.CompilerServices;
namespace Lucene.Net.Util
{
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using NumericDocValues = Lucene.Net.Index.NumericDocValues;
using PackedInt32s = Lucene.Net.Util.Packed.PackedInt32s;
/// <summary>
/// Abstraction over an array of <see cref="long"/>s.
/// This class extends <see cref="NumericDocValues"/> so that we don't need to add another
/// level of abstraction every time we want eg. to use the <see cref="PackedInt32s"/>
/// utility classes to represent a <see cref="NumericDocValues"/> instance.
/// <para/>
/// NOTE: This was LongValues in Lucene
/// <para/>
/// @lucene.internal
/// </summary>
public abstract class Int64Values : NumericDocValues
{
/// <summary>
/// Get value at <paramref name="index"/>. </summary>
public abstract long Get(long index);
/// <summary>
/// Get value at <paramref name="idx"/>. </summary>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public override long Get(int idx)
{
return Get((long)idx);
}
}
}