GetSurface() публичный Метод

public GetSurface ( Position location ) : string
location Position
Результат string
Пример #1
0
 public override bool IsTrueFor(Allomorph allomorph)
 {
     string neighbourSurface = allomorph.GetSurface(Position);
     return neighbourSurface.FirstCharEqualsAny(Alphabet.Vowels);
 }
Пример #2
0
 public override bool IsTrueFor(Allomorph allomorph)
 {
     string neighbourSurface = allomorph.GetSurface(Position);
     return neighbourSurface.LastCharEqualsAny(Operand);
 }
Пример #3
0
 public override bool IsTrueFor(Allomorph allomorph)
 {
     string neighbourSurface = allomorph.GetSurface(Position);
     char? penultVowel = neighbourSurface.PenultimateOccurrenceOfAny(Alphabet.Vowels);
     return penultVowel.HasValue && Operand.IndexOf((char) penultVowel) != -1;
 }