MCPcopy Create free account
hub / github.com/php/frankenphp / mapToAttr

Function mapToAttr

frankenphp.go:744–752  ·  view source on GitHub ↗
(input map[string]any)

Source from the content-addressed store, hash-verified

742}
743
744func mapToAttr(input map[string]any) []slog.Attr {
745 out := make([]slog.Attr, 0, len(input))
746
747 for key, val := range input {
748 out = append(out, slog.Any(key, val))
749 }
750
751 return out
752}
753
754//export go_is_context_done
755func go_is_context_done(threadIndex C.uintptr_t) C.bool {

Callers 1

go_log_attrsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected