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

Method floor_

funct/Array.py:208–212  ·  view source on GitHub ↗

Floors the Array elements in-place.

(self)

Source from the content-addressed store, hash-verified

206 return Array(a)
207
208 def floor_(self):
209 """ Floors the Array elements in-place. """
210 warn()
211 self[:] = Array(map(math.floor, self))
212 return self
213
214 def ceil(self, inplace=False):
215 """ Ceils the Array elements. """

Callers

nothing calls this directly

Calls 1

ArrayClass · 0.85

Tested by

no test coverage detected