Ejemplo n.º 1
0
 public IEnumerable <CodePoint> LookupRelatedCharacters(CodePoint point)
 {
     return(EnumerableExt.IntersperseSequencesWith(new[]
     {
         kanaProperties.FindSimilar(point),
         confused.FindSimilar(point)
     },
                                                   null as CodePoint));
 }