Ceils the Array elements.
(self, inplace=False)
| 212 | return self |
| 213 | |
| 214 | def ceil(self, inplace=False): |
| 215 | """ Ceils the Array elements. """ |
| 216 | a = map(math.ceil, self) |
| 217 | if inplace: |
| 218 | return self.__setinplace(a, inplace) |
| 219 | return Array(a) |
| 220 | |
| 221 | def ceil_(self): |
| 222 | """ Ceils the Array elements in-place. """ |
no test coverage detected