Contains implementations of CharSequence.Searcher
class IgnoringCaseIndexSearcher : CharSequenceContains.Searcher<IgnoringCaseSearchBehaviour, Any>
Represents a Searcher which implements the IgnoringCaseSearchBehaviour behaviour and uses CharSequence.indexOf to find expected objects. |
|
class IgnoringCaseRegexSearcher : CharSequenceContains.Searcher<IgnoringCaseSearchBehaviour, String>
Represents a Searcher which implements the IgnoringCaseSearchBehaviour behaviour and evaluates the matches of a given regular expression on the input of the search. |
|
class IndexSearcher : CharSequenceContains.Searcher<NoOpSearchBehaviour, Any>
Represents a Searcher which uses CharSequence.indexOf to find expected objects. |
|
class RegexSearcher : CharSequenceContains.Searcher<NoOpSearchBehaviour, Regex>
Represents a Searcher which evaluates the matches of a given regular expression on the input of the search. |