stringPtr returns a pointer to a string with the given value.
(s string)
| 454 | |
| 455 | // stringPtr returns a pointer to a string with the given value. |
| 456 | func stringPtr(s string) *string { return &s } |
| 457 | |
| 458 | // Value extracts float64 data type numeric from a attribute value. |
| 459 | func (attr *attrValFloat) Value() float64 { |
no outgoing calls