F is a convenience constructor for Field.
(name string, value interface{})
| 233 | |
| 234 | // F is a convenience constructor for Field. |
| 235 | func F(name string, value interface{}) Field { |
| 236 | return Field{Name: name, Value: value} |
| 237 | } |
| 238 | |
| 239 | // M is a convenience constructor for Map |
| 240 | func M(fs ...Field) Map { |
no outgoing calls
no test coverage detected