Home | Trees | Indices | Help |
|
---|
|
Created on Aug 15, 2011
Author: santtu:
//////////////// NOTE TO STUDENTS /////////////////////// // You don't have to understand the source code of this // module if you don't want to. /////////////////////////////////////////////////////////
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|
|||
FINNISH_VOWELS =
|
|||
FINNISH_CONSONANTS =
|
|||
ASSIMILATING_BACK_VOWELS =
|
|||
ASSIMILATING_FRONT_VOWELS =
|
|||
__package__ = None
|
|
Determines if the given symbol is used as a standard letter (either a consonant or a vowel) in the Finnish language.
|
Determines if the given symbol represents a vowel sound in Finnish. Vowels in Finnish are: a, e, i, o, u, y, ä, ö, å.
|
Determines if the given symbol represents a consonant sound in Finnish. Any letter that does not represent a vowel is considered a consonant.
|
Determines if the given symbol represents, in Finnish, an "assimilating back vowel". An assimilating back vowel, here, is defined as a back vowel which has a corresponding front vowel and which can trigger or be targeted by vowel-harmony-related assimilations. In other words, this method determines if the given symbol is one of: a, o, u.
|
Determines if the given symbol represents, in Finnish, an "assimilating front vowel". An assimilating front vowel, here, is defined as a front vowel which has a corresponding back vowel and can trigger or be targeted by vowel-harmony-related assimilations. In other words, this method determines if the given symbol is one of: ä, ö, y.
|
If the given symbol represents an assimilating front vowel, returns a symbol representing the corresponding back vowel. If not, returns the given symbol itself. Finnish front vowels 'ä', 'ö' and 'y' correspond to the back vowels 'a', 'o' and 'u', respectively.
See Also: #is_assimilating_front_vowel(char) |
If the given symbol represents an assimilating back vowel, returns a symbol representing the corresponding front vowel. If not, returns the given symbol itself. Finnish front vowels 'a', 'o' and 'u' correspond to the front vowels 'ä', 'ö' and 'y', respectively.
See Also: #is_assimilating_back_vowel(char) |
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Thu Aug 23 11:00:35 2012 | http://epydoc.sourceforge.net |