mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-05-06 11:32:59 +00:00
19 lines
457 B
C#
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);
|
|
|
|
}
|
|
}
|