MCPcopy Create free account
hub / github.com/chronoxor/FastBinaryEncoding / Write

Method Write

projects/CSharp/Proto/com.chronoxor.fbe.cs:370–373  ·  view source on GitHub ↗
(byte[] buffer, long offset, bool value)

Source from the content-addressed store, hash-verified

368 }
369
370 public static void Write(byte[] buffer, long offset, bool value)
371 {
372 buffer[offset] = (byte)(value ? 1 : 0);
373 }
374
375 public static void Write(byte[] buffer, long offset, sbyte value)
376 {

Callers

nothing calls this directly

Calls 1

CopyMethod · 0.45

Tested by

no test coverage detected