servicepoint/crates/servicepoint_binding_cs/ServicePoint/BitVec.cs
2024-10-19 14:21:50 +02:00

13 lines
228 B
C#

namespace ServicePoint;
public sealed partial class BitVec
{
public bool this[nuint index]
{
get => Get(index);
set => Set(index, value);
}
public Span<byte> Data => UnsafeDataRef().AsSpan();
}