Christian Köllner 5b8f6722ec nullability step 2
2020-01-11 17:56:12 +01:00

18 lines
388 B
C#

namespace Capnp
{
/// <summary>
/// Helper struct to represent the tuple (segment index, offset)
/// </summary>
public struct SegmentSlice
{
/// <summary>
/// Segment index
/// </summary>
public uint SegmentIndex;
/// <summary>
/// Word offset within segment
/// </summary>
public int Offset;
}
}