(str string)
| 26 | } |
| 27 | |
| 28 | func String(str string) *runtimev1.Expression { |
| 29 | return &runtimev1.Expression{ |
| 30 | Expression: &runtimev1.Expression_Val{ |
| 31 | Val: structpb.NewStringValue(str), |
| 32 | }, |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | func Number(n float64) *runtimev1.Expression { |
| 37 | return &runtimev1.Expression{ |
no outgoing calls