Code · 12 lines · 167 bytes
1
2
3
4
5
6
7
8
9
10
11
12using System;

namespace Matroska.Enumerations;

[Flags]
public enum Lacing : byte
{
	No = 0b0000000,
	Xiph = 0b0000010,
	EBML = 0b0000110,
	FixedSize = 0b0000100
}