Adds a endswith word check :param str word: word to check :rtype: Query
(self, word)
| 1115 | |
| 1116 | @fluent |
| 1117 | def endswith(self, word): |
| 1118 | """ Adds a endswith word check |
| 1119 | |
| 1120 | :param str word: word to check |
| 1121 | :rtype: Query |
| 1122 | """ |
| 1123 | return self.function('endswith', word) |
| 1124 | |
| 1125 | @fluent |
| 1126 | def iterable(self, iterable_name, *, collection, word, attribute=None, func=None, |
no test coverage detected