Floors the Array elements in-place.
(self)
| 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. """ |