MCPcopy Create free account
hub / github.com/Lauriat/funct / toTuple

Method toTuple

funct/Array.py:969–971  ·  view source on GitHub ↗

Returns a copy of the Array as an tuple.

(self)

Source from the content-addressed store, hash-verified

967 return "".join(str(v) for v in self)
968
969 def toTuple(self):
970 """ Returns a copy of the Array as an tuple. """
971 return tuple(self.copy())
972
973 def toSet(self):
974 """ Returns set of the Array elements. Order is not preserved. """

Callers 1

__hash__Method · 0.95

Calls 1

copyMethod · 0.95

Tested by

no test coverage detected