Returns the sequence, without its first element. >>> seq([1, 2, 3]).tail() [2, 3] :return: sequence without first element
(self)
| 318 | return self._transform(transformations.init_t()) |
| 319 | |
| 320 | def tail(self): |
| 321 | """ |
| 322 | Returns the sequence, without its first element. |
| 323 | |
| 324 | >>> seq([1, 2, 3]).tail() |
| 325 | [2, 3] |
| 326 | |
| 327 | :return: sequence without first element |
| 328 | """ |
| 329 | return self._transform(transformations.tail_t()) |
| 330 | |
| 331 | def inits(self): |
| 332 | """ |