// // NSStringSimiliarity.h // // Created by John R Chang on Thu Dec 25 2003. // Modified by John R Chang on Sun Aug 27 2006. // This code is Creative Commons Public Domain. You may use it for any purpose whatsoever. // http://creativecommons.org/licenses/publicdomain/ // #import @interface NSString (Similiarity) /* Returns 0.0 <= x <= 1.0. 0.0 == not equal (or error), 1.0 == equal. Uses Search Kit (a.k.a. AIAT, V-Twin) technology. */ - (float) isSimilarToString:(NSString *)aString; @end