Sort is a convenience method: x.Sort() calls Sort(x).
()
| 1276 | |
| 1277 | // Sort is a convenience method: x.Sort() calls Sort(x). |
| 1278 | func (x int64Slice) Sort() { sort.Sort(x) } |
| 1279 | |
| 1280 | func TestConstantFoldingOption_FoldKnownValuesNilInput(t *testing.T) { |
| 1281 | opt, err := FoldKnownValues(nil)(&constantFoldingOptimizer{}) |
no outgoing calls
no test coverage detected