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

Method rjust

numpy/_core/defchararray.py:1038–1048  ·  view source on GitHub ↗

Return an array with the elements of `self` right-justified in a string of length `width`. See Also -------- char.rjust

(self, width, fillchar=' ')

Source from the content-addressed store, hash-verified

1036 return rindex(self, sub, start, end)
1037
1038 def rjust(self, width, fillchar=' '):
1039 """
1040 Return an array with the elements of `self`
1041 right-justified in a string of length `width`.
1042
1043 See Also
1044 --------
1045 char.rjust
1046
1047 """
1048 return asarray(rjust(self, width, fillchar))
1049
1050 def rpartition(self, sep):
1051 """

Callers 7

__init__Method · 0.80
test_rjustMethod · 0.80
test_rjustMethod · 0.80
test_rjustMethod · 0.80
test_rjustMethod · 0.80

Calls 2

rjustFunction · 0.85
asarrayFunction · 0.70

Tested by 6

test_rjustMethod · 0.64
test_rjustMethod · 0.64
test_rjustMethod · 0.64
test_rjustMethod · 0.64