R1 is the region after the first non-vowel following a vowel, or the end of the word if there is no such non-vowel.
Check if the word ens in a short sylable
Resolve a word by repplacing the placeholder characters("N", "V", "*")
A word is called short if it ends in a short syllable, and if R1 is null.
Check if the provided letter is a Vowel
Get a word region
R2 is the region after the first non-vowel following a vowel in R1, or the end of the word if there is no such non-vowel.
Return a list of words derived from value where the chars marked as any(*) are replaced with actual elements from the alphabet
Return a list of words derived from value where the chars marked as non-vowels(N) are replaced with actual elements from the alphabet
Return a list of words derived from value where the chars marked as vowels(V) are replaced with actual elements from the alphabet
Represents a language alphabet and allows to perform different stemming operations