(arr *[]*Window, first int, last int)
| 1386 | } |
| 1387 | } |
| 1388 | func swapWindows(arr *[]*Window, first int, last int) { |
| 1389 | (*arr)[first], (*arr)[last] = (*arr)[last], (*arr)[first] |
| 1390 | } |
| 1391 | |
| 1392 | func swapWindowsId(arr *[]*Window, first xproto.Window, last xproto.Window){ |
| 1393 | var res1 int |
no outgoing calls
no test coverage detected