Treatment isBool

json/value::isBool


Inputs

⇥ value: Stream<Json> (json::Json)

Outputs

↦ is_bool: Stream<bool>


Emit true for each JSON value in the stream that is a boolean, false otherwise.

graph LR
     T("isBool()")
     A["🟦 … 🟨"] -->|value| T
     T -->|is_bool| B["false … true"]

     style A fill:#ffff,stroke:#ffff
     style B fill:#ffff,stroke:#ffff