1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Added 'in' parameter support

This commit is contained in:
Brian Fiete 2021-01-27 09:01:47 -08:00
parent bf97870ed4
commit 4d1672fbcf
8 changed files with 52 additions and 16 deletions

View file

@ -20,7 +20,7 @@ namespace System
return val.mVal;
}
public implicit static operator Span<T> (ref Self val)
public implicit static operator Span<T> (in Self val)
{
#unwarn
return .(&val.mVal, CSize);