14 lines
248 B
C#
Raw Normal View History

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