NPetrovich.Inflection.CaseInflection.ExtractTags C# (CSharp) Method

ExtractTags() private method

private ExtractTags ( bool>.Dictionary features ) : HashSet
features bool>.Dictionary
return HashSet
        private HashSet<string> ExtractTags(Dictionary<string, bool> features)
        {
            return new HashSet<string>(features.Where(f => f.Value).Select(f => f.Key));
        }