We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dc06a9 commit b261499Copy full SHA for b261499
examples/main.go
@@ -118,6 +118,12 @@ func (e embedderExample) RawValue() string {
118
return strings.Join(parts, ".")
119
}
120
121
+func embedded() {
122
+ println("===[ Embedded ]===")
123
+ q := bqb.New("embedded: ?, unembedded: ?", bqb.Embedded("raw"), "bound")
124
+ q.Print()
125
+}
126
+
127
func embedder() {
128
println("===[ Embedder ]===")
129
emb := embedderExample{"one", "two", `"three"`}
@@ -132,5 +138,6 @@ func main() {
132
138
json()
133
139
nilQuery()
134
140
valuer()
141
+ embedded()
135
142
embedder()
136
143
0 commit comments