IterableString extension
Methods
-
containsLike(
String s) → bool -
Available on Iterable<
Verify if any String in a StringList contains the specified StringString> , provided by the IterableString extension -
distinctFlat(
) → Iterable< string> -
Available on Iterable<
Removes duplicate elements from a StringList.String> , provided by the IterableString extension -
flatContains(
string s) → bool -
Available on Iterable<
String> , provided by the IterableString extension -
flatContainsAll(
Iterable< string> s) → bool -
Available on Iterable<
String> , provided by the IterableString extension -
flatContainsAny(
Iterable< string> s) → bool -
Available on Iterable<
Verify if any String in a StringList contains any String of other StringList ignoring the accents and character caseString> , provided by the IterableString extension -
flatContainsAtLeast(
int count, Iterable< string> s) → bool -
Available on Iterable<
String> , provided by the IterableString extension -
flatContainsLike(
String s) → bool -
Available on Iterable<
Verify if any String in a StringList contains the specified String ignoring the accents and character caseString> , provided by the IterableString extension -
getLevenshtein(
String b, [bool caseSensitive = true]) → List< int> -
Available on Iterable<
Returns a list of Levenshtein distances between each element in the list and the given stringString> , provided by the IterableString extensionb
. The optional parametercaseSensitive
determines whether the comparison should be case-sensitive or not. IfcaseSensitive
is not provided, it defaults to true.