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