MCPcopy Index your code
hub / github.com/Masterminds/squirrel / getSortedKeys

Function getSortedKeys

expr.go:404–411  ·  view source on GitHub ↗
(exp map[string]interface{})

Source from the content-addressed store, hash-verified

402}
403
404func getSortedKeys(exp map[string]interface{}) []string {
405 sortedKeys := make([]string, 0, len(exp))
406 for k := range exp {
407 sortedKeys = append(sortedKeys, k)
408 }
409 sort.Strings(sortedKeys)
410 return sortedKeys
411}
412
413func isListType(val interface{}) bool {
414 if driver.IsValue(val) {

Callers 2

toSQLMethod · 0.85
toSqlMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…