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

Method istitle

numpy/_core/defchararray.py:918–928  ·  view source on GitHub ↗

Returns true for each element if the element is a titlecased string and there is at least one character, false otherwise. See Also -------- char.istitle

(self)

Source from the content-addressed store, hash-verified

916 return isspace(self)
917
918 def istitle(self):
919 """
920 Returns true for each element if the element is a titlecased
921 string and there is at least one character, false otherwise.
922
923 See Also
924 --------
925 char.istitle
926
927 """
928 return istitle(self)
929
930 def isupper(self):
931 """

Callers 3

test_istitleMethod · 0.80
test_istitleMethod · 0.80
test_istitle_unicodeMethod · 0.80

Calls

no outgoing calls

Tested by 3

test_istitleMethod · 0.64
test_istitleMethod · 0.64
test_istitle_unicodeMethod · 0.64