| 2838 | |
| 2839 | struct Contains : StringHolder { |
| 2840 | Contains(NSString *substr) : StringHolder(substr) { |
| 2841 | } |
| 2842 | |
| 2843 | bool match(NSString *str) const { |
| 2844 | return (str != nil || m_substr == nil) && [str rangeOfString:m_substr].location != NSNotFound; |
nothing calls this directly
no outgoing calls
no test coverage detected