Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
var Bigrams = map[string]float64{}/* 676 elements not displayed */
Bigrams contains the relative frequency of each pair of alphabetic bigrams, for English text. Source: https://www.norvig.com/mayzner.html
var ChemicalElements = []string{}/* 118 elements not displayed */
ChemicalElements contains the symbols for chemical elements.
var Consonants = []string{
"b",
"c",
"d",
"f",
"g",
"h",
"j",
"k",
"l",
"m",
"n",
"p",
"q",
"r",
"s",
"t",
"v",
"w",
"x",
"y",
"z",
}
Consonants contains the twenty-one English consonants
var CrsCodes = []string{}/* 2579 elements not displayed */
CrsCodes contains all codes used for National Rail stations in the UK.
var IacoPrefixes = []string{}/* 238 elements not displayed */
IacoPrefixes contains the IACO prefixes for airports
var Index = map[string][]string{ "IACO prefixes": IacoPrefixes, "symbols of chemical elements": ChemicalElements, "ISO-3166 Alpha-2 Country Codes": Iso3166Alpha2s, "ISO-3166 Alpha-3 Country Codes": Iso3166Alpha3s, "National Rail CRS Codes": CrsCodes, "US State Abbreviations": StateAbbreviations, "vowels": Vowels, "consonants": Consonants, "letters with ascenders": LettersWithAscenders, "letters without ascenders": LettersWithoutAscenders, "letters with descenders": LettersWithDescenders, "letters without descenders": LettersWithoutDescenders, "letters from the upper row of a QWERTY keyboard": QwertyUpperRow, "letters from the home row of a QWERTY keyboard": QwertyHomeRow, "letters from the lower row of a QWERTY keyboard": QwertyLowerRow, "letters from the upper two rows of a QWERTY keyboard": QwertyUpperTwoRows, "letters from the lower two rows of a QWERTY keyboard": QwertyLowerTwoRows, "letters from the outer two rows of a QWERTY keyboard": QwertyOuterRows, }
Index contains a map of collection names to their terms.
var Iso3166Alpha2s = []string{}/* 249 elements not displayed */
Iso3166Alpha2s contains the ISO 3166-1 Alpha-2 codes for all countries.
var Iso3166Alpha3s = []string{}/* 249 elements not displayed */
Iso3166Alpha3s contains the ISO 3166-1 Alpha-3 codes for all countries.
var LettersWithAscenders = []string{
"b",
"d",
"f",
"h",
"k",
"l",
"t",
}
LettersWithAscenders contains English letters that typically have ascenders
var LettersWithDescenders = []string{
"f",
"g",
"j",
"p",
"q",
"y",
}
LettersWithDescenders contains English letters that typically have descenders
var LettersWithoutAscenders = []string{
"a",
"c",
"e",
"f",
"g",
"i",
"j",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"u",
"v",
"w",
"x",
"y",
"z",
}
LettersWithoutAscenders contains English letters that don't typically have ascenders
var LettersWithoutDescenders = []string{
"a",
"b",
"c",
"d",
"e",
"f",
"h",
"i",
"k",
"l",
"m",
"n",
"o",
"r",
"s",
"t",
"u",
"v",
"w",
"x",
"z",
}
LettersWithoutDescenders contains English letters that don't typically have descenders
var QwertyHomeRow = []string{
"a",
"s",
"d",
"f",
"g",
"h",
"j",
"k",
"l",
}
QwertyHomeRow contains the characters in the home row of a QWERTY keyboard.
var QwertyLowerRow = []string{
"z",
"x",
"c",
"v",
"b",
"n",
"m",
}
QwertyLowerRow contains the characters in the lower row of a QWERTY keyboard.
var QwertyLowerTwoRows = append(QwertyLowerRow, QwertyHomeRow...)
QwertyLowerTwoRows contains the characters in the lower two rows of a QWERTY keyboard.
var QwertyOuterRows = append(QwertyLowerRow, QwertyUpperRow...)
QwertyOuterRows contains the characters in the outer two rows of a QWERTY keyboard.
var QwertyUpperRow = []string{
"q",
"w",
"e",
"r",
"t",
"y",
"u",
"i",
"o",
"p",
}
QwertyUpperRow contains the characters in the upper row of a QWERTY keyboard.
var QwertyUpperTwoRows = append(QwertyUpperRow, QwertyHomeRow...)
QwertyUpperTwoRows contains the characters in the top two rows of a QWERTY keyboard.
var StateAbbreviations = []string{
"AL",
"AK",
"AZ",
"AR",
"CA",
"CO",
"CT",
"DE",
"FL",
"GA",
"HI",
"ID",
"IL",
"IN",
"IA",
"KS",
"KY",
"LA",
"ME",
"MD",
"MA",
"MI",
"MN",
"MS",
"MO",
"MT",
"NE",
"NV",
"NH",
"NJ",
"NM",
"NY",
"NC",
"ND",
"OH",
"OK",
"OR",
"PA",
"RI",
"SC",
"SD",
"TN",
"TX",
"UT",
"VT",
"VA",
"WA",
"WV",
"WI",
"WY",
"DC",
}
StateAbbreviations contains abbreviations for the US states (and the District of Columbia).
var Vowels = []string{
"a",
"e",
"i",
"o",
"u",
}
Vowels contains the five English vowels
Functions ¶
This section is empty.
Types ¶
This section is empty.