mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-09-12 22:10:11 -05:00
JsonValueおよびUtf8Stringが保持する配列をArraySegmentからReadOnlyMemoryに変更
This commit is contained in:
@@ -11,7 +11,7 @@ namespace UniJSON
|
||||
{
|
||||
public static void WriteTo(this Utf8String src, Stream dst)
|
||||
{
|
||||
dst.Write(src.Bytes.Array, src.Bytes.Offset, src.Bytes.Count);
|
||||
dst.Write(src.Bytes.Span);
|
||||
}
|
||||
|
||||
public static Utf8Iterator GetFirst(this Utf8String src)
|
||||
|
||||
Reference in New Issue
Block a user