Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for removeDups (0.16 sec)

  1. src/cmd/vendor/golang.org/x/mod/modfile/work.go

    	}
    	return nil
    }
    
    func (f *WorkFile) SortBlocks() {
    	f.removeDups() // otherwise sorting is unsafe
    
    	for _, stmt := range f.Syntax.Stmt {
    		block, ok := stmt.(*LineBlock)
    		if !ok {
    			continue
    		}
    		sort.SliceStable(block.Line, func(i, j int) bool {
    			return lineLess(block.Line[i], block.Line[j])
    		})
    	}
    }
    
    // removeDups removes duplicate replace directives.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top