...

Source file src/github.com/docker/distribution/reference/sort_deprecated.go

Documentation: github.com/docker/distribution/reference

     1  package reference
     2  
     3  import "github.com/distribution/reference"
     4  
     5  // Sort sorts string references preferring higher information references.
     6  //
     7  // Deprecated: use [reference.Sort].
     8  func Sort(references []string) []string {
     9  	return reference.Sort(references)
    10  }
    11  

View as plain text