public static bool KContains(this string s, string keyword, SpecialIndexOfFinder indexOf)
 {
     return(indexOf(s, keyword) != -1);
 }
 public static int KIndexOf(this string s, string keyword, SpecialIndexOfFinder indexOf)
 {
     return(indexOf(s, keyword));
 }
 public static bool KEquals(this string s, string keyword, SpecialIndexOfFinder indexOf)
 {
     return((s.Length == keyword.Length) && (indexOf(s, keyword) == 0));
 }