/ src / Spv.Generator / IOperand.cs
IOperand.cs
 1  using System;
 2  using System.IO;
 3  
 4  namespace Spv.Generator
 5  {
 6      public interface IOperand : IEquatable<IOperand>
 7      {
 8          OperandType Type { get; }
 9  
10          ushort WordCount { get; }
11  
12          void WriteOperand(BinaryWriter writer);
13      }
14  }