(v string)
| 30 | func FloatVal(v float64) Value { return Value{Type: workflowapi.Float, Raw: v} } |
| 31 | func BoolVal(v bool) Value { return Value{Type: workflowapi.Bool, Raw: v} } |
| 32 | func StringVal(v string) Value { return Value{Type: workflowapi.String, Raw: v} } |
| 33 | |
| 34 | // ImageVal wraps an encoded frame blob (e.g. JPEG bytes). It is an opaque |
| 35 | // value — there is no Cast/AsX path into or out of it beyond AsImage. |
no outgoing calls