18 lines
388 B
C#
Raw Permalink Normal View History

2020-01-11 17:56:12 +01:00
namespace Capnp
2019-06-12 21:56:55 +02:00
{
/// <summary>
/// Helper struct to represent the tuple (segment index, offset)
/// </summary>
public struct SegmentSlice
{
/// <summary>
/// Segment index
/// </summary>
2019-06-12 21:56:55 +02:00
public uint SegmentIndex;
/// <summary>
/// Word offset within segment
/// </summary>
2019-06-12 21:56:55 +02:00
public int Offset;
}
2020-01-11 17:56:12 +01:00
}