blob: 59ff786c56c988a84123470803eb0d5ef7c94036 [file] [log] [blame]
using System.Runtime.CompilerServices;
namespace Lucene.Net.Util.Mutable
{
/*
* 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.
*/
/// <summary>
/// <see cref="MutableValue"/> implementation of type <see cref="float"/>.
/// <para/>
/// NOTE: This was MutableValueFloat in Lucene
/// </summary>
public class MutableValueSingle : MutableValue
{
public float Value { get; set; }
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public override object ToObject()
{
return Exists ? (object)Value : null;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public override void Copy(MutableValue source)
{
MutableValueSingle s = (MutableValueSingle)source;
Value = s.Value;
Exists = s.Exists;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public override MutableValue Duplicate()
{
return new MutableValueSingle
{
Value = this.Value,
Exists = this.Exists
};
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public override bool EqualsSameType(object other)
{
MutableValueSingle b = (MutableValueSingle)other;
return Value == b.Value && Exists == b.Exists;
}
public override int CompareSameType(object other)
{
MutableValueSingle b = (MutableValueSingle)other;
int c = Value.CompareTo(b.Value);
if (c != 0)
{
return c;
}
if (Exists == b.Exists)
{
return 0;
}
return Exists ? 1 : -1;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public override int GetHashCode()
{
return J2N.BitConversion.SingleToInt32Bits(Value);
}
}
}