MCPcopy Create free account
hub / github.com/deepfence/ThreatMapper / BoolArrayToInterfaceArray

Function BoolArrayToInterfaceArray

deepfence_utils/utils/utils.go:582–588  ·  view source on GitHub ↗
(a []bool)

Source from the content-addressed store, hash-verified

580}
581
582func BoolArrayToInterfaceArray(a []bool) []interface{} {
583 l := make([]interface{}, 0)
584 for _, i := range a {
585 l = append(l, i)
586 }
587 return l
588}
589
590func GetScheduledJobHash(schedule postgresqlDb.Scheduler) string {
591 var payload map[string]string

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected