MCPcopy Create free account
hub / github.com/EntilZha/PyFunctional / tail

Method tail

functional/pipeline.py:320–329  ·  view source on GitHub ↗

Returns the sequence, without its first element. >>> seq([1, 2, 3]).tail() [2, 3] :return: sequence without first element

(self)

Source from the content-addressed store, hash-verified

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 """

Callers 1

test_tailMethod · 0.80

Calls 1

_transformMethod · 0.95

Tested by 1

test_tailMethod · 0.64