2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-05-06 19:42:58 +00:00
2023-03-27 15:12:40 +03:00

19 lines
457 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Esiur.Analysis.Coding
{
public interface IStreamCodec<T>
{
//public byte[] Encode(byte[] source, uint offset, uint length);
//public byte[] Decode(byte[] source, uint offset, uint length);
public T[] Encode(CodeWord<T>[] source, uint offset, uint length);
public CodeWord<T>[] Decode(T[] source, uint offset, uint length);
}
}