Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/apache/fory
/ CheckBound
Method
CheckBound
csharp/src/Fory/ByteBuffer.cs:483–489 ·
view source on GitHub ↗
(int need)
Source
from the content-addressed store, hash-verified
481
}
482
483
public void CheckBound(int need)
484
{
485
if (need < 0 || need > _length - _cursor)
486
{
487
throw new OutOfBoundsException(_cursor, need, _length);
488
}
489
}
490
491
public byte ReadUInt8()
492
{
Callers
15
ReadCollectionData
Method · 0.80
ReadMap
Method · 0.80
ReadData
Method · 0.80
ReadData
Method · 0.80
ReadData
Method · 0.80
ReadData
Method · 0.80
ReadData
Method · 0.80
ReadData
Method · 0.80
ReadData
Method · 0.80
ReadData
Method · 0.80
ReadData
Method · 0.80
ReadData
Method · 0.80
Calls
no outgoing calls
Tested by
1
CheckBoundRejectsNegativeAndOverflowingNeed
Method · 0.64