(t)
| 782 | return State(x.a + 10, x.b * 10) |
| 783 | |
| 784 | def transform_tuple(t): |
| 785 | return (t[0] + 10, t[1] * 10) |
| 786 | |
| 787 | def transform_vector(t): |
| 788 | return Vector([t[0] + 10, t[1] * 10]) |
nothing calls this directly
no outgoing calls
no test coverage detected