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

Method Set

projects/CSharp/Proto/com.chronoxor.fbe.cs:808–815  ·  view source on GitHub ↗

Set the value

(bool value)

Source from the content-addressed store, hash-verified

806
807 // Set the value
808 public override void Set(bool value)
809 {
810 Debug.Assert(((_buffer.Offset + FBEOffset + FBESize) <= _buffer.Size), "Model is broken!");
811 if ((_buffer.Offset + FBEOffset + FBESize) > _buffer.Size)
812 return;
813
814 Write(FBEOffset, value);
815 }
816 }
817
818 // Fast Binary Encoding byte field model

Callers 15

VerifyDecimalMethod · 0.45
CreateAndAccessMethod · 0.45
MainMethod · 0.45
SetMethod · 0.45
SetMethod · 0.45
SetMethod · 0.45
SetMethod · 0.45
SetMethod · 0.45
SetMethod · 0.45
SetMethod · 0.45
SetMethod · 0.45
SetMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected