C# Class ABB.Swum.WordData.PositionalFrequencyRecord

The positional frequency data for a given word.
Show file Open project: abb-iss/Swum.NET Class Usage Examples

Public Properties

Property Type Description
First int
Last int
Middle int
Only int
Total int

Property Details

First public property

A count of how often the word appears at the beginning of an identifier.
public int First
return int

Last public property

A count of how often the word appears at the end of an identifier.
public int Last
return int

Middle public property

A count of how often the word appears in the middle of an identifier, i.e. not first or last.
public int Middle
return int

Only public property

A count of how often the word appears by itself in an identifier.
public int Only
return int

Total public property

The total number of times the word appears in identifiers. This must be a sum of First, Middle, Last, and Only.
public int Total
return int