-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Open
Labels
P3Doc bugs, questions, minor issues, etc.Doc bugs, questions, minor issues, etc.code-sanitationCode consistency, maintainability, and best practices, moreso than any public API.Code consistency, maintainability, and best practices, moreso than any public API.
Description
As title. In class
[BestFriend]
internal abstract class FeatureNameCollection : IEnumerable<string>
those functions
private FeatureNameCollection()
{
}
public static FeatureNameCollection Create(string[] names)
{
return Create(Utils.Size(names), names);
}
public static FeatureNameCollection Create(RoleMappedSchema schema)
{
…
}
public static void Save(ModelSaveContext ctx, in VBuffer<ReadOnlyMemory<char>> names)
{
…
}
public bool TryLookup(string name, out int index)
{
…
}
are not used.
Metadata
Metadata
Assignees
Labels
P3Doc bugs, questions, minor issues, etc.Doc bugs, questions, minor issues, etc.code-sanitationCode consistency, maintainability, and best practices, moreso than any public API.Code consistency, maintainability, and best practices, moreso than any public API.