booleans specifies the boolean rendering values for the boolean pipeline.
booleans
table T = with [| as B |] [| true |] [| false |]
show table "" a1h3 with T.B T.B as "Ja/Nein" { booleans: "Ja/Nein" } T.B as "Oui/Non" { booleans: "Oui/Non" } T.B as "✔️/❌" { booleans: "✔️/❌" } T.B as "True" { booleans: "True" } T.B as "✔️" { booleans: "✔️" } T.B as "Tru//e/N//A" { booleans: "Tru//e/N//A" } T.B as "True///False" { booleans: "True///False" } T.B as "True/False/Other" { booleans: "True/False/Other" }
booleans
specifies the boolean rendering values for the boolean pipeline.table T = with
[| as B |]
[| true |]
[| false |]
show table "" a1h3 with
T.B
T.B as "Ja/Nein" { booleans: "Ja/Nein" }
T.B as "Oui/Non" { booleans: "Oui/Non" }
T.B as "✔️/❌" { booleans: "✔️/❌" }
T.B as "True" { booleans: "True" }
T.B as "✔️" { booleans: "✔️" }
T.B as "Tru//e/N//A" { booleans: "Tru//e/N//A" }
T.B as "True///False" { booleans: "True///False" }
T.B as "True/False/Other" { booleans: "True/False/Other" }