Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for firstCharToLowerCase (0.14 sec)

  1. operator/pkg/util/path.go

    }
    
    // ToYAMLPath converts a path string to path such that the first letter of each path element is lower case.
    func ToYAMLPath(path string) Path {
    	p := PathFromString(path)
    	for i := range p {
    		p[i] = firstCharToLowerCase(p[i])
    	}
    	return p
    }
    
    // ToYAMLPathString converts a path string such that the first letter of each path element is lower case.
    func ToYAMLPathString(path string) string {
    	return ToYAMLPath(path).String()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top