dotnet / dotnet/machinelearning
Some functions are not used in HeaderSchema.cs
- Dominant language
- C#
- Stars
- 9.4k
- Forks
- 2k
- Avg merge
- 2d 20h
- Merged PRs (30d)
- 11
Description
As title. In class
```
[BestFriend]
internal abstract class FeatureNameCollection : IEnumerable
```
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> names)
{
…
}
public bool TryLookup(string name, out int index)
{
…
}
```
are not used.
Contributor guide
Assessment
This issue has not been assessed yet.