class IgnoringCaseIndexSearcher : CharSequenceContains.Searcher<IgnoringCaseSearchBehaviour, Any>
Represents a Searcher which implements the IgnoringCaseSearchBehaviour behaviour and uses CharSequence.indexOf to find expected objects.
IgnoringCaseIndexSearcher()
Represents a Searcher which implements the IgnoringCaseSearchBehaviour behaviour and uses CharSequence.indexOf to find expected objects. |
fun search(searchIn: CharSequence, searchFor: Any): Int
Searches in the given searchIn for the given searchFor, using its toString implementation, and returns the number of occurrences. |