Content is a type that is not meant to be inspected, but there’s different kinds of content. The content returned by context is special, because what it represents is… contextual. Not only is it not meant to be inspected, it can’t be inspected (it’s “opaque”), and that includes comparisons. b == [true] is simply not true, because b is contextual. [true] == [true] or [true].text == "true" work, althought that’s not the common usage of these content values.
So what can you do? The linked post has this example:
Adapted to your situation, that would be
#state("bla").update(true)
#context if state("bla").get() {
[bla is true]
}
Now only the result of the if, not its condition, is an opaque context value.
This displays true first, then false. Imagine instead of #b, we did some inspection:
#state("bla").update(true)
#let b = context ( state("bla").get() )
// get a value depending on b
#col = if b == true { "red" } else { "green" }
#state("bla").update(false)
If b is true, we want red. Otherwise, we want green.
Since b is #b, the color is #col
If this worked, we’d get
If b is true, we want red. Otherwise, we want green.
Since b is false, the color is red
This is why contextual values can’t be inspected: it would lead to outdated inspection results being used by accident. (Apart from that I’m pretty sure the way Typst is built, allowing this at all would actually not be simple. But I hope this shows that it’s also not desirable.)
Yes I want to set an inspection result and save it for the rest of the document. And state is the only way I can set a value in an including file and use in the included file. So this contextuality makes it impossible again.
ok so can you maybe give two things that should be influenced by your boolean? I’m pretty sure that it will not be impossible to do them, even with contextuality.
For example, the snippet that I showed can be made to work, like this:
#state("bla").update(true)
// make this a function and don't use context here
// b() can only be called inside context
#let b() = state("bla").get()
// get a value depending on b()
#col = context if b() { "red" } else { "green" }
#state("bla").update(false)
If b is true, we want red. Otherwise, we want green.
Since b is #context b(), the color is #col
And it will say “Since b is false, the color is green”.
Context over large ranges shouldn’t be a problem anymore with Typst 0.12. In 0.11.1 there are a few bugs which let it cause problems. I used to discourage it, partly because of these bugs and partly because I wasn’t sure how it would affect things, but going forward I think it is unproblematic.