| 4069 | |
| 4070 | struct StartsWith : StringHolder { |
| 4071 | StartsWith( NSString* substr ) : StringHolder( substr ){} |
| 4072 | |
| 4073 | bool match( NSString* str ) const override { |
| 4074 | return (str != nil || m_substr == nil ) && |
nothing calls this directly
no outgoing calls
no test coverage detected