コード例 #1
0
 public virtual float ReadFloat() => ByteBufferUtil.Int32BitsToSingle(this.ReadInt());
コード例 #2
0
 public virtual float GetFloat(int index) => ByteBufferUtil.Int32BitsToSingle(this.GetInt(index));
コード例 #3
0
 public float ReadFloatLE() => ByteBufferUtil.Int32BitsToSingle(this.ReadIntLE());
コード例 #4
0
 public float GetFloatLE(int index) => ByteBufferUtil.Int32BitsToSingle(this.GetIntLE(index));
コード例 #5
0
 public static float ReadFloatLE(this IByteBuffer buf) => ByteBufferUtil.Int32BitsToSingle(buf.ReadIntLE());
コード例 #6
0
 public static float GetFloatLE(this IByteBuffer buf, int index) => ByteBufferUtil.Int32BitsToSingle(buf.GetIntLE(index));