1
0
mirror of https://github.com/chylex/Brotli-Builder.git synced 2025-08-16 21:31:47 +02:00
Files
BrotliBuilder
BrotliCalc
BrotliImpl
BrotliLib
Brotli
Collections
Exceptions
Markers
Numbers
Serialization
Reader
Writer
BitSerialization.cs
BitStream.cs
NoContext.cs
BrotliLib.csproj
LICENSE-BROTLI.txt
UnitTests
.gitignore
BrotliBuilder.sln
LICENSE
README.md

9 lines
372 B
C#

namespace BrotliLib.Serialization{
/// <summary>
/// Utility to use as the context type parameter in <see cref="BitSerializer{T, C}"/> and <see cref="BitDeserializer{T, C}"/>, to disallow passing null as a "no context" parameter.
/// </summary>
public readonly struct NoContext{
public static readonly NoContext Value = new NoContext();
}
}