mirror of
https://github.com/cccb/servicepoint.git
synced 2025-01-19 10:20:12 +01:00
7 lines
130 B
C#
7 lines
130 B
C#
namespace ServicePoint;
|
|
|
|
public partial struct SPByteSlice
|
|
{
|
|
public unsafe Span<byte> AsSpan() => new (start, (int)length);
|
|
}
|