//Apache2, 2016-present, WinterDev
namespace Typography.OpenFont.Tables
{
///
/// replaceable glyph index list
///
public interface IGlyphIndexList
{
int Count { get; }
ushort this[int index] { get; }
///
/// remove:add_new 1:1
///
///
///
void Replace(int index, ushort newGlyphIndex);
///
/// remove:add_new >=1:1
///
///
///
///
void Replace(int index, int removeLen, ushort newGlyphIndex);
///
/// remove: add_new 1:>=1
///
///
///
void Replace(int index, ushort[] newGlyphIndices);
}
}