Adds a startswith word check :param str word: word to check :rtype: Query
(self, word)
| 1106 | |
| 1107 | @fluent |
| 1108 | def startswith(self, word): |
| 1109 | """ Adds a startswith word check |
| 1110 | |
| 1111 | :param str word: word to check |
| 1112 | :rtype: Query |
| 1113 | """ |
| 1114 | return self.function('startswith', word) |
| 1115 | |
| 1116 | @fluent |
| 1117 | def endswith(self, word): |
no test coverage detected