MCPcopy Create free account
hub / github.com/Lauriat/funct / ceil_

Method ceil_

funct/Array.py:221–225  ·  view source on GitHub ↗

Ceils the Array elements in-place.

(self)

Source from the content-addressed store, hash-verified

219 return Array(a)
220
221 def ceil_(self):
222 """ Ceils the Array elements in-place. """
223 warn()
224 self[:] = Array(map(math.ceil, self))
225 return self
226
227 def round(self, d=0, inplace=False):
228 """ Rounds the Array to the given number of decimals. """

Callers

nothing calls this directly

Calls 1

ArrayClass · 0.85

Tested by

no test coverage detected