MCPcopy Index your code
hub / github.com/numpy/numpy / endswith

Method endswith

numpy/_core/defchararray.py:806–816  ·  view source on GitHub ↗

Returns a boolean array which is `True` where the string element in `self` ends with `suffix`, otherwise `False`. See Also -------- char.endswith

(self, suffix, start=0, end=None)

Source from the content-addressed store, hash-verified

804 return encode(self, encoding, errors)
805
806 def endswith(self, suffix, start=0, end=None):
807 """
808 Returns a boolean array which is `True` where the string element
809 in `self` ends with `suffix`, otherwise `False`.
810
811 See Also
812 --------
813 char.endswith
814
815 """
816 return endswith(self, suffix, start, end)
817
818 def expandtabs(self, tabsize=8):
819 """

Callers 15

iter_source_filesFunction · 0.80
_format_argMethod · 0.80
find_functionsFunction · 0.80
is_parametric_dtypeFunction · 0.80
test_endswithMethod · 0.80
failMethod · 0.80
test_centerMethod · 0.80
test_ljustMethod · 0.80
test_rjustMethod · 0.80

Calls 1

endswithFunction · 0.85

Tested by 15

is_parametric_dtypeFunction · 0.64
test_endswithMethod · 0.64
failMethod · 0.64
test_centerMethod · 0.64
test_ljustMethod · 0.64
test_rjustMethod · 0.64
test_endswithMethod · 0.64
check_functionMethod · 0.64