(t)
| 1243 | return State(x.a + 10, x.b * 10) |
| 1244 | |
| 1245 | def transform_tuple(t): |
| 1246 | return (t[0] + 10, t[1] * 10) |
| 1247 | |
| 1248 | def transform_vector(t): |
| 1249 | return Vector([t[0] + 10, t[1] * 10]) |
nothing calls this directly
no outgoing calls
no test coverage detected